@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    --font-main: 'Pretendard', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* V3 Vivid & Radical Palette */
    --neon-red: #FF0033;
    --deep-black: #050505;
    --contrast-white: #FFFFFF;
    --sticker-yellow: #FFE600;
    --digital-blue: #2933FF;

    /* Semantic Mappings */
    --accent: var(--neon-red);
    --bg: var(--deep-black);
    --text: var(--contrast-white);

    /* Radical Styling */
    --border-thick: 4px solid var(--deep-black);
    --shadow-brutal: 10px 10px 0px var(--deep-black);

    --transition: all 0.3s cubic-bezier(0.8, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.4;
    word-break: keep-all;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    /* Added horizontal padding */
}

/* Typography Impact */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--contrast-white);
    color: transparent;
}

/* Radical Utilities */
.sticker {
    background: var(--sticker-yellow);
    color: var(--deep-black);
    padding: 10px 20px;
    font-weight: 900;
    display: inline-block;
    border: var(--border-thick);
    box-shadow: 5px 5px 0px var(--deep-black);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.sticker:hover {
    transform: rotate(0deg) scale(1.2);
    /* Boosted to 1.2 for dramatic effect */
    z-index: 100;
    /* Ensure it stays on top when scaled */
}

/* Marquee / Ticker */
.marquee-wrap {
    background: var(--neon-red);
    color: var(--deep-black);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    position: relative;
    z-index: 100;
}

.marquee-content {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Buttons (Radical V3) */
.btn {
    display: inline-block;
    padding: 20px 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    border: var(--border-thick);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    z-index: 50;
}

.btn-primary {
    background: var(--neon-red);
    color: var(--contrast-white);
    box-shadow: 8px 8px 0 var(--contrast-white);
}

.btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--contrast-white);
}

.btn-outline {
    background: var(--contrast-white);
    color: var(--deep-black);
    box-shadow: 8px 8px 0 var(--neon-red);
}

.btn-outline:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--neon-red);
}

/* Header Adjustments */
.header {
    background: transparent;
    padding: 30px 0;
    position: fixed;
    /* Fixed for sticky behavior */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled-active {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 2px solid var(--neon-red);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    color: var(--neon-red);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--contrast-white);
    text-decoration: none;
    font-weight: 900;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--neon-red);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Radical Hero Section */
.radical-hero {
    height: calc(100vh - 85px);
    /* Adjusted for sticky bar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.hero-radical-text-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewY(-8deg);
    width: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-radical-title {
    font-size: 25vw;
    text-align: center;
    margin: -5vw 0;
    white-space: nowrap;
    transition: transform 0.1s ease-out;
}

.title-mine {
    color: var(--neon-red);
    transform: translateX(-10vw);
}

.title-burger {
    transform: translateX(10vw);
}

.hero-content-bottom {
    position: absolute;
    bottom: 10vh;
    left: 5vw;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-tagline-box {
    font-size: 1.5rem;
}

/* Radical Metrics - Sticker Chaos */
.radical-metrics {
    min-height: 80vh;
    background: var(--contrast-white);
    color: var(--deep-black);
    overflow: hidden;
    display: flex;
    align-items: center;
    transform: skewY(-5deg);
    margin-top: -100px;
}

.radical-metrics>* {
    transform: skewY(5deg);
}

.metrics-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 30vw;
    font-weight: 900;
    opacity: 0.05;
    pointer-events: none;
    white-space: nowrap;
}

.radical-sticker-container {
    height: 600px;
    position: relative;
    width: 100%;
}

