*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --dark:        #151515;
      --dark-mid:    #1f1f1f;
      --dark-light:  #2b2b2b;
      --dark-border: rgba(255,255,255,0.1);
      --blue:        #4169e1;
      --blue-hover:  #3355c9;
      --white:       #ffffff;
      --grey-light:  #f8f9fb;
      --grey-border: #e5e7eb;
      --text-dark:   #151515;
      --text-mid:    #52525b;
      --text-light:  #94a3b8;
      --font: 'Inter', sans-serif;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: env(safe-area-inset-top, 0px);
    }
    body {
      font-family: var(--font);
      font-size: 16px; line-height: 1.6;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
      padding-top: env(safe-area-inset-top, 0px);
      padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .display { font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
    .heading  { font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 60px; padding-top: env(safe-area-inset-top, 0px);
      display: flex; align-items: center; justify-content: space-between;
      padding-left: 24px; padding-right: 24px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px);
      border-bottom-color: var(--grey-border);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .nav-logo {
      font-weight: 800; font-size: 1rem; letter-spacing: -0.03em;
      color: var(--text-dark); text-decoration: none;
      display: flex; align-items: center; gap: 9px;
    }
    .brand-stack {
      display: flex; flex-direction: column; align-items: center; line-height: 1.05;
      text-align: center;
    }
    .brand-name {
      font-size: 1rem; font-weight: 800; letter-spacing: -0.03em;
      color: var(--text-dark);
    }
    .brand-sub {
      font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--text-mid);
      margin-top: 1px;
    }
    .mobile-brand-stack {
      align-items: flex-start; text-align: left;
    }
    .footer-brand-stack {
      align-items: center;
    }
    .logo-mark {
      width: 32px; height: 32px; border-radius: 8px;
      background: var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 800; color: #fff; letter-spacing: 0;
      flex-shrink: 0;
    }
    .nav-links { display: none; list-style: none; gap: 28px; }
    @media (min-width: 768px) { .nav-links { display: flex; } }
    .nav-links a {
      color: var(--text-mid); text-decoration: none;
      font-size: 0.875rem; font-weight: 500; transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--text-dark); }
    .nav-actions { display: flex; gap: 14px; align-items: center; }
    .nav-phone {
      display: flex; align-items: center; gap: 6px;
      color: var(--text-mid); font-size: 0.85rem; font-weight: 600; text-decoration: none;
      transition: color 0.15s;
    }
    .nav-phone i { color: var(--blue); font-size: 1rem; }
    .nav-phone:hover { color: var(--blue); }
    @media (max-width: 767px) { .nav-phone span { display: none; } }
    .nav-burger {
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; background: none; border: none; cursor: pointer;
      font-size: 1.4rem; color: var(--text-dark); flex-shrink: 0;
    }
    @media (min-width: 768px) { .nav-burger { display: none; } }
    .btn-nav-solid {
      background: var(--blue); border: none; cursor: pointer;
      color: #fff; font-family: var(--font);
      font-size: 0.85rem; font-weight: 600; padding: 8px 18px; border-radius: 7px;
      transition: background 0.15s; text-decoration: none; display: inline-block;
    }
    .btn-nav-solid:hover { background: var(--blue-hover); }
    @media (max-width: 767px) { .nav-actions .btn-nav-solid { display: none; } }

    /* ── MOBILE NAV PANEL ── */
    .mobile-nav-overlay {
      position: fixed; inset: 0; z-index: 400;
      background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
      display: none;
    }
    .mobile-nav-overlay.open { display: block; }
    .mobile-nav-panel {
      position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 85vw);
      background: var(--white);
      padding: calc(18px + env(safe-area-inset-top, 0px)) 24px calc(24px + env(safe-area-inset-bottom, 0px));
      box-shadow: -8px 0 30px rgba(0,0,0,0.15);
      display: flex; flex-direction: column;
      animation: slideInNav 0.25s ease;
    }
    @keyframes slideInNav { from { transform: translateX(100%); } to { transform: translateX(0); } }
    .mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .nav-x {
      background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--text-dark);
      width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
    .mobile-nav-links a {
      display: block; padding: 13px 2px; font-size: 1.05rem; font-weight: 600;
      color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--grey-border);
    }
    .mobile-nav-phone {
      display: flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 700;
      font-size: 1rem; text-decoration: none; margin-bottom: 18px;
    }
    .mobile-nav-cta { text-align: center; padding: 14px; font-size: 0.95rem; }

    /* ── STICKY MOBILE CTA ── */
    .sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 250;
      display: flex; gap: 10px;
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
      background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
      border-top: 1px solid var(--grey-border);
      box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    }
    @media (min-width: 768px) { .sticky-cta { display: none; } }
    .sticky-cta-call {
      flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
      background: var(--grey-light); border: 1px solid var(--grey-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); font-size: 1.2rem; text-decoration: none;
    }
    .sticky-cta-btn {
      flex: 1; background: var(--blue); color: #fff; text-decoration: none;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.95rem; border-radius: 10px;
    }
    @media (max-width: 767px) { body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); } }

    /* ── HERO ── */
    .hero {
      background: var(--white);
      padding: calc(112px + env(safe-area-inset-top, 0px)) 24px 80px;
      position: relative; overflow: hidden;
    }
    .hero-grid {
      position: relative; z-index: 1;
      max-width: 1180px; margin: 0 auto;
      display: grid; gap: 48px; grid-template-columns: 1fr; align-items: start;
    }
    @media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; } }

    .hero.no-promo .hero-grid {
      display: flex; justify-content: center; align-items: center;
    }
    .hero.no-promo .hero-left {
      width: min(100%, 860px);
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero.no-promo .hero-badge-light,
    .hero.no-promo .hero-sub-light,
    .hero.no-promo .hero-stars,
    .hero.no-promo .hero-checklist {
      margin-left: auto;
      margin-right: auto;
    }
    .hero.no-promo .hero-checklist {
      width: min(100%, 640px);
    }
    .hero.no-promo .hero-checklist li {
      justify-content: center;
      text-align: left;
    }
    @media (min-width: 900px) {
      .hero.no-promo .hero-left {
        width: min(100%, 920px);
      }
      .hero.no-promo .hero-title {
        margin-left: auto;
        margin-right: auto;
      }
    }

    .hero-left { animation: fadeInUp 0.6s ease 0.1s both; }
    .hero-right { animation: fadeInUp 0.6s ease 0.25s both; display: flex; justify-content: center; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .hero-badge-light {
      display: inline-flex; align-items: center; gap: 7px;
      border: 1px solid var(--grey-border); border-radius: 100px;
      padding: 6px 16px; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-mid); background: var(--grey-light); margin-bottom: 28px;
    }
    .badge-dot-blue {
      width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
      animation: blink 2.2s ease-in-out infinite;
    }
    .hero-title {
      font-weight: 800; letter-spacing: -0.03em; line-height: 1.06;
      font-size: clamp(2.4rem, 5.8vw, 3.9rem);
      color: var(--text-dark); margin-bottom: 22px;
    }
    .hero-title em { font-style: italic; color: var(--blue); }
    .hero-sub-light {
      font-size: 1rem; color: var(--text-mid); line-height: 1.7;
      max-width: 480px; margin-bottom: 22px;
    }
    .hero-stars {
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
      font-size: 0.95rem; color: #f59e0b; margin-bottom: 28px;
    }
    .hero-stars strong { color: var(--text-dark); font-size: 0.9rem; }
    .hero-stars span { color: var(--text-light); font-size: 0.8rem; }
    .hero-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
    .hero-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
    .check-ico {
      width: 20px; height: 20px; border-radius: 50%; background: var(--blue); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
    }

    /* Mobile hero: deal card first, everything centered, bigger H1 */
    @media (max-width: 899px) {
      .hero { padding-top: calc(84px + env(safe-area-inset-top, 0px)); }
      .hero-right { order: -1; }
      .hero-left { text-align: center; }
      .hero-badge-light { margin-left: auto; margin-right: auto; }
      .hero-title { font-size: clamp(2.9rem, 10vw, 3.6rem); }
      .hero-sub-light { margin-left: auto; margin-right: auto; }
      .hero-stars { justify-content: center; }
      .hero-checklist { margin-left: auto; margin-right: auto; }
      .hero-checklist li { justify-content: center; text-align: left; }
    }

    /* ── FLASH DEAL CARD ── */
    .deal-card {
      width: 90%; max-width: 540px; border-radius: 18px; overflow: hidden;
      border: 1px solid var(--grey-border);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
      background: var(--white);
    }
    .deal-top {
      background: linear-gradient(155deg, var(--dark) 0%, #1c2740 55%, var(--blue) 145%);
      padding: 34px 30px;
      display: flex; flex-direction: column; align-items: center; text-align: center;
    }
    .deal-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
      border-radius: 100px; padding: 7px 16px; font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase; color: #fff; margin-bottom: 22px;
    }
    .flame { font-size: 0.95rem; }
    .deal-price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
    .deal-was { font-size: 1.3rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
    .deal-now { font-size: 3.4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
    .deal-pct { background: #fbbf24; color: #151515; font-size: 0.85rem; font-weight: 800; padding: 4px 10px; border-radius: 7px; }
    .deal-save { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
    .deal-save strong { color: #fff; }
    .deal-timer { display: flex; align-items: baseline; justify-content: center; gap: 14px; }
    .deal-timer div { display: flex; flex-direction: column; align-items: center; }
    .deal-timer span { font-size: 1.5rem; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
    .deal-timer label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; }
    .timer-colon { color: rgba(255,255,255,0.35); font-weight: 700; font-size: 1.3rem; }
    .deal-bottom { padding: 30px; }
    .deal-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 9px; }
    .deal-field { margin-bottom: 16px; }
    .deal-note { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-top: 12px; }

    /* ── HERO VISUAL ── */
    .hero-visual {
      position: relative; z-index: 1;
      width: 100%; max-width: 1100px;
      margin: 0 auto;
      -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    }
    .desktop-mockup {
      width: 100%;
      height: 100%;
      min-height: 260px;
      background: var(--dark-light);
      border-radius: 12px 12px 0 0;
      border: 1px solid rgba(255,255,255,0.12);
      border-bottom: none;
      box-shadow: 0 -4px 0 0 rgba(255,255,255,0.06), 0 40px 80px rgba(0,0,0,0.6);
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      flex: 1 1 auto;
    }
    .browser-chrome {
      height: 36px; background: var(--dark-light);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex; align-items: center; padding: 0 14px; gap: 10px;
      flex-shrink: 0;
    }
    .chrome-dots { display: flex; gap: 6px; }
    .chrome-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
    .chrome-url {
      flex: 1; height: 20px; background: rgba(255,255,255,0.06);
      border-radius: 4px; max-width: 260px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.62rem; color: rgba(255,255,255,0.3); letter-spacing: 0.02em;
    }
    .screenshot-area { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }
    .screenshot-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 10px;
      border: 2px dashed rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.28);
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
      text-align: center; padding: 20px;
      background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
    }
    .placeholder-icon { font-size: 2rem; opacity: 0.4; margin-bottom: 4px; }
    .phone-overlay {
      position: absolute; bottom: 0; right: 0; width: 22%;
      overflow: hidden; display: flex; flex-direction: column; align-items: center;
    }
    .phone-screen-placeholder {
      flex: 1; width: 100%; aspect-ratio: 9/17.5;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 6px;
      border: 1px solid rgba(255,255,255,0.14);
      border-bottom: none;
      color: rgba(21,21,21,0.35);
      font-size: 0.6rem; font-weight: 600; letter-spacing: 0.04em;
      text-align: center; padding: 8px;
      background-color: #F8F9FB;
    }

    /* ── SHARED SECTION ── */
    section { padding: 88px 24px; }
    .max-w { max-width: 1060px; margin: 0 auto; }
    .bg-white { background: var(--white); }
    .bg-grey  { background: var(--grey-light); }
    .text-center { text-align: center; }
    .section-eyebrow {
      display: inline-block; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 14px;
    }
    .section-eyebrow.dim { color: rgba(255,255,255,0.4); }
    h2.heading { font-size: clamp(2.3rem, 5.4vw, 3.4rem); color: var(--text-dark); margin-bottom: 16px; }
    .section-body { font-size: 1rem; color: var(--text-mid); line-height: 1.65; max-width: 520px; }
    .text-center .section-body { margin: 0 auto; }

    /* ── HOW IT WORKS ── */
    .steps { display: grid; gap: 16px; margin-top: 52px; grid-template-columns: 1fr; }
    @media (min-width: 680px) { .steps { grid-template-columns: repeat(3,1fr); } }
    .step {
      background: var(--white); border: 1px solid var(--grey-border);
      border-radius: 12px; padding: 32px 28px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .step:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .step-tag {
      display: inline-block; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.08em; color: var(--blue);
      background: rgba(65,105,225,0.08); border-radius: 5px; padding: 3px 9px;
      margin-bottom: 20px;
    }
    .step h3 { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; margin-bottom: 9px; }
    .step p  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

    /* ── REVIEWS CAROUSEL ── */
    .reviews-section { overflow: hidden; padding: 80px 0; }
    .reviews-header { text-align: center; padding: 0 24px; margin-bottom: 52px; }
    .carousel-track-wrap { overflow: hidden; position: relative; }
    .carousel-track-wrap::before, .carousel-track-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
    }
    .carousel-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--grey-light), transparent); }
    .carousel-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--grey-light), transparent); }
    .carousel-track { display: flex; gap: 20px; width: max-content; animation: scroll-left 44s linear infinite; }
    .carousel-track:hover { animation-play-state: paused; }
    @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .review-card {
      width: 300px; flex-shrink: 0;
      background: var(--white); border: 1px solid var(--grey-border);
      border-radius: 14px; padding: 26px 24px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .review-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
    .review-text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
    .review-author { display: flex; align-items: center; gap: 10px; }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .av-1 { background: #4169e1; }
    .av-2 { background: #7c3aed; }
    .av-3 { background: #059669; }
    .av-4 { background: #dc2626; }
    .review-name { font-weight: 600; font-size: 0.85rem; color: var(--text-dark); }
    .review-role { font-size: 0.75rem; color: var(--text-light); }

    /* ── SERVICES / COMPARE TABLE ── */
    h2.heading em { font-style: italic; color: var(--blue); font-weight: 800; }
    .compare-scroll {
      margin-top: 52px; overflow-x: auto; border-radius: 16px;
      border: 1px solid var(--grey-border); box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    }
    .compare-table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); }
    .compare-table thead th {
      padding: 22px 20px 18px; text-align: center; font-size: 0.95rem; font-weight: 800;
      color: var(--text-dark); background: var(--grey-light); border-bottom: 1px solid var(--grey-border);
      letter-spacing: -0.01em;
    }
    .compare-table thead th.compare-label { background: var(--white); }
    .compare-table thead th.compare-best { background: var(--dark-light); color: #fff; position: relative; padding-top: 34px; }
    .best-tag {
      position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
      background: var(--blue); color: #fff; font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
      white-space: nowrap;
    }
    .compare-table tbody td {
      padding: 15px 18px; text-align: center; font-size: 0.83rem; color: var(--text-mid);
      border-bottom: 1px solid var(--grey-border); max-width: 220px;
    }
    .compare-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text-dark); max-width: none; }
    .compare-table tbody tr:last-of-type td { border-bottom: none; }
    .compare-table td.ck { color: #16a34a; font-weight: 800; font-size: 1rem; }
    .compare-table td.xx { color: var(--text-light); font-weight: 600; }
    .compare-table td.val { font-size: 0.82rem; }
    .renew { display: block; font-size: 0.72rem; color: var(--text-light); font-weight: 500; margin-top: 4px; }
    .renew.strike { text-decoration: line-through; margin-top: 0; margin-bottom: 2px; }
    .compare-table tbody td.price-cell { white-space: normal; }
    .price-now { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); }
    .price-suffix { font-size: 0.72rem; font-weight: 500; color: var(--text-mid); }
    .compare-table td.best { background: rgba(65,105,225,0.06); }
    .guarantee-line {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--text-mid);
      margin-top: 24px;
    }
    .guarantee-line i { color: var(--blue); font-size: 1rem; }
    .compare-cta-row td { padding-top: 22px; padding-bottom: 26px; border-bottom: none; }
    .btn-solid {
      display: inline-block; background: var(--blue); color: #fff; border: none; cursor: pointer;
      font-family: var(--font); font-size: 0.875rem; font-weight: 600;
      padding: 11px 22px; border-radius: 8px; text-decoration: none; transition: background 0.15s;
    }
    .btn-solid:hover { background: var(--blue-hover); }
    .btn-outline-brand {
      display: inline-block; border: 1px solid var(--grey-border); color: var(--text-dark);
      background: var(--white); font-family: var(--font); font-size: 0.82rem; font-weight: 600;
      padding: 10px 18px; border-radius: 8px; text-decoration: none; transition: border-color .15s, color .15s;
    }
    .btn-outline-brand:hover { border-color: var(--blue); color: var(--blue); }

    /* ── ABOUT ── */
    .about-grid {
      display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; text-align: center;
    }
    @media (min-width: 700px) { .about-grid { grid-template-columns: 180px 1fr; text-align: left; } }
    .about-photo { display: flex; justify-content: center; }
    .about-avatar {
      width: 150px; height: 150px; border-radius: 50%;
      background: linear-gradient(155deg, var(--dark) 0%, var(--blue) 130%);
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-size: 3.2rem; font-weight: 800; box-shadow: 0 14px 32px rgba(0,0,0,0.15); flex-shrink: 0;
    }
    .about-text .section-body { max-width: 560px; margin: 0 auto 14px; }
    @media (min-width: 700px) { .about-text .section-body { margin-left: 0; margin-right: 0; } }
    .about-phone {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue); font-weight: 700; font-size: 0.95rem; text-decoration: none; margin-top: 6px;
    }
    .about-phone:hover { color: var(--blue-hover); }

    /* ── FAQ ── */
    .faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { border: 1px solid var(--grey-border); border-radius: 12px; background: var(--white); overflow: hidden; }
    .faq-question {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
      background: none; border: none; cursor: pointer; text-align: left;
      padding: 18px 20px; font-family: var(--font); font-size: 0.92rem; font-weight: 600; color: var(--text-dark);
    }
    .faq-icon {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: var(--grey-light); color: var(--blue); font-weight: 700; font-size: 0.9rem;
      display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 20px; }
    .faq-answer p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; padding-bottom: 18px; }
    .faq-item.open .faq-answer { max-height: 260px; }

    /* ── CONTACT ── */
    .signup-wrap { max-width: 600px; margin: 0 auto; }
    .signup-card {
      background: var(--white); border: 1px solid var(--grey-border); border-radius: 16px;
      padding: 56px 52px; text-align: center;
      box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    }
    .signup-card h2 { font-size: clamp(1.8rem, 4.5vw, 2.4rem); margin-bottom: 10px; }
    .signup-card p  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 32px; }
    .field {
      width: 100%; background: var(--grey-light);
      border: 1px solid var(--grey-border); border-radius: 9px;
      padding: 15px 16px; font-family: var(--font); font-size: 0.95rem;
      color: var(--text-dark); outline: none; margin-bottom: 12px;
      transition: border-color 0.15s;
    }
    .field::placeholder { color: var(--text-light); }
    .field:focus { border-color: var(--blue); background: #fff; }
    textarea.field { resize: vertical; min-height: 120px; font-family: var(--font); }
    .btn-submit {
      width: 100%; background: var(--blue); color: #fff; border: none; cursor: pointer;
      font-family: var(--font); font-size: 1rem; font-weight: 600;
      padding: 15px; border-radius: 9px; margin-top: 4px; transition: background 0.15s;
    }
    .btn-submit:hover { background: var(--blue-hover); }
    @media (max-width: 480px) {
      .signup-card { padding: 40px 24px; }
    }
    .form-note { font-size: 0.72rem; color: var(--text-light); margin-top: 14px !important; margin-bottom: 0 !important; }
    .form-success {
      display: none; font-size: 0.9rem; color: #059669; font-weight: 600;
      background: rgba(5,150,105,0.08); border-radius: 8px; padding: 14px; margin-top: 4px;
    }

    /* ── FOOTER ── */
    footer { background: var(--white); padding: 48px 24px; text-align: center; border-top: 1px solid var(--grey-border); }
    .foot-logo {
      font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em;
      color: var(--text-dark); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
    }
    .foot-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 20px; }
    .foot-links a { color: var(--text-mid); text-decoration: none; font-size: 0.8rem; transition: color 0.15s; }
    .foot-links a:hover { color: var(--text-dark); }
    .footer-contact {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 22px;
      margin: 0 auto 18px; max-width: 740px;
    }
    .footer-contact a {
      color: var(--blue); text-decoration: none; font-size: 0.9rem; font-weight: 600;
      transition: opacity 0.15s ease, color 0.15s ease;
    }
    .footer-contact a:hover { color: var(--blue-hover); opacity: 0.9; }
    .foot-copy { font-size: 0.73rem; color: var(--text-light); }

    /* ── LIVE BADGE ── */
    .live-badge {
      display: inline-flex; align-items: center; gap: 7px;
      border: 1px solid var(--grey-border); border-radius: 100px;
      padding: 6px 16px; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--text-mid); margin-bottom: 20px;
      background: var(--grey-light);
    }
    .live-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
      animation: blink 2.2s ease-in-out infinite;
    }

    /* ── PORTFOLIO ── */
    .portfolio-grid { display: grid; gap: 20px; margin-top: 52px; grid-template-columns: 1fr; }
    @media (min-width: 620px)  { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 900px)  { .portfolio-grid { grid-template-columns: repeat(3,1fr); gap: 24px; } }
    .portfolio-card {
      border: 1px solid var(--grey-border); border-radius: 12px; overflow: hidden;
      background: var(--white); cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .portfolio-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
    .portfolio-thumb {
      aspect-ratio: 4/3; display: flex; align-items: flex-end;
      padding: 16px; position: relative;
    }
    .portfolio-thumb span {
      color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em;
      position: relative; z-index: 1; line-height: 1.25;
    }
    .portfolio-thumb::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
    }
    .pf-1 { background: url('img/thebarndogsc.png') center/cover; }
    .pf-2 { background: url('img/wellspringmediasc.png') center/cover; }
    .pf-3 { background: url('img/lovedayeventsc.png') center/cover; }
    .pf-4 { background: url('img/MSTPRSc.png') center/cover; }
    .pf-5 { background: url('img/kingjesusclothingsc.png') center/cover; }
    .pf-6 { background: url('img/boloflexsc.png') center/cover; }
    .portfolio-meta {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 16px; gap: 8px;
    }
    .portfolio-meta strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
    .portfolio-meta span { font-size: 0.75rem; color: var(--text-light); }
    .portfolio-preview {
      font-size: 0.78rem; font-weight: 600; color: var(--blue); white-space: nowrap; flex-shrink: 0;
    }

    /* ── MODAL ── */
    .overlay {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
      display: none; align-items: center; justify-content: center; padding: 24px;
    }
    .overlay.open { display: flex; }
    .modal {
      background: #fff; border-radius: 16px; padding: 20px;
      max-width: 980px; width: min(92vw, 980px); height: min(82vh, 720px);
      position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.25);
      animation: up 0.22s ease; display: flex; flex-direction: column;
    }
    @keyframes up { from{opacity:0;transform:translateY(12px) scale(0.98)} to{opacity:1;transform:none} }
    .modal-x {
      position: absolute; top: 14px; right: 16px; z-index: 2;
      background: rgba(0,0,0,0.4); border: none; cursor: pointer;
      width: 28px; height: 28px; border-radius: 50%;
      font-size: 0.9rem; color: #fff; transition: background 0.15s;
    }
    .modal-x:hover { background: rgba(0,0,0,0.6); }
    .preview-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 14px; }
    .preview-modal .desktop-mockup { box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
    .preview-area {
      position: relative; overflow: hidden; border-radius: 0 0 12px 12px;
      background: #f3f4f6; flex: 1 1 auto; min-height: 320px;
    }
    #preview-frame {
      position: absolute; inset: 0; width: 100%; height: 100%;
      border: 0; background: #fff; z-index: 1; display: none;
    }
    .preview-modal .screenshot-placeholder {
      border: none; color: rgba(255,255,255,0.95);
      position: relative; z-index: 0;
      transition: opacity 0.2s ease;
    }
    .preview-modal .placeholder-icon { opacity: 0.85; }

    @media (max-width: 768px) {
      .overlay {
        padding: 10px;
      }
      .modal {
        width: min(96vw, 540px);
        height: min(92vh, 820px);
        padding: 12px;
      }
      .desktop-mockup {
        min-height: 260px;
      }
      .preview-area {
        min-height: 660px;
      }
      .preview-note {
        margin-top: 10px;
      }
    }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.in { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    }