    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
      color: var(--text);
      background: var(--bg-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }
    button { font-family: inherit; cursor: pointer; border: none; }
    input, textarea, select { font-family: inherit; }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #111; }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

    :root {
      --bg-primary: #0a0a0a;
      --bg-section: #111111;
      --bg-card: #1a1a1a;
      --bg-card-hover: #222222;
      --red: #C0392B;
      --red-dark: #922b21;
      --red-glow: rgba(192,57,43,0.15);
      --gold: #D4A843;
      --white: #ffffff;
      --text: #f0f0f0;
      --text-sub: rgba(255,255,255,0.6);
      --text-dim: rgba(255,255,255,0.35);
      --border: rgba(255,255,255,0.08);
      --border-light: rgba(255,255,255,0.12);
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: 100px 0; scroll-margin-top: 72px; }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== HEADER ===== */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(10,10,10,0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s, box-shadow 0.3s;
    }
    #header.scrolled {
      background: rgba(10,10,10,0.95);
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 48px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.5px;
      flex-shrink: 0;
    }
    .logo em { color: var(--red); font-style: normal; }
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-sub);
      padding: 8px 14px;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
    .nav-cta {
      background: var(--red) !important;
      color: var(--white) !important;
      padding: 10px 24px !important;
      border-radius: 6px;
      font-weight: 700 !important;
      margin-left: 12px;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      height: calc(100vh - 72px);
      height: calc(100dvh - 72px);
      overflow-y: auto;
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(20px);
      padding: 24px;
      z-index: 999;
      flex-direction: column;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 18px;
      color: var(--text-sub);
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--white); }
    .mobile-nav a:last-child { border-bottom: none; color: var(--red); font-weight: 700; }

    /* ===== SECTION 1: HERO with GSAP clip-path ===== */
    #hero-wrapper {
      position: relative;
      height: 300vh;
    }
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: #000;
    }
    .hero-video-bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.5;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(10,10,10,0.85) 100%);
    }
    .hero-circle-reveal {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
      clip-path: circle(0% at 50% 50%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
    }
    .hero-content {
      position: relative;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
      padding: 0 24px;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(192,57,43,0.2);
      border: 1px solid rgba(192,57,43,0.4);
      color: var(--red);
      font-size: 14px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 30px;
      margin-bottom: 32px;
      letter-spacing: 0.5px;
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 60px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-title .highlight { color: var(--red); }
    .hero-subtitle {
      font-size: clamp(16px, 2vw, 22px);
      color: var(--text-sub);
      line-height: 1.6;
      max-width: 700px;
      margin-bottom: 16px;
    }
    .hero-desc {
      font-size: clamp(14px, 1.5vw, 17px);
      color: var(--text-dim);
      max-width: 600px;
      margin-bottom: 48px;
      line-height: 1.7;
    }
    .hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: var(--white);
      font-size: 17px;
      font-weight: 700;
      padding: 16px 40px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      border: none;
    }
    .btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(192,57,43,0.3);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      font-size: 16px;
      font-weight: 600;
      padding: 16px 32px;
      border-radius: 8px;
      border: 1px solid var(--border-light);
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }

    /* ===== SECTION 2: Cost Comparison ===== */
    #cost-comparison {
      background: var(--bg-section);
      position: relative;
      overflow: hidden;
    }
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 60px;
    }
    .compare-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 48px 40px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .compare-card.other { opacity: 0.6; }
    .compare-card.other .compare-price { text-decoration: line-through; color: var(--text-dim); }
    .compare-card.ours {
      border-color: rgba(192,57,43,0.3);
      box-shadow: 0 0 60px rgba(192,57,43,0.1);
    }
    .compare-card.ours::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold));
    }
    .compare-label {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-sub);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .compare-card.ours .compare-label { color: var(--red); }
    .compare-price {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .compare-card.ours .compare-price { color: var(--red); }
    .compare-sub { font-size: 15px; color: var(--text-sub); }

    .hashtag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 60px;
    }
    .hashtag-pill {
      background: rgba(192,57,43,0.1);
      border: 1px solid rgba(192,57,43,0.25);
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 30px;
      white-space: nowrap;
      transition: background 0.2s, transform 0.2s;
    }
    .hashtag-pill:hover {
      background: rgba(192,57,43,0.2);
      transform: translateY(-2px);
    }

    /* Menu marquee slider */
    .menu-marquee { overflow: hidden; position: relative; }
    .menu-marquee .swiper-wrapper { transition-timing-function: linear !important; }
    .menu-marquee .swiper-slide img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
    }

    /* ===== SECTION 3: Owner Story ===== */
    #owner-story {
      background: var(--bg-primary);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 !important;
      scroll-margin-top: 72px;
    }
    #owner-story > .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    #owner-story .section-title {
      font-size: clamp(36px, 5vw, 56px) !important;
      margin-bottom: 24px !important;
    }
    #owner-story .section-subtitle {
      font-size: clamp(18px, 2vw, 22px) !important;
      margin-bottom: 60px !important;
    }
    #owner-story .revenue-box {
      padding: 48px 40px !important;
      max-width: 340px !important;
      min-width: 280px !important;
      width: 340px !important;
    }
    #owner-story .revenue-box .amount {
      font-size: clamp(32px, 4vw, 44px) !important;
      white-space: nowrap;
    }
    #owner-story .revenue-box .label {
      font-size: 18px !important;
      margin-bottom: 16px !important;
    }
    #owner-story .revenue-box .unit {
      font-size: 20px !important;
    }
    #owner-story .revenue-arrow {
      flex-shrink: 0;
    }
    #owner-story .arrow-icon {
      font-size: 56px !important;
    }
    #owner-story .revenue-box {
      overflow: visible !important;
    }
    #owner-story .revenue-display {
      flex-wrap: nowrap !important;
    }
    #owner-story .revenue-multiplier {
      font-size: 15px !important;
      padding: 7px 18px !important;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900;
      color: var(--white);
      text-align: center;
      line-height: 1.3;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .section-subtitle {
      font-size: clamp(15px, 1.5vw, 18px);
      color: var(--text-sub);
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
      line-height: 1.6;
    }

    .revenue-display {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      margin: 0 auto 60px;
      max-width: 900px;
      flex-wrap: wrap;
    }
    .revenue-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      min-width: 220px;
      flex: 1;
      max-width: 300px;
    }
    .revenue-box .label {
      font-size: 14px;
      color: var(--text-sub);
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .revenue-box .amount {
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 900;
      line-height: 1;
      margin-bottom: 4px;
    }
    .revenue-box .unit { font-size: 16px; color: var(--text-sub); }
    .revenue-box.before .amount { color: var(--text-dim); }
    .revenue-box.after .amount { color: var(--red); }
    .revenue-box.after { border-color: rgba(192,57,43,0.3); box-shadow: 0 0 40px rgba(192,57,43,0.08); }
    .revenue-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .arrow-icon {
      font-size: 40px;
      color: var(--red);
      font-weight: 900;
      line-height: 1;
    }
    .revenue-multiplier {
      background: var(--red);
      color: var(--white);
      font-size: 14px;
      font-weight: 800;
      padding: 6px 16px;
      border-radius: 20px;
      display: inline-block;
      margin-top: 16px;
      text-align: center;
      letter-spacing: 0.5px;
    }

    .qa-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 60px;
    }
    .qa-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .qa-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .qa-card .q {
      font-size: 15px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .qa-card .a {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.7;
    }

    .store-photo {
      width: 100%;
      height: auto;
      border-radius: 16px;
      border: 1px solid var(--border);
    }

    /* ===== SECTION 4: Startup Guide ===== */
    #startup-guide { background: var(--bg-section); }

    .revenue-proof {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 60px 48px;
      text-align: center;
      margin-bottom: 60px;
    }
    .revenue-proof-eyebrow {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-sub);
      margin-bottom: 16px;
    }
    .revenue-proof-heading {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 48px;
    }
    .revenue-proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .proof-circle-card {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .proof-circle {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 8px 30px rgba(192,57,43,0.25);
    }
    .proof-value {
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .proof-unit {
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,0.8);
      margin-top: 2px;
    }
    .proof-label {
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
    }
    .proof-sub {
      font-size: 13px;
      color: var(--text-dim);
      font-weight: 500;
    }

    .metrics-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 60px;
    }
    .metric-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px;
      text-align: center;
    }
    .metric-card .metric-value {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      color: var(--red);
      margin-bottom: 8px;
    }
    .metric-card .metric-label {
      font-size: 15px;
      color: var(--text-sub);
      font-weight: 600;
    }

    .startup-cost-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 60px;
    }
    .startup-cost-header {
      background: var(--red);
      padding: 20px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .startup-cost-header span:first-child {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
    }
    .startup-cost-total {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 900;
      color: var(--white);
    }
    .startup-cost-table {
      width: 100%;
      border-collapse: collapse;
    }
    .startup-cost-table thead th {
      padding: 14px 24px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dim);
      text-align: left;
      border-bottom: 1px solid var(--border-light);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .startup-cost-table thead th:last-child {
      text-align: right;
    }
    .startup-cost-table tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background 0.2s;
    }
    .startup-cost-table tbody tr:last-child {
      border-bottom: none;
    }
    .startup-cost-table tbody tr:hover {
      background: rgba(255,255,255,0.02);
    }
    .startup-cost-table tbody td {
      padding: 20px 24px;
      font-size: 15px;
      color: var(--text-sub);
      vertical-align: middle;
    }
    .startup-cost-table tbody td:last-child {
      text-align: right;
      white-space: nowrap;
    }
    .sct-item {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 2px;
    }
    .sct-sub {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 500;
    }
    .sct-amount {
      font-size: 17px;
      font-weight: 800;
      color: var(--white);
    }
    .sct-highlight {
      color: var(--red);
    }
    .free-badge {
      display: inline-block;
      background: rgba(192,57,43,0.15);
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-left: 6px;
    }

    .benefit-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .benefit-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 24px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 50px rgba(0,0,0,0.3);
      border-color: rgba(192,57,43,0.25);
    }
    .benefit-card .num {
      font-size: 14px;
      font-weight: 800;
      color: var(--red);
      margin-bottom: 16px;
      letter-spacing: 1px;
    }
    .benefit-card .benefit-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 10px;
    }
    .benefit-card .benefit-desc {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.6;
    }

    /* ===== SECTION 5: Competitiveness ===== */
    #competitiveness { background: var(--bg-primary); }

    .feature-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .feature-card .fc-num {
      font-size: 60px;
      font-weight: 900;
      color: rgba(192,57,43,0.1);
      position: absolute;
      top: 20px; right: 30px;
      line-height: 1;
    }
    .feature-card .fc-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
    }
    .feature-card .fc-highlight {
      font-size: 18px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 16px;
    }
    .feature-card .fc-desc {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.7;
    }

    .urgency-banner {
      background: linear-gradient(135deg, var(--red-dark), var(--red));
      border-radius: 20px;
      padding: 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .urgency-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
    }
    .urgency-badge {
      display: inline-block;
      background: rgba(0,0,0,0.3);
      color: var(--white);
      font-size: 16px;
      font-weight: 800;
      padding: 8px 24px;
      border-radius: 30px;
      margin-bottom: 24px;
      position: relative;
      animation: urgencyPulse 2s ease-in-out infinite;
    }
    @keyframes urgencyPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    .urgency-title {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 32px;
      position: relative;
    }
    .urgency-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 600px;
      margin: 0 auto 32px;
      position: relative;
    }
    .urgency-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      background: rgba(0,0,0,0.2);
      padding: 14px 20px;
      border-radius: 10px;
    }
    .urgency-item .check { color: var(--gold); font-size: 18px; }
    .urgency-status {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      position: relative;
      font-weight: 500;
    }
    .urgency-status strong { color: var(--white); font-size: 18px; }

    /* ===== SECTION 6: Autogrill ===== */
    #autogrill {
      background: var(--bg-section);
      scroll-margin-top: 72px;
    }
    .autogrill-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .autogrill-header .at-badge {
      display: inline-block;
      background: rgba(192,57,43,0.15);
      border: 1px solid rgba(192,57,43,0.3);
      color: var(--red);
      font-size: 13px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .autogrill-header h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 24px;
    }
    .autogrill-header .autogrill-numbers {
      justify-content: center;
      margin-bottom: 24px;
    }
    .autogrill-header .autogrill-features {
      max-width: 600px;
      margin: 0 auto;
    }
    .autogrill-videos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .autogrill-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .autogrill-video-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
      border: 1px solid var(--border);
      aspect-ratio: 4 / 3;
    }
    .autogrill-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }
    .autogrill-video-wrap img.poster-gif {
      width: 100%;
      display: block;
      border-radius: 20px;
    }
    .autogrill-text .at-badge {
      display: inline-block;
      background: rgba(192,57,43,0.15);
      border: 1px solid rgba(192,57,43,0.3);
      color: var(--red);
      font-size: 13px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .autogrill-text h2 {
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 24px;
    }
    .autogrill-numbers {
      display: flex;
      gap: 32px;
      margin-bottom: 32px;
    }
    .autogrill-num {
      text-align: center;
    }
    .autogrill-num .val {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 900;
      color: var(--red);
      line-height: 1;
      margin-bottom: 4px;
    }
    .autogrill-num .lbl {
      font-size: 13px;
      color: var(--text-sub);
      font-weight: 500;
    }
    .autogrill-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .autogrill-feat {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }
    .autogrill-feat .icon { color: var(--red); font-size: 16px; }

    /* ===== PRODUCT CARDS ===== */
    .product-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .product-card {
      background: #1b1d27;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    .product-card-media {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: var(--bg-primary);
      overflow: hidden;
    }
    .product-card-media video,
    .product-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .product-media-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-card) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dim);
      font-size: 48px;
    }
    .product-badge-best {
      position: absolute;
      top: 14px;
      left: 14px;
      background: #ef4444;
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      z-index: 2;
    }
    .product-card-body {
      padding: 24px;
    }
    .product-category {
      font-size: 12px;
      font-weight: 800;
      color: var(--red);
      letter-spacing: 0.5px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .product-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .product-desc {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .product-tag {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-sub);
      background: var(--bg-primary);
      border: 1px solid var(--border-light);
      padding: 5px 12px;
      border-radius: 20px;
    }
    /* ===== SECTION 7: Menu ===== */
    #menu-section { background: var(--bg-primary); }
    .menu-swiper {
      margin-bottom: 40px;
    }
    .menu-swiper .swiper-slide {
      width: auto;
    }
    .menu-slide {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s;
    }
    .menu-slide:hover { transform: translateY(-4px); }
    .menu-slide img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .menu-slide-info {
      padding: 16px 20px;
    }
    .menu-slide-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }
    .menu-slide-info p {
      font-size: 13px;
      color: var(--text-sub);
    }
    .collection-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .collection-row img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid var(--border);
      transition: transform 0.3s;
    }
    .collection-row img:hover { transform: scale(1.02); }

    /* ===== SECTION 8: Reviews ===== */
    #reviews { background: var(--bg-section); }
    .review-marquee {
      overflow: hidden;
      position: relative;
    }
    .review-marquee .swiper-wrapper {
      transition-timing-function: linear !important;
    }
    .review-marquee .swiper-slide {
      height: auto;
    }
    .review-slide-inner {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .review-slide-inner img {
      width: 100%;
      height: auto;
      display: block;
    }
    .ranking-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 60px 48px;
      text-align: center;
      margin-top: 60px;
    }
    .ranking-eyebrow {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-sub);
      margin-bottom: 16px;
    }
    .ranking-heading {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 48px;
    }
    .ranking-circles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .ranking-circle-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .ranking-circle {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 8px 30px rgba(192,57,43,0.25);
    }
    .ranking-icon {
      font-size: 18px;
      color: rgba(255,255,255,0.9);
      margin-bottom: 2px;
    }
    .ranking-value {
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .ranking-label {
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 6px;
    }
    .ranking-sub {
      font-size: 13px;
      color: var(--text-dim);
      font-weight: 500;
    }

    /* ===== SECTION 9: Video Story ===== */
    #video-story { background: var(--bg-primary); }
    .video-wrap {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
      border: 1px solid var(--border);
      cursor: pointer;
    }
    .video-wrap video {
      width: 100%;
      display: block;
    }
    .video-play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.4);
      transition: background 0.3s;
    }
    .video-play-overlay:hover { background: rgba(0,0,0,0.25); }
    .play-btn {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .play-btn:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(192,57,43,0.4); }
    .play-btn svg { width: 32px; height: 32px; fill: var(--white); margin-left: 4px; }

    /* ===== Interview Grid ===== */
    .interview-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      align-items: stretch;
      margin-top: 48px;
    }
    .interview-photo {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .interview-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .interview-qa {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .interview-qa-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 32px;
    }
    .interview-q {
      font-size: 14px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 10px;
    }
    .interview-a {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.8;
    }

    /* ===== SECTION 10: Checklist ===== */
    #checklist { background: var(--bg-section); }
    .checklist-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 48px;
    }
    .check-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text);
      font-weight: 500;
      line-height: 1.5;
      transition: border-color 0.3s, transform 0.3s;
    }
    .check-item:hover {
      border-color: rgba(192,57,43,0.3);
      transform: translateY(-2px);
    }
    .check-item .check-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 6px;
      border: 2px solid var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: 14px;
      font-weight: 800;
      margin-top: 2px;
    }
    .cta-banner {
      background: var(--red);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
    }
    .cta-banner p {
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 800;
      color: var(--white);
      position: relative;
      line-height: 1.5;
    }

    /* ===== CONTACT SECTION ===== */
    #contact { background: var(--bg-primary); }
    .contact-message {
      margin-bottom: 60px;
    }
    .contact-line {
      font-size: clamp(28px, 3.2vw, 34px);
      font-weight: 600;
      color: var(--text-sub);
      line-height: 1.4;
    }
    .contact-line.bold {
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.3;
    }
    .contact-line-break {
      height: 16px;
    }
    .contact-form-open {
      max-width: 100%;
    }
    .form-row-open {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 8px;
    }
    .form-group-open {
      padding: 16px 0;
    }
    .form-group-open label {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }
    .form-group-open label .required { color: var(--red); margin-left: 2px; }
    .form-group-open input,
    .form-group-open select {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border-light);
      color: var(--text);
      font-size: 15px;
      padding: 12px 0;
      outline: none;
      transition: border-color 0.3s;
      border-radius: 0;
    }
    .form-group-open input:focus,
    .form-group-open select:focus {
      border-bottom-color: var(--red);
    }
    .form-group-open input::placeholder {
      color: var(--text-dim);
    }
    .form-group-open select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0 center;
      cursor: pointer;
    }
    .form-group-open select option {
      background: var(--bg-card);
      color: var(--text);
    }

    .privacy-check {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      cursor: pointer;
    }
    .privacy-check input[type="checkbox"] {
      width: 20px;
      height: 20px;
      accent-color: var(--red);
      cursor: pointer;
    }
    .privacy-check span {
      font-size: 15px;
      color: var(--text-sub);
    }

    .submit-btn-open {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-size: 18px;
      font-weight: 700;
      padding: 18px 80px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .submit-btn-open:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(192,57,43,0.3);
    }

    /* ===== FOOTER ===== */
    #footer {
      background: #050d0a;
      padding: 60px 0 120px;
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .footer-logo {
      font-size: 20px;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 24px;
    }
    .footer-logo em { color: var(--red); font-style: normal; }
    .footer-info p {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 2;
    }
    .footer-copy {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      font-size: 13px;
      color: var(--text-dim);
    }

    /* ===== FLOATING BOTTOM BAR ===== */
    #floating-bar {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 999;
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      padding: 12px 24px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    #floating-bar.show { transform: translateY(0); }
    .floating-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .floating-label {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .floating-phone {
      font-size: 15px;
      font-weight: 700;
      color: var(--red);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .floating-form {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }
    .floating-form input {
      flex: 1;
      min-width: 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 14px;
      padding: 10px 14px;
      border-radius: 8px;
      outline: none;
    }
    .floating-form input:focus { border-color: var(--red); }
    .floating-form input::placeholder { color: var(--text-dim); }
    .floating-submit {
      background: var(--red);
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      padding: 10px 24px;
      border-radius: 8px;
      border: none;
      white-space: nowrap;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .floating-submit:hover { background: var(--red-dark); }

    /* Mobile floating bar */
    .floating-mobile {
      display: none;
    }

    /* ===== RESPONSIVE ===== */
    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
      .header-inner { padding: 0 24px; }
      nav { display: none; }
      .hamburger { display: flex; }
      .comparison-grid { grid-template-columns: 1fr; }
      .qa-grid { grid-template-columns: 1fr; }
      .autogrill-grid { grid-template-columns: 1fr; gap: 40px; }
      .feature-cards { grid-template-columns: 1fr 1fr; }
      .benefit-cards { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .metrics-row { grid-template-columns: 1fr; }
      .checklist-grid { grid-template-columns: repeat(2, 1fr); }
      .urgency-items { grid-template-columns: 1fr; }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
      .section-pad { padding: 56px 0; }
      .container { padding: 0 20px; }
      .section-title { font-size: clamp(24px, 6vw, 32px); margin-bottom: 14px; }
      .section-subtitle { font-size: 14px; margin-bottom: 40px; }

      /* Hero */
      .hero-content { padding: 0 24px; }
      .hero-badge { font-size: 12px; padding: 6px 16px; margin-bottom: 24px; }
      .hero-title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 16px; }
      .hero-subtitle { font-size: 15px; margin-bottom: 12px; }
      .hero-desc { font-size: 13px; margin-bottom: 28px; }
      .hero-cta-group { flex-direction: column; gap: 10px; }
      .hero-cta-group .btn-primary,
      .hero-cta-group .btn-ghost { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }

      /* Numbers */
      .number-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
      .num-item { padding: 24px 20px; }
      .num-value { font-size: clamp(32px, 8vw, 44px); }

      /* Comparison */
      .comparison-grid { gap: 12px; }
      .compare-card { padding: 28px 20px; }
      .compare-label { font-size: 13px; }
      .compare-price { font-size: clamp(32px, 8vw, 44px) !important; }
      .hashtag-row { gap: 8px; }
      .hashtag { font-size: 12px; padding: 8px 14px; }

      /* Revenue */
      .revenue-display { flex-direction: column; gap: 12px; }
      .arrow-icon { transform: rotate(90deg); display: block; }
      .revenue-box { min-width: unset; max-width: unset; width: 100%; padding: 24px 20px; }
      .revenue-box .amount { font-size: clamp(28px, 7vw, 40px); }
      .revenue-growth { font-size: 14px; padding: 8px 20px; }

      /* Revenue Proof */
      .revenue-proof { padding: 40px 24px; }
      .revenue-proof-heading { font-size: clamp(20px, 5vw, 28px); margin-bottom: 36px; }
      .revenue-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
      .proof-circle { width: 110px; height: 110px; }
      .proof-value { font-size: clamp(28px, 7vw, 36px); }

      /* Startup Cost Table */
      .startup-cost-header { padding: 16px 20px; }
      .startup-cost-header span:first-child { font-size: 14px; }
      .startup-cost-table thead th { padding: 12px 16px; font-size: 12px; }
      .startup-cost-table tbody td { padding: 16px; font-size: 13px; }
      .sct-item { font-size: 14px; }
      .sct-amount { font-size: 15px; }
      .startup-cost-table thead th:nth-child(2),
      .startup-cost-table tbody td:nth-child(2) { display: none; }

      /* Feature Cards */
      .feature-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
      .feature-card { padding: 32px 24px; }
      .feature-card .fc-title { font-size: 20px; }
      .feature-card .fc-highlight { font-size: 15px; }
      .feature-card .fc-desc { font-size: 14px; }
      .feature-card .fc-num { font-size: 48px; }

      /* Benefit Cards */
      .benefit-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
      .benefit-card { padding: 20px 16px; }
      .benefit-title { font-size: 14px; }
      .benefit-desc { font-size: 12px; }

      /* Urgency */
      .urgency-banner { padding: 36px 24px; border-radius: 16px; }
      .urgency-title { font-size: clamp(20px, 5vw, 28px); }
      .urgency-items { grid-template-columns: 1fr; gap: 8px; }
      .urgency-item { font-size: 14px; padding: 10px 16px; }

      /* Owner Story */
      #owner-story { min-height: auto; padding: 56px 0 !important; }
      #owner-story .section-title { font-size: clamp(24px, 6vw, 36px) !important; }
      #owner-story .section-subtitle { font-size: clamp(14px, 3.5vw, 18px) !important; margin-bottom: 40px !important; }
      #owner-story .revenue-box { width: 100% !important; max-width: none !important; min-width: unset !important; padding: 28px 24px !important; }
      #owner-story .revenue-box .amount { font-size: clamp(26px, 6vw, 36px) !important; white-space: normal !important; }
      #owner-story .revenue-box .label { font-size: 13px !important; }
      #owner-story .revenue-display { flex-wrap: wrap !important; gap: 16px; }
      #owner-story .revenue-arrow { flex-direction: row; gap: 8px; }
      #owner-story .revenue-multiplier { margin-top: 0 !important; }
      #owner-story .arrow-icon { font-size: 36px !important; }

      /* Autogrill */
      .autogrill-grid { grid-template-columns: 1fr; gap: 32px; }
      .autogrill-videos { grid-template-columns: 1fr; gap: 20px; }
      .autogrill-numbers { flex-direction: column; gap: 12px; }
      .autogrill-features { grid-template-columns: 1fr 1fr; gap: 8px; }
      .at-title { font-size: clamp(22px, 5.5vw, 30px); }
      .autogrill-header h2 { font-size: clamp(22px, 5.5vw, 32px); }
      .autogrill-header .autogrill-numbers { gap: 20px; }

      /* Product Cards */
      .product-cards-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
      .product-card-body { padding: 20px; }
      .product-title { font-size: 20px; }
      .product-desc { font-size: 14px; }

      /* Menu */
      .menu-slide img { height: 180px; }
      .menu-slide-info h4 { font-size: 14px; }
      .menu-slide-info p { font-size: 12px; }
      .collection-row { grid-template-columns: 1fr; gap: 8px; }
      .collection-row img { height: 200px; }

      /* Ranking Card */
      .ranking-card { padding: 32px 16px; margin-top: 40px; }
      .ranking-heading { font-size: clamp(20px, 5vw, 28px); margin-bottom: 36px; }
      .ranking-circles { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .ranking-circle { width: clamp(80px, 22vw, 130px); height: clamp(80px, 22vw, 130px); }
      .ranking-value { font-size: clamp(20px, 6vw, 28px); }
      .ranking-icon { font-size: 12px; }
      .ranking-label { font-size: clamp(11px, 3vw, 14px); }
      .ranking-sub { font-size: clamp(9px, 2.5vw, 11px); }


      /* Interview */
      .interview-grid { grid-template-columns: 1fr; gap: 32px; }
      .interview-photo { position: static; max-width: 320px; margin: 0 auto; }
      .interview-qa-card { padding: 24px 20px; }

      /* Checklist */
      .checklist-grid { grid-template-columns: 1fr; gap: 10px; }
      .check-item { font-size: 15px; padding: 16px 20px; }
      .cta-banner { padding: 28px 20px; }
      .cta-banner p { font-size: clamp(16px, 4.5vw, 22px); }

      /* Contact Message */
      .contact-line {
        font-size: clamp(16px, 4vw, 20px);
        line-height: 1.5;
      }
      .contact-line.bold {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.3;
      }
      .contact-line-break { height: 10px; }

      /* Contact Form */
      .form-row-open { grid-template-columns: 1fr; gap: 0; }
      .contact-heading { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 40px; }
      .submit-btn-open { width: 100%; padding: 16px; }

      /* Floating Bar - 모바일 알약 버튼 */
      #floating-bar {
        transform: translateY(0) !important;
        background: none;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0 20px 24px;
        pointer-events: none;
      }
      .floating-inner { display: none; }
      .floating-mobile {
        display: flex;
        justify-content: flex-end;
        pointer-events: auto;
      }
      .floating-mobile .fm-pill {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 36px;
        background: var(--red);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(192,57,43,0.5);
      }

      /* Footer */
      footer { padding: 32px 20px 100px; font-size: 12px; }
    }

    /* ===== SMALL MOBILE ===== */
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .header-inner { padding: 0 16px; height: 60px; }
      .logo { font-size: 19px; }
      .section-pad { padding: 44px 0; }
      .section-title { font-size: clamp(22px, 5.5vw, 28px); }

      /* Mobile nav offset fix for 60px header */
      .mobile-nav { top: 60px; height: calc(100vh - 60px); height: calc(100dvh - 60px); }

      .hero-title { font-size: clamp(24px, 6.5vw, 32px); letter-spacing: -1px; }
      .hero-subtitle { font-size: 14px; }

      .compare-price { font-size: clamp(28px, 7vw, 36px) !important; }

      /* Owner Story small screen */
      #owner-story { padding: 44px 0 !important; }
      #owner-story .revenue-display { flex-direction: column !important; align-items: center; gap: 12px; }
      #owner-story .revenue-box { width: 100% !important; max-width: 300px !important; padding: 24px 20px !important; }
      #owner-story .revenue-box .amount { font-size: clamp(24px, 6vw, 32px) !important; }
      #owner-story .revenue-arrow { flex-direction: column; align-items: center; gap: 4px; }
      #owner-story .arrow-icon { transform: rotate(90deg) !important; font-size: 32px !important; }
      #owner-story .revenue-multiplier { margin-top: 4px !important; }

      .benefit-cards { grid-template-columns: 1fr; }
      .feature-card { padding: 28px 20px; }
      .autogrill-features { grid-template-columns: 1fr; }

      /* Revenue Proof */
      .revenue-proof { padding: 32px 16px; }
      .revenue-proof-grid { grid-template-columns: 1fr 1fr; gap: 12px 8px; }
      .proof-circle { width: 100px; height: 100px; }
      .proof-value { font-size: 28px; }
      .proof-unit { font-size: 13px; }
      .proof-label { font-size: 14px; }

      /* Product Cards */
      .product-cards-grid { gap: 16px; margin-top: 32px; }
      .product-card-body { padding: 16px; }
      .product-title { font-size: 18px; }
      .product-desc { font-size: 13px; }
      .product-tag { font-size: 11px; padding: 4px 10px; }

      .urgency-banner { padding: 28px 20px; }
      .urgency-title { font-size: 20px; }

      /* Startup cost */
      .startup-cost-header { padding: 14px 16px; }
      .startup-cost-total { font-size: clamp(18px, 5vw, 24px); }

      .menu-marquee .swiper-slide img { height: 140px; }

      /* Contact Message */
      .contact-line {
        font-size: clamp(14px, 3.8vw, 18px);
      }
      .contact-line.bold {
        font-size: clamp(20px, 5.5vw, 26px);
      }

      /* Footer */
      #footer { padding: 40px 0 100px; }
    }