.metric-sticker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.m-label {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.m-value {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
}

.sticker-1 {
    top: 10%;
    left: 10%;
    transform: rotate(-5deg);
}

.sticker-2 {
    top: 40%;
    left: 35%;
    transform: rotate(8deg);
    z-index: 5;
}

.sticker-3 {
    top: 15%;
    right: 15%;
    transform: rotate(-12deg);
}

.sticker-4 {
    bottom: 10%;
    left: 15%;
    transform: rotate(5deg);
}

.sticker-5 {
    bottom: 20%;
    right: 10%;
    transform: rotate(-5deg);
    z-index: 5;
}

/* Radical Menu - Horizontal Conveyor */
.radical-menu {
    background: var(--deep-black);
    color: var(--contrast-white);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.menu-vertical-bg {
    position: absolute;
    top: 50%;
    right: -5vw;
    transform: translateY(-50%) rotate(90deg);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.horizontal-menu-container {
    display: flex;
    overflow-x: auto;
    padding: 100px 5vw;
    gap: 100px;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.horizontal-menu-container.active {
    cursor: grabbing;
}

.horizontal-menu-container::-webkit-scrollbar {
    display: none;
}

/* Menu Nav Buttons */
.menu-btn-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2vw;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 100;
}

.menu-btn {
    pointer-events: auto;
    width: 80px;
    height: 80px;
    background: var(--sticker-yellow);
    border: 4px solid var(--deep-black);
    box-shadow: 8px 8px 0 var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    transform: rotate(5deg);
}

.menu-btn:hover {
    transform: scale(1.1) rotate(0deg);
    background: var(--neon-red);
    color: #fff;
}

.menu-btn.prev {
    transform: rotate(-5deg);
}

.menu-btn.prev:hover {
    transform: scale(1.1) rotate(0deg);
}

.menu-card-radical {
    flex: 0 0 500px;
    position: relative;
    transition: var(--transition);
}

.menu-card-radical:hover {
    transform: scale(1.05) translateY(-20px);
}

.menu-img-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 5px solid var(--contrast-white);
    box-shadow: 20px 20px 0 var(--neon-red);
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.menu-card-radical:hover .menu-img-wrap img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.menu-text-radical {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 10;
}

.m-title {
    font-size: 4rem;
    line-height: 0.8;
    background: var(--deep-black);
    padding: 10px;
    border: 2px solid var(--contrast-white);
}

.m-price {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
}

/* Radical Insight - The Tear */
.radical-insight {
    background: var(--deep-black);
    padding: 0;
    overflow: hidden;
}

.tear-container {
    display: flex;
    height: 100vh;
    position: relative;
}

.tear-left,
.tear-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.tear-left {
    background: var(--neon-red);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
}

.tear-right {
    background: var(--digital-blue);
    margin-left: -15vw;
    padding-left: 15vw;
}

.tear-content {
    text-align: center;
    color: var(--contrast-white);
}

.tear-title {
    font-size: 15vw;
    margin-bottom: 20px;
}

.tear-list {
    list-style: none;
    font-size: 2rem;
    font-weight: 900;
    text-align: left;
}

.tear-divider {
    position: absolute;
    top: 0;
    left: 42.5%;
    width: 15vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.tear-left:hover {
    flex: 1.2;
    z-index: 5;
}

.tear-right:hover {
    flex: 1.2;
}

.tear-left:hover .tear-title {
    animation: jitter 0.2s infinite;
}

.tear-right:hover .tear-title {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes jitter {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }

    50% {
        transform: translate(5px, -5px) rotate(1deg);
    }

    75% {
        transform: translate(-5px, -5px) rotate(-1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.tear-vs {
    font-size: 4rem;
    background: var(--sticker-yellow);
    color: #000;
    transform: rotate(15deg);
    transition: var(--transition);
}

.tear-left:hover~.tear-divider .tear-vs {
    transform: rotate(-15deg) scale(1.2);
}

.tear-right:hover~.tear-divider .tear-vs {
    transform: rotate(45deg) scale(1.2);
}

/* Radical Craft - The Proof */
.radical-craft {
    background: var(--obsidian-black);
    padding: 150px 0;
    color: var(--contrast-white);
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.craft-card {
    position: relative;
    background: var(--deep-black);
    border: 4px solid var(--contrast-white);
    padding: 40px;
    box-shadow: 15px 15px 0 var(--neon-red);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px) rotate(-2deg);
}

.craft-card:hover {
    transform: translateY(-20px) rotate(2deg);
    box-shadow: 25px 25px 0 var(--digital-blue);
}

.craft-img-wrap {
    width: 100%;
    height: 300px;
    background: #222;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid var(--contrast-white);
}

.craft-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    transition: var(--transition);
}

.craft-card:hover .craft-img-wrap img {
    filter: grayscale(0) contrast(1);
}

.craft-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    z-index: 5;
    font-size: 1.2rem;
}

.craft-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
}

.craft-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Radical Profit - The Engine */
.radical-profit {
    position: relative;
    background: var(--neon-red);
    padding: 150px 0;
    overflow: hidden;
}

.profit-bg-ticker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.radical-profit .container {
    position: relative;
    z-index: 2;
}

.profit-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    /* Reduced from 60px */
    margin-top: 40px;
    /* Reduced from 80px */
}

.profit-engine-box {
    background: var(--deep-black);
    border: 5px solid var(--contrast-white);
    padding: 50px;
    box-shadow: 20px 20px 0 var(--obsidian-black);
    color: var(--contrast-white);
}

.engine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.engine-tag {
    font-size: 0.8rem;
    font-weight: 900;
    padding: 4px 10px;
    background: #00ff00;
    color: #000;
}

.simulator-main label {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.range-wrap {
    margin-bottom: 40px;
}

#profit-slider {
    width: 100%;
    height: 15px;
    background: #333;
    appearance: none;
    outline: none;
    border: 2px solid #fff;
}

#profit-slider::-webkit-slider-thumb {
    appearance: none;
    width: 30px;
    height: 30px;
    background: var(--sticker-yellow);
    border: 3px solid #000;
    cursor: pointer;
}

.range-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-top: 20px;
}

.result-display {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 10px solid var(--sticker-yellow);
}

.result-item span {
    font-size: 1rem;
    font-weight: 900;
    opacity: 0.7;
}

.result-item h4 {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--sticker-yellow);
    line-height: 1;
    margin-top: 10px;
}

