/* ===== RESET & VARIABLES ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --ink: #0f0e0c;
      --paper: #faf8f4;
      --cream: #f2ede4;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --gold-pale: #f5e9c8;
      --charcoal: #2a2825;
      --mid: #6b6660;
      --border: #ddd8cf;
      --white: #ffffff;
      --red-cta: #c0392b;
      --red-hover: #96281b;
      --radius: 4px;
      --shadow: 0 4px 24px rgba(15,14,12,.09);
      --shadow-lg: 0 12px 48px rgba(15,14,12,.14);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
    }

    h1,h2,h3,h4 {
      font-family: 'Playfair Display', serif;
      line-height: 1.22;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .4px;
      transition: all .22s ease;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--ink);
      box-shadow: 0 4px 18px rgba(201,168,76,.35);
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(201,168,76,.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 2px solid var(--gold);
    }
    .btn-outline:hover {
      background: var(--gold);
      color: var(--ink);
    }

    .btn-dark {
      background: var(--charcoal);
      color: var(--white);
    }
    .btn-dark:hover {
      background: var(--ink);
      transform: translateY(-2px);
    }

    .btn-large {
      padding: 18px 40px;
      font-size: 17px;
    }

    /* ===== HEADER / NAV ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250,248,244,.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -.3px;
    }

    .logo span { color: var(--gold); }

    nav { display: flex; align-items: center; gap: 28px; }

    nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--mid);
      transition: color .18s;
    }
    nav a:hover { color: var(--ink); }

    .nav-cta { font-weight: 600 !important; color: var(--gold) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: all .25s;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,.07) 0%, transparent 70%);
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 80px 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-pale);
      border: 1px solid var(--gold);
      color: var(--charcoal);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 18px;
      color: var(--mid);
      margin-bottom: 36px;
      max-width: 480px;
      font-weight: 400;
      line-height: 1.7;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }

    .stat-item { text-align: left; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
    }
    .stat-label {
      font-size: 13px;
      color: var(--mid);
      margin-top: 2px;
    }

    /* Card stack visual */
    .hero-visual {
      position: relative;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-stack {
      position: relative;
      width: 320px;
      height: 180px;
    }

    .biz-card {
      position: absolute;
      width: 320px;
      height: 180px;
      border-radius: 10px;
      box-shadow: var(--shadow-lg);
      transition: transform .4s ease;
    }

    .biz-card-1 {
      background: linear-gradient(135deg, #1a1814 0%, #2d2a25 100%);
      transform: rotate(-6deg) translate(-20px, 20px);
      z-index: 1;
    }

    .biz-card-2 {
      background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 50%, #c9a84c 100%);
      transform: rotate(3deg) translate(15px, -10px);
      z-index: 2;
    }

    .biz-card-3 {
      background: linear-gradient(135deg, #faf8f4 0%, #f2ede4 100%);
      border: 1px solid var(--border);
      z-index: 3;
    }

    .card-content {
      position: absolute;
      inset: 0;
      padding: 24px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
    }
    .card-title { font-size: 11px; color: var(--mid); margin-top: 2px; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }
    .card-contact { font-size: 11px; color: var(--mid); line-height: 1.5; }

    .card-gold-line {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 10px 0 0 10px;
    }

    /* Floating accent */
    .hero-accent {
      position: absolute;
      right: -40px;
      top: 40px;
      width: 200px;
      height: 200px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      opacity: .15;
    }

    .hero-accent-2 {
      position: absolute;
      left: -60px;
      bottom: 20px;
      width: 140px;
      height: 140px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      opacity: .1;
    }

    /* ===== SECTION COMMON ===== */
    section { padding: 96px 0; }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .section-lead {
      font-size: 17px;
      color: var(--mid);
      max-width: 620px;
      line-height: 1.8;
    }

    .section-header {
      margin-bottom: 56px;
    }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-lead {
      margin: 0 auto;
    }

    /* ===== WHY CARDS ===== */
    .why-section { background: var(--white); }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 64px;
      align-items: center;
    }

    .why-text h2 { margin-bottom: 20px; }
    .why-text p { color: var(--mid); line-height: 1.9; margin-bottom: 16px; }

    .why-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .pillar {
      background: var(--cream);
      border-radius: 8px;
      padding: 28px 24px;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }
    .pillar:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .pillar-icon {
      width: 48px; height: 48px;
      background: var(--gold-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 14px;
    }

    .pillar h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      font-family: 'DM Sans', sans-serif;
    }

    .pillar p { font-size: 14px; color: var(--mid); line-height: 1.7; }

    /* ===== OFFER SECTION ===== */
    .offer-section { background: var(--ink); color: var(--white); }

    .offer-section .section-eyebrow { color: var(--gold); }
    .offer-section .section-title { color: var(--white); }
    .offer-section .section-lead { color: rgba(255,255,255,.6); }

    .offer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .offer-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      padding: 32px 24px;
      position: relative;
      overflow: hidden;
      transition: border-color .2s, background .2s;
    }

    .offer-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      opacity: 0;
      transition: opacity .2s;
    }

    .offer-card:hover {
      background: rgba(255,255,255,.07);
      border-color: var(--gold);
    }
    .offer-card:hover::before { opacity: 1; }

    .offer-card.featured {
      border-color: var(--gold);
      background: rgba(201,168,76,.08);
    }
    .offer-card.featured::before { opacity: 1; }

    .offer-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--ink);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .offer-icon { font-size: 32px; margin-bottom: 16px; }

    .offer-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      font-family: 'Playfair Display', serif;
    }

    .offer-card p {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .offer-features {
      list-style: none;
      margin-bottom: 28px;
    }

    .offer-features li {
      font-size: 13px;
      color: rgba(255,255,255,.65);
      padding: 5px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .offer-features li::before {
      content: '✦';
      color: var(--gold);
      font-size: 8px;
      flex-shrink: 0;
    }

    .offer-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap .18s;
    }
    .offer-link:hover { gap: 10px; }

    /* ===== TRUST SECTION ===== */
    .trust-section { background: var(--cream); }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-bottom: 64px;
    }

    .trust-item {
      text-align: center;
      padding: 36px 20px;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .trust-icon {
      font-size: 36px;
      margin-bottom: 16px;
    }

    .trust-item h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      font-family: 'DM Sans', sans-serif;
    }

    .trust-item p { font-size: 14px; color: var(--mid); line-height: 1.7; }

    /* ===== HOW TO ORDER ===== */
    .order-section { background: var(--white); }

    .steps-wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 48px;
    }

    .steps-wrapper::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      z-index: 0;
    }

    .step {
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 72px; height: 72px;
      background: var(--ink);
      border: 3px solid var(--gold);
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
	  padding-bottom: 10px
    }

    .step h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      font-family: 'DM Sans', sans-serif;
    }

    .step p { font-size: 14px; color: var(--mid); line-height: 1.6; }

    .order-cta {
      text-align: center;
      margin-top: 56px;
    }

    /* ===== REVIEWS ===== */
    .reviews-section { background: var(--cream); }

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

    .review-card {
      background: var(--white);
      border-radius: 10px;
      padding: 32px 28px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      position: relative;
    }

    .review-quote {
      font-size: 48px;
      line-height: 1;
      color: var(--gold-pale);
      font-family: 'Playfair Display', serif;
      position: absolute;
      top: 16px;
      left: 22px;
    }

    .review-stars {
      color: var(--gold);
      font-size: 16px;
      margin-bottom: 16px;
      margin-top: 24px;
    }

    .review-text {
      font-size: 15px;
      color: var(--charcoal);
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      color: var(--ink);
      flex-shrink: 0;
    }

    .review-name {
      font-weight: 600;
      font-size: 15px;
    }
    .review-role { font-size: 12px; color: var(--mid); }

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 60%, #1a1208 100%);
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 120px 0;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.15) 0%, transparent 70%);
    }

    .final-cta-inner {
      position: relative;
      z-index: 2;
    }

    .final-cta .section-eyebrow { color: var(--gold-light); }

    .final-cta h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      margin-bottom: 20px;
    }

    .final-cta p {
      font-size: 18px;
      color: rgba(255,255,255,.65);
      margin-bottom: 44px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
    }

    .final-cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .final-cta .btn-primary {
      padding: 18px 44px;
      font-size: 17px;
    }

    /* ===== ARTICLES / BLOG ===== */
    .blog-section { background: var(--paper); padding-bottom: 48px; }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .article-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: transform .2s, box-shadow .2s;
    }

    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .article-thumb {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
    }

    .article-thumb.gold { background: linear-gradient(135deg, var(--charcoal), #2d2a25); }
    .article-thumb.cream { background: linear-gradient(135deg, var(--cream), #e8dfc8); }
    .article-thumb.dark { background: linear-gradient(135deg, #1a1814, var(--charcoal)); }

    .article-body { padding: 28px 26px; }
    .article-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .article-body h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      font-family: 'Playfair Display', serif;
      line-height: 1.35;
    }

    .article-body p { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }

    .article-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .article-link:hover { gap: 10px; }

    /* ===== ARTICLE MODALS ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15,14,12,.82);
      z-index: 200;
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 20px;
      overflow-y: auto;
    }

    .modal-overlay.active { display: flex; }

    .modal {
      background: var(--white);
      border-radius: 12px;
      max-width: 820px;
      width: 100%;
      padding: 56px 56px;
      position: relative;
      margin: auto;
    }

    .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      width: 40px; height: 40px;
      background: var(--cream);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mid);
      transition: background .18s;
    }
    .modal-close:hover { background: var(--border); color: var(--ink); }

    .modal-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .modal h2 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .modal-meta {
      font-size: 13px;
      color: var(--mid);
      margin-bottom: 36px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    .modal-content h3 {
      font-size: 1.25rem;
      margin: 28px 0 10px;
      font-family: 'Playfair Display', serif;
    }

    .modal-content p {
      font-size: 15px;
      color: var(--charcoal);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .modal-content ul, .modal-content ol {
      margin: 12px 0 20px 24px;
    }

    .modal-content li {
      font-size: 15px;
      color: var(--charcoal);
      line-height: 1.8;
      margin-bottom: 6px;
    }

    .modal-content strong { color: var(--ink); font-weight: 600; }

    .modal-cta-block {
      background: var(--cream);
      border-radius: 10px;
      padding: 28px;
      margin-top: 36px;
      text-align: center;
      border: 1px solid var(--border);
    }

    .modal-cta-block p { font-size: 15px; color: var(--mid); margin-bottom: 16px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.55);
      padding: 60px 0 32px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand .logo { color: var(--white); margin-bottom: 14px; font-size: 20px; }
    .footer-brand p { font-size: 14px; line-height: 1.8; max-width: 300px; }

    footer h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 18px;
      font-family: 'DM Sans', sans-serif;
    }

    footer ul { list-style: none; }
    footer ul li { margin-bottom: 10px; }
    footer ul a {
      font-size: 14px;
      color: rgba(255,255,255,.5);
      transition: color .18s;
    }
    footer ul a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom span { font-size: 13px; }
    .footer-bottom a { color: var(--gold); }

    /* ===== PHONE BANNER ===== */
    .phone-bar {
      background: var(--gold);
      padding: 10px 0;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
    }
    .phone-bar a { color: var(--ink); font-weight: 700; }

    /* ===== SEO CONTENT SECTION ===== */
    .seo-section { background: var(--white); }

    .seo-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .seo-col h2 { margin-bottom: 16px; }
    .seo-col h3 { font-size: 1.2rem; margin: 24px 0 8px; font-family: 'Playfair Display', serif; }
    .seo-col p { font-size: 15px; color: var(--mid); line-height: 1.9; margin-bottom: 14px; }

    .seo-list {
      list-style: none;
      margin: 0 0 20px;
    }
    .seo-list li {
      font-size: 15px;
      color: var(--mid);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.6;
    }
    .seo-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* ===== MOBILE NAV ===== */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 16px 24px;
    }

    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 15px; font-weight: 500; color: var(--mid); padding: 8px 0; border-bottom: 1px solid var(--border); }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .offer-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      section { padding: 64px 0; }

      .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 40px; }
      .hero-visual { height: 260px; }
      .card-stack { width: 260px; height: 146px; }
      .biz-card { width: 260px; height: 146px; }
      .hero-stats { gap: 24px; }

      nav { display: none; }
      .hamburger { display: flex; }

      .why-grid { grid-template-columns: 1fr; gap: 36px; }
      .why-pillars { grid-template-columns: 1fr; }

      .offer-grid { grid-template-columns: 1fr; gap: 16px; }
      .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

      .steps-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .steps-wrapper::before { display: none; }

      .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
      .articles-grid { grid-template-columns: 1fr; gap: 20px; }
      .seo-two-col { grid-template-columns: 1fr; gap: 40px; }

      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }

      .modal { padding: 36px 24px; margin: 0; }

      h1 { font-size: 2.2rem !important; }
    }

    @media (max-width: 480px) {
      .trust-grid { grid-template-columns: 1fr; }
      .steps-wrapper { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .final-cta-btns { flex-direction: column; align-items: center; }
      .hero-stats { flex-direction: column; gap: 16px; }
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
      opacity: 0;
      animation: fadeUp .65s ease forwards;
    }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .22s; }
    .delay-3 { animation-delay: .35s; }
    .delay-4 { animation-delay: .48s; }

    @keyframes float {
      0%, 100% { transform: rotate(-6deg) translate(-20px, 20px) translateY(0); }
      50% { transform: rotate(-6deg) translate(-20px, 20px) translateY(-8px); }
    }
    .biz-card-1 { animation: float 4.5s ease-in-out infinite; }

    @keyframes float2 {
      0%, 100% { transform: rotate(3deg) translate(15px, -10px) translateY(0); }
      50% { transform: rotate(3deg) translate(15px, -10px) translateY(-5px); }
    }
    .biz-card-2 { animation: float2 3.8s ease-in-out 0.4s infinite; }