  :root {
    --bg: #08080f;
    --surface: #0f0f1a;
    --card: #13131f;
    --border: rgba(255,255,255,0.07);
    --pink: #ff2d78;
    --violet: #7c3aed;
    --pink-glow: rgba(255,45,120,0.15);
    --violet-glow: rgba(124,58,237,0.15);
    --text: #f0f0f8;
    --muted: #7a7a9a;
    --white: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(8,8,15,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--pink); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--pink);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 140px 80px 100px;
    gap: 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
  }

  /* ── HERO BACKGROUND LAYERS ── */
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }

  /* Perspective grid floor */
  .hero-grid-perspective {
    position: absolute;
    bottom: -10%;
    left: 50%;
    width: 220%;
    height: 65%;
    transform: translateX(-50%) perspective(700px) rotateX(58deg);
    transform-origin: bottom center;
    background-image:
      linear-gradient(rgba(255,45,120,0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,45,120,0.09) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  }

  /* Aurora blobs */
  .hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: aurora-drift 14s ease-in-out infinite;
  }
  .hero-aurora-1 {
    width: 750px; height: 750px;
    left: -220px; top: -180px;
    background: radial-gradient(circle, rgba(124,58,237,0.16) 0%, transparent 70%);
    animation-duration: 16s;
  }
  .hero-aurora-2 {
    width: 550px; height: 550px;
    right: -120px; bottom: -60px;
    background: radial-gradient(circle, rgba(255,45,120,0.13) 0%, transparent 70%);
    animation-duration: 11s;
    animation-delay: -5s;
  }
  .hero-aurora-3 {
    width: 420px; height: 420px;
    left: 38%; top: 25%;
    background: radial-gradient(circle, rgba(168,85,247,0.09) 0%, transparent 70%);
    animation-duration: 20s;
    animation-delay: -10s;
  }
  @keyframes aurora-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%  { transform: translate(28px, -28px) scale(1.06); }
    50%  { transform: translate(-18px, 22px) scale(0.94); }
    75%  { transform: translate(18px, 28px) scale(1.03); }
  }

  /* ── PARTICLES ── */
  .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }
  .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float linear infinite;
  }
  .particle:nth-child(1)  { left:8%;   top:22%; width:2px; height:2px; background:var(--pink);   animation-duration:8s;  animation-delay:0s;    }
  .particle:nth-child(2)  { left:22%;  top:68%; width:3px; height:3px; background:var(--violet); animation-duration:11s; animation-delay:-2s;   }
  .particle:nth-child(3)  { left:38%;  top:14%; width:2px; height:2px; background:var(--pink);   animation-duration:9s;  animation-delay:-4s;   }
  .particle:nth-child(4)  { left:58%;  top:78%; width:4px; height:4px; background:var(--violet); animation-duration:13s; animation-delay:-1s;   }
  .particle:nth-child(5)  { left:74%;  top:32%; width:2px; height:2px; background:var(--pink);   animation-duration:7s;  animation-delay:-6s;   }
  .particle:nth-child(6)  { left:87%;  top:52%; width:3px; height:3px; background:var(--violet); animation-duration:15s; animation-delay:-3s;   }
  .particle:nth-child(7)  { left:14%;  top:44%; width:2px; height:2px; background:var(--pink);   animation-duration:10s; animation-delay:-7s;   }
  .particle:nth-child(8)  { left:48%;  top:58%; width:3px; height:3px; background:var(--pink);   animation-duration:9s;  animation-delay:-5s;   }
  .particle:nth-child(9)  { left:28%;  top:88%; width:2px; height:2px; background:var(--violet); animation-duration:12s; animation-delay:-9s;   }
  .particle:nth-child(10) { left:68%;  top:8%;  width:3px; height:3px; background:var(--pink);   animation-duration:14s; animation-delay:-2s;   }
  .particle:nth-child(11) { left:4%;   top:63%; width:2px; height:2px; background:var(--violet); animation-duration:8s;  animation-delay:-4s;   }
  .particle:nth-child(12) { left:44%;  top:38%; width:3px; height:3px; background:var(--pink);   animation-duration:17s; animation-delay:-8s;   }
  .particle:nth-child(13) { left:92%;  top:72%; width:2px; height:2px; background:var(--violet); animation-duration:11s; animation-delay:-1s;   }
  .particle:nth-child(14) { left:54%;  top:24%; width:3px; height:3px; background:var(--pink);   animation-duration:12s; animation-delay:-6s;   }
  .particle:nth-child(15) { left:18%;  top:54%; width:2px; height:2px; background:var(--pink);   animation-duration:9s;  animation-delay:-3s;   }
  .particle:nth-child(16) { left:63%;  top:86%; width:3px; height:3px; background:var(--violet); animation-duration:11s; animation-delay:-10s;  }
  .particle:nth-child(17) { left:34%;  top:4%;  width:2px; height:2px; background:var(--pink);   animation-duration:7s;  animation-delay:-2s;   }
  .particle:nth-child(18) { left:78%;  top:42%; width:3px; height:3px; background:var(--pink);   animation-duration:15s; animation-delay:-7s;   }
  .particle:nth-child(19) { left:11%;  top:82%; width:2px; height:2px; background:var(--violet); animation-duration:10s; animation-delay:-5s;   }
  .particle:nth-child(20) { left:96%;  top:28%; width:3px; height:3px; background:var(--pink);   animation-duration:8s;  animation-delay:-11s;  }
  @keyframes particle-float {
    0%   { opacity: 0;   transform: translateY(20px) scale(0.5); }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.4; }
    100% { opacity: 0;   transform: translateY(-90px) scale(1.8); }
  }

  /* ── HERO CONTENT ── */
  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,45,120,0.08);
    border: 1px solid rgba(255,45,120,0.28);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--pink);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--pink); }
    50%       { opacity: 0.5; transform: scale(0.75); box-shadow: 0 0 2px var(--pink); }
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 24px;
  }

  .hero h1 .gradient-text {
    background: linear-gradient(120deg, var(--pink) 0%, #d946ef 35%, #a855f7 65%, var(--pink) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-pan 5s linear infinite;
  }
  @keyframes gradient-pan {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
  }

  .hero-desc {
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 44px;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* Base btn-primary (used site-wide) */
  .btn-primary {
    background: var(--pink);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 32px rgba(255,45,120,0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(255,45,120,0.5);
  }

  /* Hero CTA — glassmorphism upgrade */
  .hero .btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, #b020d0 100%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
      0 0 0 1px rgba(255,45,120,0.3),
      0 8px 40px rgba(255,45,120,0.45),
      inset 0 1px 0 rgba(255,255,255,0.2);
    padding: 15px 34px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s;
  }
  .hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.55s ease;
  }
  .hero .btn-primary:hover::before { left: 100%; }
  .hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
      0 0 0 1px rgba(255,45,120,0.5),
      0 14px 56px rgba(255,45,120,0.6),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }

  .btn-ghost {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost svg { transition: transform 0.2s; }
  .btn-ghost:hover svg { transform: translateX(3px); }

  .phone-icon {
    width: 36px; height: 36px;
    background: var(--violet);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ── HERO VISUAL (right) ── */
  .hero-visual {
    position: relative;
    z-index: 2;
  }

  .hero-3d-wrap {
    position: relative;
  }

  .hero-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.1);
    transform: perspective(1100px) rotateY(-9deg) rotateX(4deg);
    transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
    box-shadow:
      0 48px 96px rgba(0,0,0,0.65),
      0 0 0 1px rgba(255,45,120,0.08),
      inset 0 1px 0 rgba(255,255,255,0.07);
  }
  .hero-3d-wrap:hover .hero-image-wrap {
    transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
  }
  .hero-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    display: block;
  }
  /* Colour-grade overlay */
  .hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(124,58,237,0.22) 0%,
      transparent 50%,
      rgba(255,45,120,0.12) 100%
    );
    pointer-events: none;
  }

  /* Floating stat cards */
  .stat-card {
    position: absolute;
    background: rgba(8,8,15,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,45,120,0.06);
  }
  .stat-card .stat-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1;
  }
  .stat-card .stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .stat-card .stat-value span { color: var(--pink); }
  .stat-card-1 { bottom: -24px; left: -28px; }
  .stat-card-2 { top: -18px; right: -18px; }

  /* Floating badges */
  .hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,13,26,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 9px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    z-index: 3;
  }
  .hero-float-badge-1 {
    bottom: 48px; left: -52px;
    animation: float2 7s ease-in-out infinite;
    animation-delay: -2s;
  }
  .hero-float-badge-2 {
    top: 56px; right: -44px;
    animation: float1 8s ease-in-out infinite;
    animation-delay: -4s;
    color: var(--pink);
    border-color: rgba(255,45,120,0.25);
    background: rgba(255,45,120,0.07);
  }
  .badge-dot {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34,197,94,0.9);
    animation: badge-glow 1.6s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.8); }
    50%       { box-shadow: 0 0 16px rgba(34,197,94,1), 0 0 24px rgba(34,197,94,0.4); }
  }

  /* ── SECTION SHARED ── */
  section { position: relative; z-index: 1; }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1.1;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    max-width: 500px;
    margin-top: 12px;
  }

  /* ── SERVICES ── */
  #services {
    padding: 100px 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .service-card {
    background: var(--card);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover { background: #181828; }

  .service-icon {
    width: 48px; height: 48px;
    background: rgba(255,45,120,0.12);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .service-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
  }
  .service-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  .service-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    align-self: flex-start;
    cursor: pointer;
    margin-top: auto;
  }
  .service-card:hover .service-arrow {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
  }

  /* ── TESTIMONIALS ── */
  #testimonials {
    padding: 100px 80px;
  }

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

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

  .testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .testimonial-card:hover {
    border-color: rgba(255,45,120,0.3);
    transform: translateY(-4px);
  }

  .stars {
    display: flex;
    gap: 3px;
  }
  .star {
    width: 14px; height: 14px;
    background: #f59e0b;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .star.empty { background: #2a2a3a; }

  .testimonial-text {
    color: #c0c0d8;
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
  }
  .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
  }
  .author-role {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1px;
  }

  /* ── PRICING ── */
  #pricing {
    padding: 100px 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

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

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
  }

  .pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: border-color 0.3s;
  }
  .pricing-card:hover { border-color: rgba(255,45,120,0.3); }

  .pricing-card.featured {
    border-color: var(--pink);
    background: linear-gradient(160deg, #18101e 0%, var(--card) 60%);
  }

  .pricing-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--pink);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .pricing-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 6px;
  }
  .pricing-tagline {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
  }

  .pricing-free {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 4px;
  }

  .pricing-price {
    margin-bottom: 24px;
  }
  .pricing-price .amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
  }
  .pricing-price .period {
    color: var(--muted);
    font-size: 0.85rem;
  }
  .pricing-price .yearly {
    color: var(--pink);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 2px;
  }

  .pricing-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
  }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #c0c0d8;
  }
  .feature-list .check {
    width: 16px; height: 16px;
    background: rgba(255,45,120,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.65rem;
    color: var(--pink);
  }

  .btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 100px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  }
  .btn-pricing.solid {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 0 24px rgba(255,45,120,0.3);
  }
  .btn-pricing.solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255,45,120,0.45);
  }
  .btn-pricing.outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
  }
  .btn-pricing.outline:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
  }

  /* ── CONTACT ── */
  #contact {
    padding: 100px 80px;
  }

  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info { display: flex; flex-direction: column; gap: 32px; }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-icon {
    width: 44px; height: 44px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-detail .label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 3px;
  }
  .contact-detail .value {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
  }

  .commitment-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    margin-top: 8px;
  }
  .commitment-box .commitment-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 14px;
  }
  .commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .commitment-dot {
    width: 6px; height: 6px;
    background: var(--pink);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
  }

  /* Contact form */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }

  .field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .field input,
  .field select,
  .field textarea {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: rgba(255,45,120,0.4);
  }
  .field select option { background: #13131f; }
  .field textarea { resize: vertical; min-height: 110px; }

  .btn-submit {
    background: var(--pink);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 28px rgba(255,45,120,0.3);
    align-self: flex-start;
  }
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(255,45,120,0.48);
  }

  /* ── FOOTER ── */
  footer {
    background: #04040a;
    border-top: 1px solid var(--border);
    padding: 48px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  .footer-brand .logo { display: block; margin-bottom: 14px; }
  .footer-brand p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 260px;
  }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }

  .footer-bottom {
    background: #04040a;
    border-top: 1px solid var(--border);
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    color: var(--muted);
    font-size: 0.82rem;
  }
  .footer-bottom a { color: var(--muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--white); }

  .socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }
  .social-btn {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .social-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: rgba(255,45,120,0.06);
  }

  /* ── STATS BAR ── */
  .stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 40px;
  }
  .stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
  }
  .stat-number span {
    color: var(--pink);
  }
  .stat-text {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.03em;
  }
  .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
  }

  /* ── TRUST BADGES ── */
  .trust-section {
    padding: 28px 80px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .trust-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .trust-logo {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.03em;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .trust-logo:hover {
    border-color: rgba(255,45,120,0.3);
    color: var(--text);
  }

  /* ── PROCESS ── */
  .process-section {
    padding: 100px 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-card {
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid var(--border);
  }
  .process-card:last-child { border-right: none; }
  .process-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    position: absolute;
    top: 24px; right: 24px;
  }
  .process-icon {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
  .process-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
  }
  .process-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
  }

  /* ── PORTFOLIO ── */
  .portfolio-section {
    padding: 100px 80px;
  }
  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .portfolio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .portfolio-card:hover {
    border-color: rgba(255,45,120,0.3);
    transform: translateY(-4px);
  }
  .portfolio-large {
    grid-row: 1 / 3;
  }
  .portfolio-cta-card {
    background: linear-gradient(135deg, rgba(255,45,120,0.12) 0%, rgba(124,58,237,0.12) 100%);
    border-color: rgba(255,45,120,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }
  .portfolio-cta-content {
    text-align: center;
    padding: 32px;
  }
  .portfolio-img {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
  }
  .portfolio-large .portfolio-img {
    aspect-ratio: 16/12;
  }
  .portfolio-mock {
    width: 100%;
    max-width: 280px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .mock-bar {
    background: rgba(0,0,0,0.5);
    padding: 8px 12px;
    display: flex;
    gap: 5px;
    align-items: center;
  }
  .mock-bar span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: block;
  }
  .mock-hero {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 80px;
  }
  .mock-line {
    height: 6px;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
  }
  .mock-line.wide { width: 80%; }
  .mock-line.medium { width: 55%; }
  .mock-line.short { width: 35%; }
  .mock-btn {
    width: 60px; height: 20px;
    border-radius: 10px;
    background: var(--pink);
    margin-top: 4px;
  }
  .portfolio-info {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .portfolio-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink);
  }
  .portfolio-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
  }
  .portfolio-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ── ROI CALCULATOR ── */
  .roi-section {
    padding: 100px 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .roi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .roi-plan-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
  }
  .roi-plan-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    line-height: 1.4;
  }
  .roi-plan-btn span {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
  }
  .roi-plan-btn.active {
    background: var(--pink);
    color: var(--white);
  }
  .roi-plan-btn.active span { opacity: 0.85; }

  .roi-sliders {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .roi-slider-group { display: flex; flex-direction: column; gap: 10px; }
  .roi-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text);
  }
  .roi-slider-val {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pink);
  }
  .roi-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: var(--border);
    outline: none;
    cursor: pointer;
  }
  .roi-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--pink);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255,45,120,0.4);
    transition: box-shadow 0.2s;
  }
  .roi-range::-webkit-slider-thumb:hover {
    box-shadow: 0 0 20px rgba(255,45,120,0.6);
  }
  .roi-range-hints {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
  }

  .roi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: sticky;
    top: 100px;
  }
  .roi-card-header {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
  }
  .roi-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
  }
  .roi-metric.highlight {
    background: rgba(255,45,120,0.05);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0 -14px;
  }
  .roi-metric-label {
    font-size: 0.85rem;
    color: var(--muted);
  }
  .roi-metric-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
  }
  .roi-metric-value.positive { color: #4ade80; }
  .roi-metric-value.negative { color: #f87171; }
  .roi-metric-value.muted { color: var(--muted); font-size: 0.95rem; }
  .roi-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
  }
  .roi-verdict {
    margin-top: 20px;
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 0.85rem;
    color: #86efac;
    line-height: 1.6;
  }

  /* ── FAQ ── */
  .faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    width: 100%;
    background: var(--card);
    border: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
  }
  .faq-question:hover { background: #181828; }
  .faq-question.open { background: #181828; color: var(--pink); }

  .faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
    line-height: 1;
  }
  .faq-question.open .faq-icon {
    transform: rotate(45deg);
    color: var(--pink);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    background: var(--surface);
  }
  .faq-answer.open {
    max-height: 200px;
    padding: 0 28px 22px;
  }
  .faq-answer p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  /* ── PRICING SUB LABEL ── */
  .pricing-sub-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.1) saturate(1.2);
    flex-shrink: 0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo-full-img {
    width: 160px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.15) saturate(1.1);
  }
  .footer-logo { margin-bottom: 14px; display: inline-block; }

  /* ── LANG TOGGLE ── */
  .lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 6px;
    cursor: pointer;
    margin-left: 12px;
    flex-shrink: 0;
  }
  .lang-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .lang-btn.active {
    background: var(--pink);
    color: var(--white);
  }

  /* ── CALENDLY FALLBACK ── */
  .calendly-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 56px 40px;
    gap: 16px;
    min-height: 660px;
  }
  .cal-fallback-icon { font-size: 3rem; margin-bottom: 8px; }
  .cal-fallback-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
  }
  .cal-fallback-sub {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 340px;
  }
  .cal-fallback-btn {
    background: var(--pink);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 8px;
    box-shadow: 0 0 32px rgba(255,45,120,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
  }
  .cal-fallback-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(255,45,120,0.5);
  }
  .cal-fallback-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ── CALENDLY SECTION ── */
  .calendly-section {
    padding: 100px 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .calendly-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
  }
  .calendly-left { padding-top: 8px; }
  .calendly-left .section-sub { margin-bottom: 28px; }
  .calendly-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }
  .calendly-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
  }
  .perk-icon {
    width: 28px; height: 28px;
    background: rgba(255,45,120,0.1);
    border: 1px solid rgba(255,45,120,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .calendly-embed-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    min-height: 660px;
    position: relative;
  }
  .calendly-embed-wrap iframe {
    width: 100%;
    height: 660px;
    border: none;
    display: block;
  }

  /* ── MOBILE MENU ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  #mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #0c0c18;
    border-left: 1px solid var(--border);
    z-index: 200;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  #mobile-menu.open { right: 0; }
  #mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  #mobile-menu a:hover { color: var(--pink); }
  #mobile-menu .menu-cta {
    margin-top: 24px;
    background: var(--pink);
    color: var(--white) !important;
    border-radius: 100px;
    text-align: center;
    padding: 14px !important;
    border-bottom: none !important;
    font-weight: 600 !important;
  }
  #menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 199;
    backdrop-filter: blur(4px);
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── MOBILE FLOATING CTA ── */
  .mobile-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .mobile-cta-btn {
    background: var(--pink);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(255,45,120,0.45);
    white-space: nowrap;
    display: block;
  }

  /* ── ENHANCED CARD HOVER GLOW ── */
  .testimonial-card, .pricing-card, .portfolio-card {
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .testimonial-card:hover, .pricing-card:hover {
    box-shadow: 0 0 40px rgba(255,45,120,0.08);
  }
  .pricing-card.featured:hover {
    box-shadow: 0 0 60px rgba(255,45,120,0.15);
  }

  /* ── ANIMATED GRADIENT BORDER ON FEATURED CARD ── */
  .pricing-card.featured {
    position: relative;
  }
  .pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, var(--pink), var(--violet), var(--pink));
    background-size: 200% 200%;
    animation: borderRotate 4s linear infinite;
    z-index: -1;
    opacity: 0.6;
  }
  @keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ── HERO FLOATING ANIMATION ── */
  .stat-card-1 { animation: float1 5s ease-in-out infinite; }
  .stat-card-2 { animation: float2 6s ease-in-out infinite; }
  @keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
  }
  @keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
  }

  /* ── PROCESS STEP HOVER ── */
  .process-card {
    transition: background 0.3s;
    cursor: default;
  }
  .process-card:hover { background: rgba(255,45,120,0.03); }

  /* ── SERVICE CARD LINK CURSOR ── */
  .service-card { cursor: pointer; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.7s ease forwards; }
  .fade-up-1 { animation-delay: 0.05s; opacity: 0; }
  .fade-up-2 { animation-delay: 0.15s; opacity: 0; }
  .fade-up-3 { animation-delay: 0.28s; opacity: 0; }
  .fade-up-4 { animation-delay: 0.42s; opacity: 0; }
  .fade-up-5 { animation-delay: 0.56s; opacity: 0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    nav.main-nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-cta { display: block; }
    .hero { grid-template-columns: 1fr; padding: 110px 28px 64px; gap: 0; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .hero-grid-perspective { display: none; }
    #services { padding: 64px 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    #testimonials { padding: 64px 32px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    #pricing { padding: 64px 32px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    #contact { padding: 64px 32px; }
    .contact-wrap { grid-template-columns: 1fr; }
    .field-group { grid-template-columns: 1fr; }
    .stats-bar { padding: 24px 32px; gap: 0; }
    .stat-item { padding: 10px 20px; }
    .stat-divider { display: none; }
    .trust-section { padding: 24px 32px; flex-direction: column; align-items: flex-start; gap: 16px; }
    .process-section { padding: 64px 32px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-card { border-right: none; border-bottom: 1px solid var(--border); }
    .process-card:nth-child(odd) { border-right: 1px solid var(--border); }
    .process-card:nth-last-child(-n+2) { border-bottom: none; }
    .portfolio-section { padding: 64px 32px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-large { grid-row: auto; }
    .calendly-section { padding: 64px 32px; }
    .calendly-inner { grid-template-columns: 1fr; gap: 36px; }
    .calendly-embed-wrap { min-height: 580px; }
    .calendly-embed-wrap iframe { height: 580px; }
    .roi-section { padding: 64px 32px; }
    .roi-inner { grid-template-columns: 1fr; gap: 40px; }
    .roi-card { position: static; }
    #faq { padding: 64px 32px; }
    footer { grid-template-columns: 1fr 1fr; padding: 40px 32px; }
    .footer-bottom { padding: 20px 32px; flex-direction: column; gap: 10px; text-align: center; }
  }

  /* ── PAGE HEADER (non-home pages) ── */
  .page-header {
    padding: 140px 80px 56px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .page-header::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    right: -80px; top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-header-inner { position: relative; z-index: 1; }
  .page-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,45,120,0.1);
    border: 1px solid rgba(255,45,120,0.25);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .page-header-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
  }
  @media (max-width: 960px) {
    .page-header { padding: 100px 32px 60px; }
  }

  /* ── SCROLL PROGRESS BAR ── */
  #scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--pink), var(--violet), var(--pink));
    background-size: 200% auto;
    animation: progress-shimmer 2s linear infinite;
    z-index: 10000;
    pointer-events: none;
  }
  @keyframes progress-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
  }

  /* ── BACK TO TOP ── */
  #back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 46px; height: 46px;
    background: var(--card);
    border: 1px solid rgba(255,45,120,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--pink);
    opacity: 0; pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s, border-color 0.2s;
    z-index: 9000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  #back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
  #back-to-top:hover {
    box-shadow: 0 0 24px rgba(255,45,120,0.45);
    border-color: var(--pink);
    transform: translateY(-2px);
  }

  /* ── PAGE TRANSITION OVERLAY ── */
  #page-transition {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
  }

  /* ── SECTION TITLE PINK UNDERLINE ACCENT ── */
  .section-title::after {
    content: '';
    display: block;
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--violet));
    border-radius: 2px;
    margin-top: 14px;
  }
  /* Don't double-underline the hero h1 */
  .hero h1::after { display: none; }
  .page-header-title::after { display: none; }

  /* ── CARD HOVER GLOW ── */
  .service-card:hover {
    box-shadow: 0 0 0 1px rgba(255,45,120,0.2), 0 8px 32px rgba(255,45,120,0.12);
  }
  .portfolio-card:not(.portfolio-cta-card):hover {
    box-shadow: 0 0 0 1px rgba(255,45,120,0.2), 0 12px 40px rgba(255,45,120,0.1);
    transform: translateY(-4px);
  }
  .pricing-card:hover {
    box-shadow: 0 0 0 1px rgba(255,45,120,0.25), 0 16px 48px rgba(255,45,120,0.12);
  }

  /* ── ANIMATED GRADIENT BORDER ON FEATURED PRICING CARDS ── */
  .pricing-card.featured {
    border: none;
    background-clip: padding-box;
    position: relative;
  }
  .pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--pink), var(--violet), #ec4899, var(--pink));
    background-size: 300% 300%;
    animation: border-rotate 4s linear infinite;
    z-index: -1;
  }
  .pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(160deg, #18101e 0%, var(--card) 60%);
    z-index: -1;
  }
  @keyframes border-rotate {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ── TESTIMONIAL SHIMMER ON HOVER ── */
  .testimonial-card { overflow: hidden; }
  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-15deg);
    transition: left 0.7s ease;
    pointer-events: none;
  }
  .testimonial-card:hover::before { left: 160%; }

  /* ── CTA BUTTON PULSING GLOW ── */
  .btn-primary {
    animation: cta-pulse 3.5s ease-in-out infinite;
  }
  .hero .btn-primary { animation: hero-cta-pulse 3.5s ease-in-out infinite; }
  @keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 32px rgba(255,45,120,0.35); }
    50%       { box-shadow: 0 0 52px rgba(255,45,120,0.65), 0 0 80px rgba(255,45,120,0.15); }
  }
  @keyframes hero-cta-pulse {
    0%, 100% {
      box-shadow: 0 0 0 1px rgba(255,45,120,0.3), 0 8px 40px rgba(255,45,120,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
      box-shadow: 0 0 0 1px rgba(255,45,120,0.5), 0 12px 60px rgba(255,45,120,0.7), 0 0 80px rgba(255,45,120,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
    }
  }

  /* ── FOOTER SOCIAL ICONS ── */
  .social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    color: var(--muted);
    text-decoration: none;
  }
  .social-btn:hover {
    background: rgba(255,45,120,0.12);
    border-color: rgba(255,45,120,0.35);
    color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,45,120,0.2);
  }
  .social-btn svg { display: block; }

  /* ── FAQ MAX-HEIGHT FIX ── */
  .faq-answer.open { max-height: 400px; }

  /* Mobile adjustments */
  @media (max-width: 960px) {
    #back-to-top { bottom: 20px; right: 20px; }
  }

  /* ── PRICING PAGE: reduce gap between page-header and first pricing grid ── */
  .page-header + #pricing { padding-top: 48px; }
  @media (max-width: 960px) { .page-header + #pricing { padding-top: 32px; } }

/* ════════════════════════════════════════════
   PREMIUM DARK ROSE/VIOLET DESIGN UPGRADE
   ════════════════════════════════════════════ */

/* ── NAV: gradient CTA + animated link underline ── */
.nav-cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  box-shadow: 0 4px 20px rgba(255,45,120,0.30);
}
.nav-cta:hover {
  opacity: 1;
  box-shadow: 0 6px 28px rgba(255,45,120,0.50);
  transform: translateY(-2px);
}