.engine-note {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.5;
}

.profit-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.margin-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 280px;
}

.margin-card .m-label {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.margin-card .m-value {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    margin: 10px 0;
}

.margin-card p {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Radical Store Finder */
.radical-store {
    padding: 100px 0;
    background: var(--contrast-white);
    color: var(--deep-black);
}

.store-radical-wrap {
    display: flex;
    align-items: center;
    gap: 5vw;
    padding: 0 5vw;
}

.store-text-side {
    flex: 1;
}

.radical-title-large {
    font-size: 4.5rem;
    margin-bottom: 40px;
    /* Reduced from default or intentional gap */
    font-style: normal;
}

.store-stats-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.store-search-radical {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.store-search-radical input {
    flex: 1;
    padding: 20px;
    border: var(--border-thick);
    font-weight: 900;
}

.store-map-radical {
    flex: 1.5;
    height: 450px;
}

.brutal-frame {
    border: var(--border-thick);
    box-shadow: 20px 20px 0 var(--deep-black);
    background: #e0e0e0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.2) invert(0.9);
}

/* Domination Marquee */
.store-domination-marquee {
    background: var(--deep-black);
    color: var(--contrast-white);
    padding: 25px 0;
    border-top: 4px solid var(--neon-red);
    border-bottom: 4px solid var(--neon-red);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-domination 30s linear infinite;
}

.marquee-content span {
    font-size: 1.8rem;
    font-weight: 900;
    margin-right: 100px;
    font-family: var(--font-heading);
}

@keyframes marquee-domination {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Radical Interior - The Archive */
.radical-interior {
    background: var(--deep-black);
    padding: 150px 0;
    overflow: hidden;
}

.radical-interior .radical-title-large {
    color: var(--contrast-white);
    margin-bottom: 50px;
    /* Reduced from 80px */
    line-height: 0.9;
}

.interior-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    align-items: end;
}

.interior-item {
    position: relative;
    background: var(--obsidian-black);
    overflow: visible;
    /* Allow sticker to overlap */
    transition: var(--transition);
}

.interior-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.interior-item:nth-child(2) {
    height: 350px;
    transform: translateY(-50px);
}

.interior-item:nth-child(1) {
    height: 600px;
}

.interior-item:nth-child(3) {
    height: 500px;
}

.interior-item:hover {
    z-index: 10;
    transform: scale(1.02) rotate(1deg);
    box-shadow: 30px 30px 0 var(--neon-red);
}

.interior-item:hover img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.1);
}

.interior-label {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--sticker-yellow);
    color: #000;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: 900;
    z-index: 5;
    white-space: nowrap;
    transform: rotate(-3deg);
}

