  :root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #161616;
    --gold: #c9a84c;
    --gold2: #e8c96e;
    --gold-glow: rgba(201,168,76,0.18);
    --blue: #4f8ef7;
    --white: #f5f5f5;
    --muted: #888;
    --border: rgba(201,168,76,0.15);
    --card: rgba(255,255,255,0.03);
    --radius: 16px;
    --max: 1200px;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* NOISE TEXTURE 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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  section, nav, footer { position: relative; z-index: 1; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }

  nav.scrolled { padding: 14px 40px; }

  .nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition);
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  .nav-cta:hover {
    background: var(--gold2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
  }
  .orb1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: -200px; left: 50%;
    transform: translateX(-50%);
    animation: pulse 6s ease-in-out infinite;
  }
  .orb2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(79,142,247,0.08) 0%, transparent 70%);
    bottom: 0; right: -100px;
    animation: pulse 8s ease-in-out infinite reverse;
  }

  @keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.7; }
  }
  .orb2 { animation: pulse2 8s ease-in-out infinite reverse; }
  @keyframes pulse2 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.08); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.7s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero-title {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    max-width: 860px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-sub strong { color: var(--white); font-weight: 600; }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.3px;
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(201,168,76,0.45);
  }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 15px 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.07);
    transform: translateY(-3px);
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .hero-stat {
    text-align: center;
  }
  .hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -1px;
  }
  .hero-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    align-self: center;
  }

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

  /* ─── CUSTOM CURSOR ─── */
  .cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    pointer-events: none;
    z-index: 9999;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(201,168,76,0.7);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s cubic-bezier(0.23,1,0.32,1),
                height 0.3s cubic-bezier(0.23,1,0.32,1),
                border-color 0.3s;
  }
  body.cursor-hover .cursor-ring {
    width: 56px; height: 56px;
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
  }

  /* ─── SCROLL PROGRESS BAR ─── */
  #scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold2), #fff);
    z-index: 1001;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
  }

  /* ─── PARTICLE CANVAS ─── */
  #particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
  }

  /* ─── HERO TYPEWRITER ─── */
  .typewriter-wrap {
    display: inline;
  }
  .typewriter-text {
    color: var(--gold);
    border-right: 3px solid var(--gold);
    padding-right: 4px;
    animation: cursorBlink 0.8s step-end infinite;
    display: inline;
  }
  @keyframes cursorBlink {
    0%,100% { border-color: var(--gold); }
    50% { border-color: transparent; }
  }

  /* ─── TEXT SCRAMBLE ─── */
  .scramble { display: inline; }

  /* ─── MAGNETIC BUTTON ─── */
  .magnetic-wrap {
    display: inline-block;
    position: relative;
  }

  /* ─── SHIMMER EFFECT ─── */
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  .shimmer-text {
    background: linear-gradient(90deg,
      var(--gold) 0%,
      var(--gold2) 25%,
      #fff 50%,
      var(--gold2) 75%,
      var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3.5s linear infinite;
  }

  /* ─── TILT CARD ─── */
  .tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    will-change: transform;
  }
  .tilt-card .tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%),
      rgba(201,168,76,0.12) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .tilt-card:hover .tilt-shine { opacity: 1; }

  /* ─── SPLIT TEXT REVEAL ─── */
  .split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
  }
  .split-word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .split-word-inner.visible { transform: translateY(0); }

  /* ─── COUNTING BARS (results) ─── */
  .result-bar-wrap {
    margin-top: 14px;
    height: 3px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
  }
  .result-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 2px;
    transition: width 1.8s cubic-bezier(0.16,1,0.3,1);
  }

  /* ─── FLOATING SHAPES ─── */
  .float-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.04;
    animation: floatShape 12s ease-in-out infinite;
  }
  @keyframes floatShape {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-24px) rotate(8deg); }
    66% { transform: translateY(12px) rotate(-5deg); }
  }

  /* ─── GLOW BUTTON PULSE ─── */
  @keyframes glowPulse {
    0%,100% { box-shadow: 0 0 24px rgba(201,168,76,0.3); }
    50% { box-shadow: 0 0 48px rgba(201,168,76,0.6), 0 0 80px rgba(201,168,76,0.2); }
  }
  .glow-btn { animation: glowPulse 2.4s ease-in-out infinite; }

  /* ─── MARQUEE TICKER ─── */
  .marquee-section {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    background: var(--bg2);
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .marquee-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
  }

  /* ─── STAGGER REVEAL DELAY ─── */
  .reveal-d1 { transition-delay: 0.05s !important; }
  .reveal-d2 { transition-delay: 0.12s !important; }
  .reveal-d3 { transition-delay: 0.19s !important; }
  .reveal-d4 { transition-delay: 0.26s !important; }

  /* ─── SECTION TRANSITION LINE ─── */
  .section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    opacity: 0.3;
  }
  .section-divider-line { flex: 1; height: 1px; background: var(--gold); }
  .section-divider-diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  /* ─── SHARED ─── */
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .section-label::before, .section-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 28px;
    background: var(--gold);
    opacity: 0.6;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .section-title span { color: var(--gold); }

  .section-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 520px;
  }

  /* ─── ABOUT ─── */
  #about {
    padding: 120px 24px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
    font-size: 0.85rem;
    overflow: hidden;
    position: relative;
  }

  .about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  }

  .about-avatar-icon {
    width: 80px;
    height: 80px;
    background: rgba(201,168,76,0.1);
    border: 2px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-img-badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    min-width: 130px;
  }
  .about-img-badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -1px;
  }
  .about-img-badge-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.3px;
  }

  .about-content .section-sub {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .about-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .about-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
  }
  .about-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .about-check svg { width:12px; height:12px; }

  /* ─── RESULTS ─── */
  #results {
    padding: 120px 24px;
  }

  .results-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .results-header .section-sub { margin: 0 auto; }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: var(--max);
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .result-card {
    background: var(--bg2);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
  }
  .result-card:hover { background: var(--bg3); }
  .result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .result-card:hover::before { opacity: 1; }

  .result-num {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
  }

  .result-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .result-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ─── SERVICES ─── */
  #services {
    padding: 120px 24px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .services-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .services-header .section-sub { margin: 0 auto; }

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

  .service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: default;
  }
  .service-card:hover {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.04);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.12);
  }

  /* ghost number watermark */
  .service-card-bg-num {
    position: absolute;
    bottom: -10px;
    right: 16px;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(201,168,76,0.04);
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    transition: color var(--transition), transform var(--transition);
    user-select: none;
  }
  .service-card:hover .service-card-bg-num {
    color: rgba(201,168,76,0.08);
    transform: scale(1.05);
  }

  .service-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  .service-card:hover .service-icon {
    background: rgba(201,168,76,0.2);
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 24px rgba(201,168,76,0.2);
  }
  .service-icon svg { width:24px; height:24px; }

  .service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    transition: color var(--transition);
  }
  .service-card:hover .service-title { color: var(--gold); }

  .service-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
  }

  /* bullet feature list inside card */
  .service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
  }
  .service-features span {
    font-size: 0.78rem;
    color: rgba(201,168,76,0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .service-card:hover .service-features span { opacity: 1; transform: translateX(0); }
  .service-card:hover .service-features span:nth-child(2) { transition-delay: 0.06s; }
  .service-card:hover .service-features span:nth-child(3) { transition-delay: 0.12s; }

  .service-tag {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.2);
    transition: background var(--transition), border-color var(--transition);
  }
  .service-card:hover .service-tag {
    background: rgba(201,168,76,0.18);
    border-color: rgba(201,168,76,0.4);
  }

  /* animated arrow */
  .service-arrow {
    position: absolute;
    top: 32px; right: 28px;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .service-card:hover .service-arrow { opacity: 1; transform: translate(0, 0); }

  /* ─── PROCESS (redesigned) ─── */
  #process {
    padding: 120px 24px;
  }

  .process-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .process-header .section-sub { margin: 0 auto; }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
  }

  .process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .process-step.step-visible { opacity: 1; transform: translateY(0); }

  /* horizontal connector line between steps */
  .step-connector-line {
    position: absolute;
    top: 42px;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,0.4), rgba(201,168,76,0.1));
    z-index: -1;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.16,1,0.3,1);
  }
  .process-step.step-visible .step-connector-line { transform: scaleX(1); }

  .step-num-wrap {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  }
  .process-step:hover .step-num-wrap {
    border-color: var(--gold);
    background: rgba(201,168,76,0.07);
    box-shadow: 0 0 0 8px rgba(201,168,76,0.07), 0 0 40px rgba(201,168,76,0.2);
    transform: scale(1.08);
  }

  /* pulsing outer ring on hover */
  .step-ring-outer {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0);
    transition: border-color 0.4s ease, inset 0.4s ease;
  }
  .process-step:hover .step-ring-outer {
    border-color: rgba(201,168,76,0.2);
    inset: -12px;
  }

  .step-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -1px;
    transition: transform 0.3s ease;
  }
  .process-step:hover .step-num { transform: scale(1.1); }

  /* content box below circle */
  .step-content-box {
    padding: 0 4px;
  }

  .step-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: background var(--transition), transform var(--transition);
  }
  .process-step:hover .step-icon-badge {
    background: rgba(201,168,76,0.16);
    transform: rotate(-6deg) scale(1.1);
  }

  .step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color var(--transition);
  }
  .process-step:hover .step-title { color: var(--gold); }

  .step-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .step-pill {
    display: inline-block;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    color: rgba(201,168,76,0.8);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .process-step:hover .step-pill { opacity: 1; transform: translateY(0); }

  /* ─── TESTIMONIALS ─── */
  #testimonials {
    padding: 120px 24px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .testi-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .testi-header .section-sub { margin: 0 auto; }

  /* Auto-scrolling marquee rows */
  .testi-track-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
  }
  .testi-track.row-left  { animation: scrollLeft  38s linear infinite; }
  .testi-track.row-right { animation: scrollRight 42s linear infinite; }
  .testi-track:hover { animation-play-state: paused; }

  @keyframes scrollLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

  .testi-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    width: 360px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
  }

  /* top gold accent line — slides in on hover */
  .testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  }
  .testi-card:hover::before { transform: scaleX(1); }

  /* subtle inner glow on hover */
  .testi-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-6px) scale(1.02);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);
  }

  /* large quote mark watermark */
  .testi-card::after {
    content: '\201C';
    position: absolute;
    top: 12px; right: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(201,168,76,0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.35s ease, transform 0.35s ease;
    font-family: Georgia, serif;
  }
  .testi-card:hover::after {
    color: rgba(201,168,76,0.11);
    transform: scale(1.1) rotate(-5deg);
  }

  .testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }
  .testi-stars span {
    color: var(--gold);
    font-size: 0.85rem;
    display: inline-block;
    transition: transform 0.2s ease;
  }
  .testi-card:hover .testi-stars span:nth-child(1) { transition-delay: 0.00s; transform: translateY(-3px); }
  .testi-card:hover .testi-stars span:nth-child(2) { transition-delay: 0.05s; transform: translateY(-3px); }
  .testi-card:hover .testi-stars span:nth-child(3) { transition-delay: 0.10s; transform: translateY(-3px); }
  .testi-card:hover .testi-stars span:nth-child(4) { transition-delay: 0.15s; transform: translateY(-3px); }
  .testi-card:hover .testi-stars span:nth-child(5) { transition-delay: 0.20s; transform: translateY(-3px); }

  .testi-quote {
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
    transition: color 0.35s ease;
    position: relative;
    z-index: 1;
  }
  .testi-card:hover .testi-quote { color: #ddd; }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
  }

  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), rgba(201,168,76,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .testi-card:hover .testi-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
  }

  .testi-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
  }

  .testi-role {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ─── CTA SECTION ─── */
  #cta {
    padding: 140px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
  }

  .cta-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .cta-title span { color: var(--gold); }

  .cta-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 20px;
  }
  .cta-guarantee svg { color: var(--gold); }

  /* ─── CONTACT ─── */
  #contact {
    padding: 120px 24px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: var(--max);
    margin: 0 auto;
    align-items: start;
  }

  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-icon svg { width: 18px; height: 18px; }

  .contact-info-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
  }
  .contact-info-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: 32px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }
  .whatsapp-btn:hover {
    background: #20b558;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.3);
  }

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

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.05);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  }
  .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
  }
  .form-group select option {
    background: #1a1a1a;
    color: var(--white);
  }

  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 16px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    letter-spacing: 0.3px;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    position: relative;
    overflow: hidden;
  }
  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201,168,76,0.4);
  }
  .form-submit:active { transform: translateY(0); }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
  }
  .footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .footer-logo span { color: var(--gold); }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--transition);
  }
  .footer-links a:hover { color: var(--gold); }

  .footer-copy {
    color: rgba(255,255,255,0.2);
    font-size: 0.78rem;
  }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── MOBILE NAV ─── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--transition);
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .process-step .step-connector-line { display: none; }
    .about-img-badge { right: 0; }
  }

  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero-title { letter-spacing: -1.5px; }
    .hero-stat-divider { display: none; }
    .hero-stats { gap: 28px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-badge { right: 16px; }

    .results-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .process-step .step-connector-line { display: none; }
    .service-card-bg-num { font-size: 5rem; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

    #hero, #about, #results, #services, #process, #testimonials, #cta, #contact { padding: 80px 20px; }
  }

  /* Form success state */
  .form-success {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #25D366;
    font-weight: 600;
    display: none;
  }
  .form-success.show { display: block; }

  /* Gold line decorator */
  .gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin: 20px 0;
  }