.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  border-radius: 2px;
  transition: width 0.28s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

/* ── SECTION LABEL: pill chip with dot ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(255,45,120,0.12) 0%, rgba(124,58,237,0.12) 100%);
  border: 1px solid rgba(255,45,120,0.25);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px rgba(255,45,120,0.8);
  flex-shrink: 0;
}

/* ── SECTION TITLE underline glow ── */
.section-title::after {
  box-shadow: 0 0 18px rgba(255,45,120,0.50), 0 0 36px rgba(124,58,237,0.30);
}

/* ── STATS BAR: top accent line + gradient numbers ── */
.stats-bar {
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--violet), transparent);
}

.stat-number {
  background: linear-gradient(135deg, var(--white) 0%, var(--pink) 60%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TRUST LOGOS: stronger glow on hover ── */
.trust-logo {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.trust-logo:hover {
  border-color: rgba(255,45,120,0.40) !important;
  box-shadow: 0 0 20px rgba(255,45,120,0.18), 0 0 40px rgba(124,58,237,0.10);
  transform: translateY(-2px);
}

/* ── SERVICE CARDS: icon glow + richer hover ── */
.service-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-4deg);
  filter: drop-shadow(0 0 12px rgba(255,45,120,0.6));
}
.service-card {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(255,45,120,0.30) !important;
  box-shadow: 0 8px 48px rgba(255,45,120,0.12), 0 0 0 1px rgba(124,58,237,0.10);
}

/* ── PROCESS NUMBERS: gradient treatment ── */
.process-number {
  background: linear-gradient(135deg, rgba(255,45,120,0.55) 0%, rgba(124,58,237,0.55) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 900 !important;
  opacity: 1 !important;
}

/* ── TESTIMONIAL CARDS: quote mark + gradient avatar ring ── */
/* Quote mark shown inside card at top-left, inside overflow:hidden boundary */
.testimonial-text {
  position: relative;
  padding-top: 28px;
}
.testimonial-text::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: -4px;
  font-size: 4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.40;
  pointer-events: none;
}

.author-avatar {
  box-shadow: 0 0 0 3px rgba(255,45,120,0.30), 0 0 16px rgba(255,45,120,0.25);
}

/* Star glow */
.stars { filter: drop-shadow(0 0 6px rgba(255,200,0,0.5)); }

/* ── PORTFOLIO: image gradient overlay ── */
.portfolio-img {
  position: relative;
  overflow: hidden;
}
.portfolio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,45,120,0.15) 0%, rgba(124,58,237,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-img::after { opacity: 1; }

/* ── PRICING: outline button violet hover + featured card glow ── */
.btn-pricing.outline {
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, color 0.25s, transform 0.2s;
}
.btn-pricing.outline:hover {
  border-color: var(--violet) !important;
  background: rgba(124,58,237,0.12) !important;
  color: #c4a8ff !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.25) !important;
  transform: translateY(-2px);
}

/* ── FOOTER: gradient top border ── */
footer {
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink) 35%, var(--violet) 65%, transparent);
}
footer .footer-col h4 {
  background: linear-gradient(135deg, var(--white) 0%, rgba(200,200,230,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PAGE HEADERS: richer gradient background ── */
.page-header {
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,45,120,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(124,58,237,0.10) 0%, transparent 70%),
    var(--surface) !important;
  border-bottom: 1px solid rgba(255,45,120,0.12) !important;
}
.page-header-title {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,45,120,0.85) 50%, rgba(124,58,237,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTACT: field focus pink glow ── */
#clicko-contact-form input:focus,
#clicko-contact-form textarea:focus,
#clicko-contact-form select:focus {
  border-color: rgba(255,45,120,0.50) !important;
  box-shadow: 0 0 0 3px rgba(255,45,120,0.12), 0 0 16px rgba(255,45,120,0.10) !important;
  outline: none;
}

/* ── CONTACT PAGE: richer section background ── */
.contact-intro,
.contact-page-section {
  background:
    radial-gradient(ellipse 70% 100% at 30% 50%, rgba(255,45,120,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 100% at 70% 50%, rgba(124,58,237,0.07) 0%, transparent 65%),
    transparent;
}

/* ── FAQ: hover highlight ── */
.faq-question:hover {
  color: var(--white) !important;
  background: rgba(255,45,120,0.04);
  border-radius: 8px;
}
.faq-icon {
  color: var(--pink) !important;
}
.faq-question.open .faq-icon {
  color: var(--violet) !important;
}

/* ── CARD BORDER SHIMMER on hover ── */
.pricing-card,
.service-card,
.testimonial-card,
.process-card {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover:not(.featured) {
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 8px 40px rgba(124,58,237,0.10);
}

/* ── GRADIENT TEXT HELPER ── */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