.interior-item:nth-child(even) .interior-label {
    background: var(--digital-blue);
    color: #fff;
    left: -20px;
    right: auto;
    transform: rotate(2deg);
}

/* Radical Profit Architect */
.radical-profit {
    background: var(--neon-red);
    color: var(--contrast-white);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.profit-bg-ticker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 20vw;
    font-weight: 900;
    opacity: 0.1;
    white-space: nowrap;
    pointer-events: none;
}

.profit-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.profit-engine-box {
    flex: 1.2;
    background: var(--deep-black);
    padding: 60px;
    border: var(--border-thick);
    box-shadow: 25px 25px 0 rgba(0, 0, 0, 0.3);
}

.engine-header {
    margin-bottom: 40px;
    border-bottom: 2px solid var(--neon-red);
    padding-bottom: 20px;
}

.engine-tag {
    font-size: 0.9rem;
    color: var(--neon-red);
    font-weight: 900;
    letter-spacing: 0.1em;
}

.range-wrap {
    margin: 40px 0;
}

.range-wrap label {
    display: block;
    margin-bottom: 15px;
}

#profit-slider {
    width: 100%;
    height: 10px;
    background: #333;
    appearance: none;
    outline: none;
}

#profit-slider::-webkit-slider-thumb {
    appearance: none;
    width: 30px;
    height: 30px;
    background: var(--neon-red);
    cursor: pointer;
    border: 3px solid #fff;
}

.range-value {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 15px;
    text-align: right;
}

.result-display {
    background: var(--obsidian-black);
    padding: 30px;
    border: 2px solid var(--neon-red);
}

.result-item span {
    font-size: 1rem;
    opacity: 0.7;
}

.result-item h4 {
    font-size: 3.5rem;
    color: var(--neon-red);
    font-weight: 900;
}

.profit-details {
    flex: 0.8;
}

.margin-card {
    padding: 30px;
    margin-bottom: 20px;
}

.m-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.m-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

/* Radical Inquiry */
.radical-inquiry {
    background: var(--neon-red);
    color: var(--contrast-white);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.inquiry-massive-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(5deg);
    font-size: 25vw;
    opacity: 0.1;
    pointer-events: none;
    white-space: nowrap;
}

.inquiry-radical-container {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    position: relative;
    z-index: 10;
    padding: 0 5vw;
}

.inquiry-form-radical {
    flex: 1.5;
    background: var(--contrast-white);
    color: var(--deep-black);
    padding: 60px;
    border: var(--border-thick);
    box-shadow: 20px 20px 0 var(--deep-black);
}

.form-title {
    font-size: 4rem;
    margin-bottom: 40px;
    font-style: normal;
    line-height: 1.2;
    /* Increased for breathing room */
}

.form-title span {
    font-size: 2.2rem;
    /* Reduced impact */
    opacity: 0.6;
    display: block;
    margin-top: 5px;
}

.form-group-radical {
    margin-bottom: 20px;
}

.form-group-radical input,
.form-group-radical select {
    width: 100%;
    padding: 20px;
    border: var(--border-thick);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
}

.inquiry-contact-side {
    flex: 1;
}

.contact-box {
    padding: 30px;
    font-size: 2.5rem;
    background: var(--sticker-yellow);
    box-shadow: 15px 15px 0 var(--deep-black);
    color: #000;
    margin-bottom: 30px;
    transform: rotate(3deg);
}

/* Radical Viral - SNS Proof */
.radical-viral {
    background: var(--contrast-white);
    padding: 150px 0;
    overflow: hidden;
}

.radical-viral .radical-title-large {
    color: var(--deep-black);
    text-align: right;
    margin-bottom: 50px;
    /* Reduced from 80px */
}

