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

    :root {
      --bg: #FAF6F3;
      --white: #FFFFFF;
      --accent: #7A1D3E;
      --accent2: #C73E6B;
      --accent-soft: rgba(122,29,62,0.07);
      --accent-border: rgba(122,29,62,0.12);
      --dark: #18132A;
      --body: #5A5470;
      --muted: #9B95A8;
      --border: #EBE5E0;
      --card: #FFFFFF;
      --pink-glow: rgba(199,62,107,0.08);
      --shadow-s: 0 1px 3px rgba(24,19,42,0.04);
      --shadow-m: 0 8px 32px rgba(24,19,42,0.06);
      --shadow-l: 0 24px 64px rgba(24,19,42,0.08);
      --grad: linear-gradient(135deg, #7A1D3E, #C73E6B);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

    /* ═══════ TYPOGRAPHY ═══════ */
    .serif { font-family: 'DM Serif Display', Georgia, serif; }

    h1, h2 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-weight: 400;
      letter-spacing: -0.01em;
    }

    .gradient-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ═══════ BADGES (RECT style) ═══════ */
    .pill {
      display: inline-flex;
      align-items: center;
      padding: 7px 18px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--white);
      border: 1px solid var(--border);
      color: var(--muted);
      box-shadow: var(--shadow-s);
      white-space: nowrap;
    }

    .pill-accent {
      border-color: var(--accent-border);
      color: var(--accent);
      background: var(--accent-soft);
    }

    .section-pill {
      display: inline-block;
      padding: 7px 20px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      color: var(--muted);
      margin-bottom: 24px;
    }

    .badge-soon {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--accent);
      color: #fff;
      margin-bottom: 12px;
    }

    /* ═══════ PRICING CARDS ═══════ */
    @media(max-width:768px) {
      #pricing .grid-2 { grid-template-columns: 1fr !important; }
    }

    /* ═══════ SPARKLES ═══════ */
    .sparkle {
      position: absolute;
      pointer-events: none;
    }

    .sparkle svg {
      animation: sparkleSpin 5s ease-in-out infinite;
    }

    @keyframes sparkleSpin {
      0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.25; }
      50% { transform: rotate(180deg) scale(1.3); opacity: 0.5; }
    }

    /* ═══════ DOT PATTERN ═══════ */
    .dots-bg {
      background-image: radial-gradient(circle, rgba(122,29,62,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    /* ═══════ BUTTONS ═══════ */
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 8px 40px 8px 8px;
      border-radius: 100px;
      background: var(--dark);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
      box-shadow: var(--shadow-m);
    }

    .btn-dark:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-l);
    }

    .btn-arrow {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 16px 24px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: var(--dark);
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      transition: color 0.3s;
    }

    .btn-ghost:hover { color: var(--accent); }

    .btn-accent {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 100px;
      background: var(--accent);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
      box-shadow: 0 4px 24px rgba(122,29,62,0.2);
    }

    .btn-accent:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(122,29,62,0.3);
    }

    /* ═══════ CARDS ═══════ */
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s cubic-bezier(.4,0,.2,1), border-color 0.4s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-l);
      border-color: var(--accent-border);
    }

    .card-icon {
      width: 72px;
      height: 72px;
      border-radius: 18px;
      background: var(--accent-soft);
      border: 1px solid var(--accent-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: box-shadow 0.4s, background 0.4s;
    }

    .card:hover .card-icon {
      background: rgba(122,29,62,0.12);
      box-shadow: 0 4px 16px rgba(122,29,62,0.1);
    }

    /* ═══════ ANIMATIONS ═══════ */
    .anim-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    }

    .anim-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .anim-scale {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    }

    .anim-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    .stagger { transition-delay: var(--d, 0ms); }

    /* Hero text animation */
    .hero-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(32px) rotate(2deg);
      animation: heroWordIn 0.7s cubic-bezier(.16,1,.3,1) forwards;
    }

    @keyframes heroWordIn {
      to { opacity: 1; transform: translateY(0) rotate(0deg); }
    }

    /* Float */
    @keyframes gentleFloat {
      0%, 100% { transform: translateY(0px) rotate(var(--r, 0deg)); }
      50% { transform: translateY(var(--float-y, -10px)) rotate(var(--r, 0deg)); }
    }

    .float { animation: gentleFloat var(--dur, 5s) ease-in-out infinite; }

    /* Pulse glow */
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(122,29,62,0); }
      50% { box-shadow: 0 0 40px 8px rgba(122,29,62,0.08); }
    }

    /* ═══════ HERO PARTICLE CANVAS ═══════ */
    #particleCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .hero-vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 0%, rgba(10,10,15,0.04) 55%, rgba(10,10,15,0.10) 80%, rgba(10,10,15,0.18) 100%);
      z-index: 0;
      pointer-events: none;
    }

    /* ═══════ HERO CURSOR GLOW ═══════ */
    .hero-glow {
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(199,62,107,0.12) 0%, rgba(122,29,62,0.05) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      transform: translate(-50%, -50%);
      transition: left 0.35s cubic-bezier(.4,0,.2,1), top 0.35s cubic-bezier(.4,0,.2,1), opacity 0.4s;
      opacity: 0;
      will-change: left, top;
    }

    .hero-glow.active { opacity: 1; }

    /* ═══════ BUTTON SHIMMER ═══════ */
    .btn-accent, .btn-dark {
      position: relative;
      overflow: hidden;
    }

    .btn-accent::after, .btn-dark::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transform: skewX(-20deg);
      animation: btnShimmer 3.5s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes btnShimmer {
      0%, 100% { left: -100%; }
      50% { left: 140%; }
    }

    /* ═══════ 3D TILT (Service Cards) ═══════ */
    .card-tilt {
      transform-style: preserve-3d;
      perspective: 800px;
    }

    .card-tilt .card-icon {
      transform: translateZ(24px);
    }

    /* ═══════ TIMELINE PROGRESS LINE ═══════ */
    .tl-line-bg {
      position: absolute;
      left: 51px;
      top: 48px;
      bottom: 48px;
      width: 2px;
      background: var(--accent);
      z-index: 0;
    }

    .tl-line-fill {
      display: none;
    }

    /* ═══════ PORTFOLIO ═══════ */
    .portfolio-thumb {
      aspect-ratio: 16/9;
      border-radius: 14px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(122,29,62,0.05), rgba(199,62,107,0.05), rgba(250,246,243,1));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .portfolio-thumb {
      background: linear-gradient(135deg, rgba(122,29,62,0.08), rgba(199,62,107,0.06), rgba(6,214,160,0.04)) !important;
    }

    .portfolio-thumb .play-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .portfolio-thumb .watch-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      opacity: 0.7;
      transition: opacity 0.4s;
    }

    .card:hover .portfolio-thumb .watch-label {
      opacity: 1;
    }

    .card:hover .portfolio-thumb {
      box-shadow: inset 0 0 60px rgba(122,29,62,0.06);
    }

    .play-circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(122,29,62,0.25);
      transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s;
    }

    .card:hover .play-circle {
      transform: scale(1.12);
      box-shadow: 0 12px 40px rgba(122,29,62,0.35);
      animation: playPulse 1.6s ease-in-out infinite;
    }

    @keyframes playPulse {
      0%, 100% { box-shadow: 0 8px 32px rgba(122,29,62,0.25), 0 0 0 0 rgba(122,29,62,0.2); }
      50% { box-shadow: 0 12px 40px rgba(122,29,62,0.35), 0 0 0 16px rgba(122,29,62,0); }
    }

    .tag {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      background: var(--accent-soft);
      color: var(--accent);
      border: 1px solid var(--accent-border);
    }

    /* ═══════ DIAMONDS (Isometric sectors) ═══════ */
    .diamond-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 720px;
      margin: 0 auto;
    }

    .diamond {
      width: 135px;
      height: 80px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      transform: perspective(800px) rotateX(12deg) rotateY(-4deg);
      transition: all 0.5s cubic-bezier(.4,0,.2,1);
      box-shadow: var(--shadow-s);
      cursor: default;
    }

    .diamond:hover {
      transform: perspective(800px) rotateX(4deg) rotateY(0deg) translateY(-6px);
      box-shadow: var(--shadow-m);
      border-color: var(--accent-border);
      color: var(--accent);
    }

    /* ═══════ TIMELINE ═══════ */
    .tl-dot {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--accent-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 17px;
      color: var(--accent);
      flex-shrink: 0;
      transition: all 0.5s;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 0 6px var(--bg);
    }

    .tl-dot.filled {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 0 0 6px var(--bg), 0 4px 20px rgba(122,29,62,0.25);
    }

    /* ═══════ FORM ═══════ */
    .input {
      width: 100%;
      padding: 15px 20px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: var(--bg);
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: var(--dark);
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(122,29,62,0.06);
    }

    .input::placeholder { color: #C0BAC9; }

    /* ═══════ SOCIAL ═══════ */
    .soc {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      border: 1px solid var(--accent-border);
      color: var(--muted);
      text-decoration: none;
      transition: all 0.35s;
    }

    .soc:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

    .soc-instagram  { color: #E4405F; border-color: rgba(228,64,95,0.25); background: rgba(228,64,95,0.08); }
    .soc-instagram:hover  { background: rgba(228,64,95,0.18); color: #E4405F; }

    .soc-tiktok     { color: #000000; border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.06); }
    .soc-tiktok:hover     { background: rgba(0,0,0,0.14); color: #000000; }

    .soc-linkedin   { color: #0A66C2; border-color: rgba(10,102,194,0.25); background: rgba(10,102,194,0.08); }
    .soc-linkedin:hover   { background: rgba(10,102,194,0.18); color: #0A66C2; }

    .soc-facebook   { color: #1877F2; border-color: rgba(24,119,242,0.25); background: rgba(24,119,242,0.08); }
    .soc-facebook:hover   { background: rgba(24,119,242,0.18); color: #1877F2; }

    /* ═══════ COMPARISON ═══════ */
    .cmp-old { border-left: 3px solid #18132A; }
    .cmp-new { border-left: 3px solid #C73E6B; }

    /* ═══════ FOUNDER ═══════ */
    .founder-img {
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
    }

    .founder-img::before {
      content: '';
      position: absolute;
      inset: -7px;
      border-radius: 50%;
      background: var(--grad);
      opacity: 0.12;
      z-index: -1;
      animation: pulseGlow 4s ease-in-out infinite;
    }

    /* ═══════ NAV ═══════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(250,246,243,0.8);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }

    .nav.scrolled {
      border-color: var(--border);
      background: rgba(250,246,243,0.95);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-link {
      color: var(--body);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      position: relative;
      padding: 4px 0;
      transition: color 0.3s;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--accent);
      border-radius: 1px;
      transition: width 0.3s;
    }

    .nav-link:hover, .nav-link.active { color: var(--accent); }
    .nav-link:hover::after, .nav-link.active::after { width: 100%; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: var(--accent);
      color: #fff;
      padding: 8px 16px;
      border-radius: 8px;
      z-index: 200;
      font-size: 14px;
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus {
      top: 12px;
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      background: var(--dark);
      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); }

    .mob-overlay {
      position: fixed; inset: 0;
      background: rgba(24,19,42,0.4);
      backdrop-filter: blur(4px);
      z-index: 101;
      opacity: 0; pointer-events: none;
      transition: opacity 0.35s;
    }

    .mob-overlay.open { opacity: 1; pointer-events: all; }

    .mob-menu {
      position: fixed;
      top: 0; right: -100%;
      width: 82%; max-width: 360px;
      height: 100vh;
      background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
      backdrop-filter: blur(30px);
      z-index: 102;
      padding: 100px 32px 40px;
      border-left: 1px solid var(--border);
      transition: right 0.45s cubic-bezier(.4,0,.2,1);
      box-shadow: -8px 0 40px rgba(24,19,42,0.12);
      display: flex;
      flex-direction: column;
    }

    .mob-menu.open { right: 0; }

    .mob-menu a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 16px;
      color: var(--dark);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 14px;
      margin-bottom: 4px;
      transition: all 0.25s;
    }

    .mob-menu a:hover,
    .mob-menu a:active {
      color: var(--accent);
      background: rgba(122,29,62,0.06);
    }

    .mob-menu a.mob-menu-cta {
      margin-top: auto;
      background: var(--accent);
      color: #fff !important;
      justify-content: center;
      border-radius: 100px;
      padding: 16px 24px;
      font-size: 15px;
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(122,29,62,0.25);
      letter-spacing: 0.02em;
    }

    .mob-menu a.mob-menu-cta:hover,
    .mob-menu a.mob-menu-cta:active {
      background: var(--accent2);
      color: #fff !important;
    }

    /* ═══════ CONTAINER ═══════ */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

    /* ═══════ SECTION SPACING — consistent rhythm ═══════ */
    .section {
      padding: 100px 0;
      position: relative;
    }

    /* Subtle divider between same-bg sections */
    .section + .section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(80%, 600px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    }

    /* No divider when background changes (dots-bg sections) */
    .dots-bg + .section::before,
    .section + .dots-bg::before { display: none; }

    /* ═══════ CAROUSEL (mobile scroll-snap) ═══════ */
    .carousel-mobile {
      display: grid; /* desktop: normal grid */
    }

    /* ═══════ RESPONSIVE ═══════ */
    /* ═══════════════════════════════════════════════════════
       MOBILE FIRST — Full responsive redesign (≤768px)
       UX principles: clear hierarchy, breathing room,
       one action per screen, thumb-friendly targets,
       no horizontal overflow, visual rhythm
       ═══════════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* ── Global mobile resets ── */
      .hamburger { display: flex; }
      .desk-links { display: none !important; }
      .sparkle { display: none !important; }
      .container { padding-left: 20px !important; padding-right: 20px !important; }
      .section { padding: 60px 0 !important; }

      /* ── Nav: compact, breathable ── */
      .nav { padding: 0 16px !important; }
      .nav-inner { height: 56px !important; }
      .nav-inner > a > img { height: 30px !important; }
      .nav-inner > a > span { font-size: 14px !important; }
      .nav-inner > div:last-child .btn-accent {
        padding: 7px 14px !important;
        font-size: 11px !important;
        border-radius: 80px !important;
      }

      /* ── HERO: Clean, centered, impactful ── */
      #home {
        min-height: auto !important;
        padding: 90px 0 50px !important;
        overflow: hidden !important;
      }

      .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        text-align: center !important;
      }

      /* Kill the right-side visual entirely */
      .hero-visual { display: none !important; }

      /* Heading: large, bold, no overflow */
      #heroH {
        font-size: clamp(1.6rem, 8.5vw, 2.6rem) !important;
        line-height: 1.25 !important;
        padding: 0 !important;
        margin-bottom: 16px !important;
        overflow: hidden !important;
      }

      /* Pills inside heading: small centered badges below each line */
      #heroH .pill,
      #heroH .pill-accent {
        display: inline-block !important;
        font-size: 9px !important;
        padding: 5px 12px !important;
        margin: 4px 3px !important;
        vertical-align: middle !important;
        letter-spacing: 0.1em !important;
      }

      /* Break nowrap containers so text wraps naturally */
      #heroH span[style*="white-space"] {
        white-space: normal !important;
      }

      /* Sub copy */
      #heroP {
        font-size: 15px !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
        margin: 0 auto 32px !important;
        padding: 0 !important;
      }

      /* CTA buttons: stacked, centered, proper alignment */
      .hero-grid .btn-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 14px !important;
        margin-bottom: 40px !important;
      }
      .hero-grid .btn-row .btn-dark {
        width: auto !important;
        padding: 8px 40px 8px 8px !important;
        font-size: 15px !important;
      }
      .hero-grid .btn-row .btn-ghost {
        padding: 12px 28px !important;
        font-size: 14px !important;
        border: 2px solid var(--accent) !important;
        border-radius: 100px !important;
        color: var(--accent) !important;
        background: var(--white) !important;
        font-weight: 600 !important;
      }

      /* Stats: bold, prominent, side-by-side with divider */
      .hero-grid .stats-row {
        justify-content: center !important;
        gap: 0 !important;
        flex-wrap: wrap !important;
        margin-top: 8px !important;
      }
      /* Numbers row: horizontal with gap */
      .stats-row > div:first-child {
        flex-direction: row !important;
        gap: 0 !important;
        text-align: center !important;
        align-items: center !important;
      }
      /* Add a divider between the two stat blocks */
      .stats-row > div:first-child > div:first-child {
        padding-right: 28px !important;
        border-right: 2px solid var(--border) !important;
      }
      .stats-row > div:first-child > div:last-child {
        padding-left: 28px !important;
      }
      /* Bigger, bolder stat numbers */
      .stats-row span[style*="font-size:48px"] {
        font-size: 40px !important;
        color: var(--dark) !important;
      }
      /* Hide bracket connector + description on mobile */
      .stats-row > div[style*="width:80px"],
      .stats-row > div[style*="max-width:180px"] {
        display: none !important;
      }

      /* Particle canvas: subtle on mobile */
      #particleCanvas { opacity: 0.4 !important; }

      /* ── Services & Portfolio: horizontal swipe carousel ── */
      .carousel-mobile {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px !important;
        padding-bottom: 12px;
        scrollbar-width: none;
        grid-template-columns: unset !important;
      }
      .carousel-mobile::-webkit-scrollbar { display: none; }
      .carousel-mobile > * {
        flex: 0 0 82%;
        min-width: 280px;
        scroll-snap-align: start;
      }

      /* Portfolio featured card: stack vertically */
      .portfolio-featured .grid-2 {
        grid-template-columns: 1fr !important;
      }

      .grid-3:not(.carousel-mobile) { grid-template-columns: 1fr !important; }
      .grid-2 { grid-template-columns: 1fr !important; }

      /* ── Contact: full width form ── */
      .contact-grid {
        grid-template-columns: 1fr !important;
      }
      .contact-grid > *:first-child { order: 1; }
      .contact-grid > *:last-child { order: 2; }

      /* ── About: stack founder ── */
      .founder-row { flex-direction: column !important; text-align: center !important; }
      .founder-row .soc-row { justify-content: center; }

      /* ── Industries ── */
      .diamond-wrap { gap: 8px; }
      .diamond { width: 110px; height: 65px; font-size: 11px; }

      /* ── Scroll indicator dots ── */
      .scroll-hint { display: flex; }

      /* ── Booking mobile tweaks ── */
      .booking-widget { padding: 24px 20px !important; }
    }

    /* ── Tablet (769-1024px) ── */
    @media (min-width: 769px) and (max-width: 1024px) {
      #heroH { font-size: 3.2rem !important; }
      .grid-3 { grid-template-columns: 1fr 1fr !important; }
      .hero-grid { gap: 30px !important; }
    }

    /* Scroll hint indicator */
    .scroll-hint {
      display: none;
      justify-content: center;
      gap: 6px;
      padding-top: 14px;
    }

    .scroll-hint span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      transition: background 0.3s, transform 0.3s;
    }

    .scroll-hint span.active {
      background: var(--accent);
      transform: scale(1.3);
    }

    /* ═══════ BOOKING WIDGET ═══════ */
    .booking-widget { position: relative; }

    .booking-steps {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 32px;
    }

    .booking-step-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      transition: all 0.3s;
    }

    .booking-step-dot.active {
      background: var(--accent);
      transform: scale(1.3);
    }

    .booking-step-dot.done {
      background: var(--accent2);
    }

    .booking-panel {
      display: none;
      animation: bookingFadeIn 0.4s cubic-bezier(.4,0,.2,1);
    }

    .booking-panel.active { display: block; }

    @keyframes bookingFadeIn {
      from { opacity: 0; transform: translateX(20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Calendar */
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 10px 8px;
    }

    .cal-header {
      font-size: 12px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-align: center;
      padding: 10px 0;
    }

    .cal-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(.4,0,.2,1);
      border: 2px solid transparent;
      position: relative;
    }

    .cal-day:hover:not(.cal-disabled):not(.cal-empty) {
      background: rgba(122,29,62,0.08);
      border-color: rgba(122,29,62,0.2);
      transform: scale(1.08);
    }

    .cal-day.cal-selected {
      background: rgba(122,29,62,0.15);
      color: var(--accent);
      border-color: rgba(122,29,62,0.25);
      box-shadow: 0 2px 12px rgba(122,29,62,0.12);
      transform: scale(1.08);
      font-weight: 700;
    }

    .cal-day.cal-disabled {
      color: var(--muted);
      cursor: not-allowed;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.06) 3px,
        rgba(0,0,0,0.06) 5px
      );
      border-radius: 50%;
      opacity: 0.7;
    }

    .cal-day.cal-today::after {
      content: '';
      position: absolute;
      bottom: 4px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
    }

    .cal-day.cal-empty { cursor: default; }

    .cal-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .cal-nav-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
      color: var(--dark);
    }

    .cal-nav-btn:hover {
      border-color: var(--accent-border);
      color: var(--accent);
    }

    .cal-nav-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }

    /* Time slots */
    .time-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .time-grid-label {
      grid-column: 1 / -1;
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
      margin-top: 8px;
    }

    .time-slot {
      padding: 14px 12px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--white);
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      cursor: pointer;
      text-align: center;
      transition: all 0.25s cubic-bezier(.4,0,.2,1);
    }

    .time-slot:hover:not(.time-booked) {
      border-color: var(--accent);
      background: rgba(122,29,62,0.06);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(122,29,62,0.08);
    }

    .time-slot.time-selected {
      background: rgba(122,29,62,0.15);
      color: var(--accent);
      border-color: rgba(122,29,62,0.3);
      box-shadow: 0 4px 16px rgba(122,29,62,0.12);
      font-weight: 700;
    }

    .time-slot.time-booked {
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.05) 3px,
        rgba(0,0,0,0.05) 5px
      );
      color: var(--muted);
      cursor: not-allowed;
      opacity: 0.6;
    }

    /* Booking form */
    .booking-form-grid {
      display: grid;
      gap: 14px;
    }

    .booking-summary {
      background: var(--accent-soft);
      border: 1px solid var(--accent-border);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .booking-summary-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Success state */
    .booking-success {
      text-align: center;
      padding: 20px 0;
    }

    .booking-checkmark {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      animation: checkPop 0.5s cubic-bezier(.4,0,.2,1);
    }

    @keyframes checkPop {
      0% { transform: scale(0); }
      60% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }

    .booking-confetti {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .confetti-piece {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 2px;
      animation: confettiFall 1.5s cubic-bezier(.2,.8,.4,1) forwards;
      opacity: 0;
    }

    @keyframes confettiFall {
      0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
      100% { transform: translateY(300px) rotate(720deg); opacity: 0; }
    }

    /* Loading spinner */
    .booking-spinner {
      display: inline-block;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: bookingSpin 0.6s linear infinite;
    }

    @keyframes bookingSpin {
      to { transform: rotate(360deg); }
    }

    .booking-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--body);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      background: none;
      border: none;
      font-family: inherit;
      margin-bottom: 20px;
      transition: color 0.3s;
    }

    .booking-back-btn:hover { color: var(--accent); }

    @media (max-width: 768px) {
      .time-grid { grid-template-columns: repeat(3, 1fr); }
      .cal-day { font-size: 13px; }
    }
