/* ═══════════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════════ */
    :root {
      --black:       #080808;
      --surface:     #0E0E10;
      --surface-2:   #141416;
      --card:        rgba(255,255,255,.032);
      --card-hover:  rgba(255,255,255,.055);
      --border:      rgba(255,255,255,.075);
      --border-hi:   rgba(255,255,255,.2);
      --white:       #FFFFFF;
      --silver:      #E8E8E8;
      --muted:       #606060;
      --muted-2:     #909090;
      --accent:      #38BDF8;           /* electric blue — SPARINGLY */
      --accent-dim:  rgba(56,189,248,.14);
      --accent-glow: rgba(56,189,248,.07);
      --wa:          #543794881959;
    }

    /* ═══════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; }

    /* ═══════════════════════════════════════════════
       KEYFRAME ANIMATIONS
    ═══════════════════════════════════════════════ */
    @keyframes hero-line-1 {
      from { opacity: 0; transform: translateY(60px) skewY(2deg); }
      to   { opacity: 1; transform: translateY(0) skewY(0); }
    }
    @keyframes hero-line-2 {
      from { opacity: 0; transform: translateY(60px) skewY(2deg); }
      to   { opacity: 1; transform: translateY(0) skewY(0); }
    }
    @keyframes hero-fade {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes hero-img-reveal {
      from { opacity: 0; transform: scale(1.06); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes ken-burns {
      from { transform: scale(1.0) translate(0,0); }
      to   { transform: scale(1.08) translate(-1%,1%); }
    }
    @keyframes float-y {
      0%,100% { transform: translateY(0); }
      50%     { transform: translateY(-10px); }
    }
    @keyframes pulse-ring {
      0%   { transform: scale(1);    opacity: .7; }
      100% { transform: scale(1.9); opacity: 0; }
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scale-in {
      from { opacity: 0; transform: scale(.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes fade-in {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes shimmer-move {
      from { background-position: -200% 0; }
      to   { background-position:  200% 0; }
    }
    @keyframes border-spin {
      to { --angle: 360deg; }
    }

    /* ═══════════════════════════════════════════════
       HERO ANIMATIONS (auto-play sequence)
    ═══════════════════════════════════════════════ */
    .hero-badge   { animation: hero-fade   .6s ease both .15s; }
    .hero-line-1  { animation: hero-line-1 .7s cubic-bezier(.2,.6,.3,1) both .3s; }
    .hero-line-2  { animation: hero-line-2 .7s cubic-bezier(.2,.6,.3,1) both .45s; }
    .hero-line-3  { animation: hero-line-2 .7s cubic-bezier(.2,.6,.3,1) both .6s; }
    .hero-sub     { animation: hero-fade   .7s ease both .82s; }
    .hero-ctas    { animation: hero-fade   .7s ease both 1s; }
    .hero-stats   { animation: hero-fade   .65s ease both 1.2s; }
    .hero-img     {
      animation:
        hero-img-reveal .9s ease both .2s,
        ken-burns 16s ease-in-out .9s infinite alternate;
    }
    .hero-float-card { animation: float-y 5s ease-in-out 1.4s infinite; }

    /* ═══════════════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal.scale-reveal { transform: scale(.92); }
    .reveal.scale-reveal.visible { transform: scale(1); }
    .d1 { transition-delay: .08s; }
    .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; }
    .d4 { transition-delay: .32s; }
    .d5 { transition-delay: .40s; }
    .d6 { transition-delay: .48s; }

    /* ═══════════════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════════════ */
    .wrap {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 22px;
    }
    .sec { padding: 96px 0; }
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.09) 50%, transparent);
    }

    /* ═══════════════════════════════════════════════
       TYPOGRAPHY
    ═══════════════════════════════════════════════ */
    .disp {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      line-height: .93;
      letter-spacing: -.02em;
    }
    .disp-xl  { font-size: clamp(72px, 14vw, 158px); }
    .disp-lg  { font-size: clamp(44px, 7vw, 78px); }
    .disp-md  { font-size: clamp(32px, 5vw, 52px); }
    .disp-sm  { font-size: clamp(18px, 2.5vw, 24px); letter-spacing: .04em; }

    .label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .label::before {
      content: '';
      width: 24px; height: 1px;
      background: rgba(255,255,255,.22);
    }
    .label.center { justify-content: center; }
    .label.center::after {
      content: '';
      width: 24px; height: 1px;
      background: rgba(255,255,255,.22);
    }
    .label-accent::before { background: var(--accent); opacity: .7; }

    /* ═══════════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 32px;
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .04em;
      border: none;
      white-space: nowrap;
      transition: transform .22s ease, box-shadow .22s ease, background .2s, border-color .2s, opacity .2s;
      -webkit-tap-highlight-color: transparent;
      min-height: 52px; /* touch target */
    }
    .btn:active { transform: scale(.97) !important; }

    .btn-primary {
      background: var(--white);
      color: var(--black);
    }
    .btn-primary:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(255,255,255,.2);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,.26);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.55);
      transform: translateY(-2px);
    }

    .btn-accent {
      background: transparent;
      color: var(--accent);
      border: 1px solid rgba(56,189,248,.4);
    }
    .btn-accent:hover {
      background: rgba(56,189,248,.1);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    .btn-sm { padding: 12px 22px; font-size: 13px; min-height: 44px; }

    /* ═══════════════════════════════════════════════
       CARD / GLASS
    ═══════════════════════════════════════════════ */
    .glass {
      background: var(--card);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      transition: border-color .25s, background .25s, transform .28s ease, box-shadow .28s;
    }
    .glass:hover {
      background: var(--card-hover);
      border-color: var(--border-hi);
    }
    .card-lift:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }

    /* ═══════════════════════════════════════════════
       BADGE
    ═══════════════════════════════════════════════ */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 13px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.6);
    }
    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 6px var(--accent);
      position: relative;
    }
    .badge-dot::after {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      animation: pulse-ring 2.2s ease-out infinite;
    }

    /* ═══════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════ */
    #navbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 202;
      padding: 22px 0;
      transition: background .35s, padding .3s, border-color .35s;
      border-bottom: 1px solid transparent;
    }
    #navbar.scrolled {
      background: rgba(8,8,8,.93);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 14px 0;
      border-color: rgba(255,255,255,.06);
    }
    .nav-link {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.5);
      letter-spacing: .05em;
      padding: 6px 0;
      position: relative;
      transition: color .2s;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--white);
      transition: width .25s ease;
    }
    .nav-link:hover { color: var(--white); }
    .nav-link:hover::after { width: 100%; }

    /* ═══════════════════════════════════════════════
       MOBILE MENU
    ═══════════════════════════════════════════════ */
    #mobileMenu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8,8,8,.97);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 201;
      flex-direction: column;
    }
    #mobileMenu.open { display: flex; }
    .mob-nav {
      display: flex;
      flex-direction: column;
      padding: 100px 32px 32px;
      gap: 36px;
      width: 100%;
    }
    .mob-link {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.8);
      transition: color .2s;
    }
    .mob-link:hover { color: var(--accent); }
    .mob-footer {
      padding: 28px;
      border-top: 1px solid rgba(255,255,255,.06);
    }


    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: var(--black);
    }

    /* Diagonal image container on desktop */
    .hero-img-wrap {
      position: absolute;
      inset: 0 0 0 50%;
      overflow: hidden;
      clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .hero-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        90deg,
        var(--black) 0%,
        rgba(8,8,8,.7) 30%,
        rgba(8,8,8,.25) 70%,
        rgba(8,8,8,.1) 100%
      );
    }

    /* Hero grid texture */
    .hero-grid-tex {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      z-index: 1;
    }
    /* Subtle accent glow top-left */
    .hero-glow {
      position: absolute;
      top: -20%; left: -10%;
      width: 60vw; height: 70vh;
      background: radial-gradient(ellipse, rgba(56,189,248,.04) 0%, transparent 65%);
      pointer-events: none;
      z-index: 1;
    }

    /* Blue accent line */
    .hero-accent-line {
      position: absolute;
      bottom: 0; left: 0;
      width: 52%;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,.4) 60%, transparent 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      flex: 1;
      display: flex;
      align-items: center;
      padding: 110px 0 80px;
    }

    /* Stats */
    .stat-n {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(32px, 5.5vw, 50px);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }
    .stat-l { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
    .stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

    /* Floating info card */
    .hero-float {
      position: absolute;
      right: 4%;
      bottom: 10%;
      z-index: 4;
    }

    /* Mobile hero overrides */
    @media (max-width: 767px) {
      .hero-img-wrap {
        inset: 0;
        clip-path: none;
      }
      .hero-img-overlay {
        background: linear-gradient(
          180deg,
          rgba(8,8,8,.4) 0%,
          rgba(8,8,8,.7) 50%,
          var(--black) 100%
        );
      }
      .hero-accent-line { width: 100%; }
      .hero-float { display: none; }
      .hero-content { align-items: flex-end; padding-bottom: 60px; padding-top: 140px; }
    }

    /* ═══════════════════════════════════════════════
       MARQUEE
    ═══════════════════════════════════════════════ */
    .marquee-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 28px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: clamp(12px, 1.8vw, 15px);
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      white-space: nowrap;
    }
    .marquee-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--accent);
      opacity: .7;
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════════
       SERVICE CARDS (with images)
    ═══════════════════════════════════════════════ */
    .svc-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 3/4;
    }
    .svc-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }
    .svc-card:hover img { transform: scale(1.06); }
    .svc-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(8,8,8,.1) 0%,
        rgba(8,8,8,.3) 40%,
        rgba(8,8,8,.88) 100%
      );
      transition: background .3s;
    }
    .svc-card:hover .svc-card-overlay {
      background: linear-gradient(180deg, rgba(8,8,8,.2) 0%, rgba(8,8,8,.4) 40%, rgba(8,8,8,.9) 100%);
    }
    .svc-card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px;
    }
    .svc-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-bottom: 8px;
    }

    /* ═══════════════════════════════════════════════
       BENEFITS SECTION (split with image)
    ═══════════════════════════════════════════════ */
    .benefits-img {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/5;
    }
    .benefits-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .benefits-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(56,189,248,.08) 0%, transparent 60%);
    }
    /* Blue corner accent on image */
    .benefits-img::after {
      content: '';
      position: absolute;
      top: -1px; left: -1px;
      width: 60px; height: 60px;
      border-top: 2px solid rgba(56,189,248,.5);
      border-left: 2px solid rgba(56,189,248,.5);
      border-radius: 12px 0 0 0;
      pointer-events: none;
    }
    .benefit-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 18px;
      border-radius: 10px;
      transition: background .25s;
    }
    .benefit-item:hover { background: rgba(255,255,255,.035); }
    .benefit-ico {
      width: 44px; height: 44px;
      flex-shrink: 0;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }

    /* ═══════════════════════════════════════════════
       PRICING
    ═══════════════════════════════════════════════ */
    .plan-wrap {
      border-radius: 14px;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      gap: 22px;
      transition: transform .3s ease;
    }
    .plan-wrap:hover { transform: translateY(-6px); }
    .plan-standard { background: var(--card); border: 1px solid var(--border); }

    /* Featured plan with blue glow */
    .plan-featured {
      background: rgba(14,18,24,.9);
      border: 1px solid rgba(56,189,248,.35);
      box-shadow:
        0 0 32px rgba(56,189,248,.09),
        0 0 80px rgba(56,189,248,.05),
        inset 0 1px 0 rgba(56,189,248,.15);
    }
    /* Animated shimmer on featured plan */
    .plan-featured::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(56,189,248,.06) 50%,
        transparent 60%
      );
      background-size: 200% 100%;
      animation: shimmer-move 4s ease-in-out infinite;
      pointer-events: none;
    }

    .plan-price-n {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(44px,6vw,58px);
      line-height: 1;
      letter-spacing: -.02em;
    }
    .feat-check { color: rgba(255,255,255,.8); }
    .feat-cross  { color: rgba(255,255,255,.22); }
    .feat-row {
      display: flex; align-items: center; gap: 11px;
      font-size: 14px; line-height: 1.4;
    }

    /* Popular badge */
    .popular-tag {
      position: absolute;
      top: 18px; right: 18px;
      background: var(--accent);
      color: var(--black);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
    }

    /* ═══════════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════════ */
    .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px;
      transition: border-color .25s, background .25s, transform .28s;
    }
    .testi-card:hover {
      border-color: var(--border-hi);
      background: var(--card-hover);
      transform: translateY(-4px);
    }
    .testi-quote {
      font-size: 36px;
      line-height: 1;
      color: rgba(255,255,255,.12);
      font-family: Georgia, serif;
      margin-bottom: 12px;
    }
    .stars { color: #c8c8c8; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,.1);
      flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════════
       FORM
    ═══════════════════════════════════════════════ */
    .f-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted-2);
      margin-bottom: 8px;
    }
    .f-input {
      width: 100%;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 5px;
      padding: 14px 16px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      outline: none;
      transition: border-color .2s, background .2s, box-shadow .2s;
      -webkit-appearance: none;
      min-height: 50px;
    }
    .f-input::placeholder { color: rgba(255,255,255,.22); }
    .f-input:focus {
      border-color: rgba(56,189,248,.4);
      background: rgba(255,255,255,.06);
      box-shadow: 0 0 0 3px rgba(56,189,248,.07);
    }
    select.f-input { cursor: pointer; }
    option { background: #111; }
    textarea.f-input { resize: vertical; min-height: 110px; }

    /* ═══════════════════════════════════════════════
       CONTACT INFO CARDS
    ═══════════════════════════════════════════════ */
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      border-radius: 10px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
      transition: border-color .22s, background .22s;
    }
    .info-row:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
    .info-ico {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .info-ico.white { background: var(--white); border-color: transparent; }
    .info-ico.accent-border { border-color: rgba(56,189,248,.3); }

    /* ═══════════════════════════════════════════════
       WHATSAPP FAB
    ═══════════════════════════════════════════════ */
    .wa-fab {
      position: fixed;
      bottom: 24px; right: 24px;
      width: 58px; height: 58px;
      background: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 999;
      box-shadow: 0 4px 24px rgba(0,0,0,.55);
      transition: transform .22s, box-shadow .22s;
    }
    .wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(0,0,0,.55); }
    .wa-fab::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.25);
      animation: pulse-ring 2.5s ease-out infinite;
    }

    /* ═══════════════════════════════════════════════
       CTA FINAL
    ═══════════════════════════════════════════════ */
    .cta-bg-word {
      position: absolute;
      inset: 0;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none; overflow: hidden;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(100px, 22vw, 260px);
      text-transform: uppercase;
      color: rgba(255,255,255,.016);
      white-space: nowrap;
      user-select: none;
      letter-spacing: -.02em;
    }

    /* ═══════════════════════════════════════════════
       PHOTO GRID (decorative)
    ═══════════════════════════════════════════════ */
    .photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 10px;
    }
    .photo-grid img {
      width: 100%; height: 100%;
      object-fit: cover;
      border-radius: 8px;
      transition: transform .4s ease;
    }
    .photo-grid img:hover { transform: scale(1.03); }
    .photo-tall { grid-row: span 2; }

    /* ═══════════════════════════════════════════════
       RESPONSIVE HELPERS
    ═══════════════════════════════════════════════ */
    @media (max-width: 767px) {
      .sec { padding: 68px 0; }
      .hide-mobile { display: none !important; }
      .disp-xl { font-size: clamp(62px, 17vw, 90px); }
      .disp-lg { font-size: clamp(38px, 10vw, 56px); }
      .plan-wrap { padding: 28px 22px; }
      .plan-price-n { font-size: 44px; }
    }
    @media (min-width: 768px) {
      .show-mobile { display: none !important; }
    }

    /* ═══════════════════════════════════════════════
       NO-JS fallback
    ═══════════════════════════════════════════════ */
    noscript .reveal { opacity: 1; transform: none; }