.viral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.viral-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--deep-black);
    border: var(--border-thick);
    cursor: pointer;
}

.viral-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.viral-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--neon-red);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-out);
    z-index: 10;
    box-shadow: 15px 15px 0 var(--deep-black);
}

.stat-item {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.viral-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7) blur(2px);
}

.viral-card:hover .viral-stats {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(-3deg);
}

.viral-card:nth-child(2) {
    transform: translateY(40px);
}

.viral-card:nth-child(2):hover .viral-stats {
    background: var(--digital-blue);
    transform: translate(-50%, -50%) scale(1) rotate(3deg);
}

/* Radical Brand Film */
.radical-film {
    padding: 150px 0;
    background: var(--contrast-white);
    color: var(--deep-black);
    overflow: hidden;
}

.film-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--deep-black);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: contrast(1.1) brightness(0.9);
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.play-sticker {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-red);
    color: #fff;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 900;
    transform: rotate(5deg);
    box-shadow: 8px 8px 0 var(--deep-black);
    z-index: 10;
}

.rec-sticker {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--deep-black);
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-3deg);
    border: 2px solid var(--neon-red);
    z-index: 10;
}

.rec-sticker .dot {
    width: 12px;
    height: 12px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.film-wrap:hover .video-container iframe {
    filter: none;
}

/* Radical Footer */
.radical-footer {
    background: var(--deep-black);
    color: var(--contrast-white);
    padding: 100px 0 50px;
    border-top: 10px solid var(--neon-red);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding: 0 5vw;
}

.footer-logo {
    font-size: 10vw;
    line-height: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-links a {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: underline;
}

.footer-info {
    padding: 0 5vw;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-group span {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.6;
    line-height: 1.5;
}

.info-bold {
    opacity: 1 !important;
    font-size: 1.1rem !important;
    color: var(--neon-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 5vw 0;
    font-weight: 900;
    letter-spacing: 0.2em;
    opacity: 0.5;
}

/* Sticky Bottom Bar */
.sticky-inquiry-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--neon-red);
    z-index: 2000;
    padding: 15px 0;
    border-top: 5px solid var(--deep-black);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
}

.sticky-inquiry-bar.hidden {
    transform: translateY(100%);
}

.bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* Increased gap */
}

.bar-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--contrast-white);
    font-style: italic;
    white-space: nowrap;
}

.bar-form {
    display: flex;
    gap: 15px;
    flex: 1;
}

.bar-form input {
    flex: 1;
    padding: 12px 20px;
    border: 3px solid var(--deep-black);
    font-family: var(--font-main);
    font-weight: 700;
    outline: none;
}

.bar-submit {
    padding: 12px 30px !important;
    font-size: 1rem !important;
    background: var(--deep-black) !important;
    color: var(--contrast-white) !important;
    box-shadow: 5px 5px 0 var(--contrast-white) !important;
}

.bar-submit:hover {
    box-shadow: 8px 8px 0 var(--contrast-white) !important;
}

.bar-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--deep-black);
    transition: var(--transition);
}

.bar-close:hover {
    transform: rotate(90deg);
}

/* ===== MEDIA QUERIES (섹션별) ===== */

/* ========== HEADER SECTION ========== */
@media (max-width: 1024px) {
    .header {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--deep-black);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.mobile-open {
        transform: translateX(0);
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

    .nav-links a:hover {
        color: var(--neon-red);
    }

    .header-cta {
        display: none;
    }
}

/* ========== HERO SECTION ========== */
@media (max-width: 1024px) {
    .radical-hero {
        height: calc(100vh - 70px);
    }

    .hero-radical-title {
        font-size: 20vw;
    }

    .hero-content-bottom {
        bottom: 8vh;
        gap: 15px;
    }

    .hero-tagline-box {
        font-size: 1.2rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .radical-hero {
        height: calc(100vh - 60px);
    }

    .hero-radical-title {
        font-size: 15vw;
        margin: -3vw 0;
    }

    .hero-content-bottom {
        bottom: 5vh;
        left: 15px;
        right: 15px;
        flex-direction: column;
        gap: 12px;
    }

    .hero-tagline-box {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .hamburger-menu span {
        width: 22px;
        height: 2.5px;
    }

    .nav-links {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .radical-hero {
        height: calc(100vh - 50px);
    }

    .hero-radical-title {
        font-size: 12vw;
    }

    .hero-tagline-box {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ========== METRICS SECTION ========== */
@media (max-width: 1024px) {
    .radical-metrics {
        min-height: 70vh;
        margin-top: -80px;
    }

    .radical-sticker-container {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .metric-sticker {
        position: static;
        transform: none !important;
        min-width: 200px;
    }

    .m-value {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .radical-metrics {
        transform: skewY(0deg);
        min-height: auto;
        padding: 60px 0;
    }

    .radical-metrics>* {
        transform: skewY(0deg);
    }

    .metrics-bg-text {
        font-size: 20vw;
    }

    .radical-sticker-container {
        height: auto;
        gap: 20px;
        padding: 30px 20px;
    }

    .metric-sticker {
        min-width: 160px;
    }

    .m-label {
        font-size: 0.85rem;
    }

    .m-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .metric-sticker {
        min-width: 140px;
        padding: 15px;
    }

    .m-label {
        font-size: 0.75rem;
    }

    .m-value {
        font-size: 2rem;
    }

    .sticker {
        padding: 8px 15px;
    }
}

/* ========== MENU SECTION ========== */
@media (max-width: 1024px) {
    .horizontal-menu-container {
        padding: 80px 20px;
        gap: 60px;
    }

    .menu-card-radical {
        flex: 0 0 380px;
    }

    .menu-img-wrap {
        height: 420px;
        box-shadow: 15px 15px 0 var(--neon-red);
    }

    .m-title {
        font-size: 3rem;
    }

    .menu-btn {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-vertical-bg {
        font-size: 18vw;
        right: -8vw;
    }

    .horizontal-menu-container {
        padding: 60px 15px;
        gap: 40px;
    }

    .menu-card-radical {
        flex: 0 0 280px;
    }

    .menu-img-wrap {
        height: 320px;
        box-shadow: 10px 10px 0 var(--neon-red);
        border: 3px solid var(--contrast-white);
    }

    .m-title {
        font-size: 2rem;
        padding: 8px;
    }

    .m-price {
        font-size: 1.5rem;
    }

    .menu-btn {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .menu-btn-wrap {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .menu-card-radical {
        flex: 0 0 220px;
    }

    .menu-img-wrap {
        height: 250px;
        box-shadow: 8px 8px 0 var(--neon-red);
    }

    .m-title {
        font-size: 1.5rem;
    }

    .menu-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        box-shadow: 5px 5px 0 var(--deep-black);
    }
}

/* ========== TEAR SECTION ========== */
@media (max-width: 1024px) {
    .tear-container {
        height: 80vh;
    }

    .tear-title {
        font-size: 12vw;
    }

    .tear-list {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tear-container {
        height: auto;
        flex-direction: column;
    }

    .tear-left,
    .tear-right {
        flex: 1;
        width: 100%;
        clip-path: none;
        margin-left: 0;
        padding-left: 0;
        padding: 80px 30px;
    }

    .tear-left {
        background: var(--neon-red);
    }

    .tear-right {
        background: var(--digital-blue);
    }

    .tear-title {
        font-size: 10vw;
        margin-bottom: 30px;
    }

    .tear-list {
        font-size: 1.2rem;
    }

    .tear-divider {
        position: relative;
        width: 100%;
        height: auto;
        left: auto;
        top: auto;
        padding: 40px 0;
    }

    .tear-vs {
        font-size: 3rem;
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .tear-left,
    .tear-right {
        padding: 50px 20px;
    }

    .tear-title {
        font-size: 8vw;
    }

    .tear-list {
        font-size: 1rem;
    }

    .tear-divider {
        padding: 30px 0;
    }

    .tear-vs {
        font-size: 2.5rem;
    }
}

/* ========== CRAFT GRID SECTION ========== */
@media (max-width: 1024px) {
    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .craft-card {
        padding: 30px;
        box-shadow: 12px 12px 0 var(--neon-red);
    }

    .craft-img-wrap {
        height: 250px;
        margin-bottom: 20px;
    }

    .craft-text h3 {
        font-size: 1.8rem;
    }

    .craft-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .craft-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .craft-card {
        padding: 25px;
        box-shadow: 10px 10px 0 var(--neon-red);
        transform: rotate(0deg) !important;
    }

    .craft-card:hover {
        transform: scale(1.02) !important;
    }

    .craft-img-wrap {
        height: 200px;
    }

    .craft-text h3 {
        font-size: 1.5rem;
    }

    .craft-badge {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .craft-card {
        padding: 20px;
        box-shadow: 8px 8px 0 var(--neon-red);
    }

    .craft-img-wrap {
        height: 180px;
    }

    .craft-text h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .craft-text p {
        font-size: 0.9rem;
    }
}

/* ========== STORE SECTION ========== */
@media (max-width: 1024px) {
    .store-radical-wrap {
        gap: 40px;
    }

    .store-map-radical {
        height: 400px;
        flex: 1.2;
    }

    .store-stats-cloud {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .store-radical-wrap {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .store-text-side {
        flex: 1;
    }

    .radical-title-large {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .radical-desc {
        font-size: 1rem;
    }

    .store-stats-cloud {
        gap: 10px;
        margin: 20px 0;
    }

    .store-search-radical {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .store-search-radical input {
        width: 100%;
        padding: 15px;
    }

    .store-search-radical .btn {
        width: 100%;
    }

    .store-map-radical {
        width: 100%;
        height: 300px;
    }

    .map-frame {
        box-shadow: 15px 15px 0 var(--deep-black);
    }
}

@media (max-width: 480px) {
    .store-radical-wrap {
        padding: 30px 15px;
    }

    .radical-title-large {
        font-size: 1.8rem;
    }

    .store-stats-cloud {
        flex-wrap: wrap;
    }

    .store-map-radical {
        height: 250px;
    }

    .sticker {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ========== INTERIOR GRID SECTION ========== */
@media (max-width: 1024px) {
    .interior-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: stretch;
    }

    .interior-item {
        height: auto;
        aspect-ratio: 4/5;
    }

    .interior-item:nth-child(2) {
        transform: translateY(0);
        aspect-ratio: 4/5;
    }

    .interior-label {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .interior-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interior-item {
        aspect-ratio: 16/9;
        height: auto;
    }

    .interior-item:nth-child(1),
    .interior-item:nth-child(2),
    .interior-item:nth-child(3) {
        height: auto;
        transform: translateY(0) !important;
    }

    .interior-item:hover {
        transform: scale(1.02) rotate(0deg) !important;
        box-shadow: 15px 15px 0 var(--neon-red);
    }

    .interior-label {
        font-size: 0.9rem;
        padding: 10px 15px;
        bottom: -15px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .interior-item {
        aspect-ratio: 16/10;
    }

    .interior-label {
        font-size: 0.8rem;
        padding: 8px 12px;
        bottom: -12px;
        right: -12px;
    }
}

/* ========== VIRAL GRID SECTION ========== */
@media (max-width: 1024px) {
    .viral-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .viral-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .viral-card {
        aspect-ratio: 1;
    }

    .viral-card:nth-child(2) {
        transform: translateY(0);
    }

    .viral-card:hover {
        transform: scale(1.02);
    }

    .viral-stats {
        padding: 15px 20px;
        gap: 15px;
        font-size: 0.9rem;
    }

    .stat-item {
        font-size: 1rem;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .viral-stats {
        padding: 12px 15px;
        gap: 10px;
    }

    .stat-item {
        font-size: 0.85rem;
    }

    .stat-item i {
        font-size: 1rem;
    }
}

/* ========== PROFIT SECTION ========== */
@media (max-width: 1024px) {
    .profit-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .profit-engine-box {
        padding: 40px;
        box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.3);
    }

    .engine-header {
        margin-bottom: 30px;
    }

    .result-item h4 {
        font-size: 3rem;
    }

    .margin-card {
        padding: 25px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .profit-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .profit-engine-box {
        flex: 1;
        padding: 35px;
        box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
        border: 4px solid var(--contrast-white);
    }

    .profit-details {
        flex: 1;
        gap: 20px;
    }

    .margin-card {
        padding: 20px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .m-label {
        font-size: 0.9rem;
    }

    .m-value {
        font-size: 2.5rem;
    }

    .result-item h4 {
        font-size: 2.5rem;
    }

    .result-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .profit-engine-box {
        padding: 25px;
    }

    .engine-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .simulator-main label {
        font-size: 1rem;
    }

    .margin-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .m-value {
        font-size: 2rem;
    }

    .result-item h4 {
        font-size: 2rem;
    }

    .engine-note {
        font-size: 0.8rem;
    }
}

/* ========== INQUIRY SECTION ========== */
@media (max-width: 1024px) {
    .inquiry-radical-container {
        gap: 60px;
    }

    .inquiry-form-radical {
        padding: 50px;
    }

    .form-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .inquiry-radical-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .inquiry-form-radical {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding: 35px;
        box-shadow: 15px 15px 0 var(--deep-black);
    }

    .form-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .form-title span {
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .form-group-radical input,
    .form-group-radical select {
        padding: 15px;
        font-size: 1rem;
    }

    .inquiry-contact-side {
        width: 100%;
        max-width: 100%;
    }

    .contact-box {
        padding: 25px;
        font-size: 2rem;
        box-shadow: 12px 12px 0 var(--deep-black);
        transform: rotate(0deg);
    }

    .contact-hours {
        font-size: 0.95rem;
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .inquiry-radical-container {
        padding: 0 15px;
    }

    .inquiry-form-radical {
        padding: 25px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-title span {
        font-size: 1.2rem;
    }

    .form-group-radical {
        margin-bottom: 15px;
    }

    .form-group-radical input,
    .form-group-radical select {
        padding: 12px;
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
    }

    .contact-box {
        padding: 20px;
        font-size: 1.5rem;
        box-shadow: 10px 10px 0 var(--deep-black);
    }

    .contact-hours {
        font-size: 0.85rem;
    }
}

/* ========== FOOTER SECTION ========== */
@media (max-width: 1024px) {
    .footer-top {
        gap: 40px;
    }

    .footer-logo {
        font-size: 6vw;
    }

    .footer-links a {
        font-size: 1.2rem;
    }

    .info-group span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 5vw;
    }

    .footer-links {
        margin-top: 20px;
        text-align: left;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .info-group {
        gap: 3px;
    }

    .info-group span {
        font-size: 0.85rem;
        opacity: 0.7;
    }

    .info-bold {
        font-size: 0.95rem;
        opacity: 1;
    }

    .footer-bottom {
        padding: 20px 20px 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 4vw;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-info {
        padding: 0 15px;
        gap: 20px;
    }

    .info-group span {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 15px 15px 0;
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
}

/* ========== STICKY BAR SECTION ========== */
@media (max-width: 1024px) {
    .bar-heading {
        font-size: 1.5rem;
    }

    .bar-form {
        gap: 12px;
    }

    .bar-form input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .bar-submit {
        padding: 10px 25px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 768px) {
    .sticky-inquiry-bar {
        padding: 8px 0;
        border-top: 3px solid var(--deep-black);
    }

    .bar-container {
        gap: 10px;
        padding: 0 15px;
        flex-direction: column;
    }

    .bar-heading {
        display: none;
    }

    .bar-form {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .bar-form input {
        padding: 10px 12px;
        font-size: 0.9rem;
        width: 100%;
    }

    .bar-submit {
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
        width: 100%;
    }

    .bar-close {
        display: none;
    }
}

@media (max-width: 480px) {
    .sticky-inquiry-bar {
        padding: 6px 0;
    }

    .bar-container {
        gap: 6px;
        padding: 0 10px;
    }

    .bar-form {
        gap: 5px;
    }

    .bar-form input {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .bar-submit {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
}

