/* GrowFlow - Main Stylesheet */
/* Digital Marketing Agency */


  :root {
    --gold: #F5C100;
    --gold-light: #FFD740;
    --gold-dark: #C9A200;
    --black: #080808;
    --black2: #0F0F0F;
    --black3: #151515;
    --white: #FFFFFF;
    --white-muted: rgba(255,255,255,0.55);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(245,193,0,0.18);
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

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

  /* ── UTILITY ── */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
  .gold { color: var(--gold); }
  .gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all .4s ease;
  }
  nav.scrolled {
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245,193,0,0.1);
    padding: 14px 0;
  }
  nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
  }
  .nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em;
  }
  .nav-logo-text span { color: var(--gold); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: color .25s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,193,0,.4);
  }
  .btn-primary:hover::before { opacity: 1; }

  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 12px 26px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
  }
  .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 32px rgba(245,193,0,.35);
  }

  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    transition: color .25s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 2rem;
    color: var(--white-muted);
    cursor: pointer;
    background: none; border: none;
    transition: color .25s;
  }
  .mobile-close:hover { color: var(--gold); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(245,193,0,.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,193,0,.05) 0%, transparent 60%);
  }
  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(245,193,0,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,193,0,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,193,0,.12) 0%, transparent 70%);
    right: -100px; top: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }
  .hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,193,0,.08) 0%, transparent 70%);
    left: 5%; bottom: 10%;
    animation: orbFloat 12s ease-in-out infinite reverse;
  }
  @keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px,-30px) scale(1.05); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,193,0,.1);
    border: 1px solid rgba(245,193,0,.25);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    animation: fadeUp .8s ease both;
  }
  .hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.4); }
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 24px;
    animation: fadeUp .8s .15s ease both;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeUp .8s .3s ease both;
  }
  .hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp .8s .45s ease both;
  }
  .hero-stats-row {
    display: flex;
    gap: 32px;
    animation: fadeUp .8s .6s ease both;
  }
  .hero-stat {
    display: flex;
    flex-direction: column;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -.02em;
  }
  .hero-stat-label {
    font-size: .75rem;
    color: var(--white-muted);
    font-weight: 500;
  }
  .hero-divider {
    width: 1px;
    background: rgba(255,255,255,.1);
    align-self: stretch;
  }

  /* Floating social icons */
  .hero-floating {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
  }
  .float-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    font-size: 1.4rem;
    animation: floatIcon 3s ease-in-out infinite;
    transition: all .3s;
    cursor: default;
  }
  .float-icon:nth-child(2) { animation-delay: .5s; }
  .float-icon:nth-child(3) { animation-delay: 1s; }
  .float-icon:nth-child(4) { animation-delay: 1.5s; }
  .float-icon:nth-child(5) { animation-delay: 2s; }
  .float-icon:hover {
    background: rgba(245,193,0,.12);
    border-color: var(--gold);
    transform: scale(1.1) !important;
  }
  @keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeUp 1s 1s ease both;
  }
  .scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(245,193,0,.4);
    border-radius: 11px;
    position: relative;
  }
  .scroll-mouse::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2s ease infinite;
  }
  @keyframes scrollDot {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
  }
  .scroll-text {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white-muted);
    font-weight: 600;
  }

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

  /* ── SECTION COMMONS ── */
  section { padding: 100px 0; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .section-label::before {
    content: '';
    width: 20px; height: 1.5px;
    background: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin-bottom: 18px;
  }
  .section-body {
    color: var(--white-muted);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.75;
  }

  /* reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* ── STATS ── */
  #stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }
  #stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,193,0,.04) 0%, transparent 50%, rgba(245,193,0,.03) 100%);
    border-top: 1px solid rgba(245,193,0,.1);
    border-bottom: 1px solid rgba(245,193,0,.1);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(245,193,0,.08);
  }
  .stat-card {
    background: var(--black);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .3s;
  }
  .stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245,193,0,.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity .4s;
  }
  .stat-card:hover::before { opacity: 1; }
  .stat-card:hover { background: var(--black2); }
  .stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 8px;
  }
  .stat-num span { color: var(--gold-light); }
  .stat-label {
    font-size: .875rem;
    color: var(--white-muted);
    font-weight: 500;
  }

  /* ── ABOUT ── */
  #about { background: var(--black2); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-main-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
  }
  .about-main-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,193,0,.12) 0%, transparent 70%);
  }
  .about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .about-icon-box {
    background: rgba(245,193,0,.06);
    border: 1px solid rgba(245,193,0,.12);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all .3s;
  }
  .about-icon-box:hover {
    background: rgba(245,193,0,.1);
    border-color: rgba(245,193,0,.3);
    transform: translateY(-4px);
  }
  .about-icon-emoji { font-size: 1.8rem; margin-bottom: 8px; }
  .about-icon-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--white-muted);
    letter-spacing: .04em;
  }
  .about-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .about-badge {
    background: var(--gold);
    color: var(--black);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .75rem;
    font-weight: 700;
  }
  .about-float-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 16px;
    padding: 20px 24px;
    color: var(--black);
  }
  .about-float-card-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
  }
  .about-float-card-label {
    font-size: .75rem;
    font-weight: 600;
    opacity: .7;
  }

  /* ── SERVICES ── */
  #services { background: var(--black); }
  .services-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .services-header .section-label {
    justify-content: center;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245,193,0,.07);
  }
  .service-card {
    background: var(--black);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 110%, rgba(245,193,0,.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
  }
  .service-card:hover { background: var(--black2); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover::after { opacity: 1; }
  .service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
  .service-num {
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: rgba(245,193,0,.3);
    margin-bottom: 20px;
  }
  .service-icon {
    width: 52px; height: 52px;
    background: rgba(245,193,0,.08);
    border: 1px solid rgba(245,193,0,.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform .3s ease;
    position: relative;
    z-index: 1;
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: -.01em;
  }
  .service-desc {
    font-size: .875rem;
    color: var(--white-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
  }

  /* ── WHY ── */
  #why { background: var(--black2); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .why-list { display: flex; flex-direction: column; gap: 20px; }
  .why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all .3s ease;
  }
  .why-item:hover {
    background: rgba(245,193,0,.05);
    border-color: rgba(245,193,0,.3);
    transform: translateX(8px);
  }
  .why-item-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    background: rgba(245,193,0,.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .why-item-content h4 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.01em;
  }
  .why-item-content p {
    font-size: .82rem;
    color: var(--white-muted);
    line-height: 1.6;
  }
  .why-visual {
    position: relative;
  }
  .why-big-card {
    background: linear-gradient(135deg, rgba(245,193,0,.06) 0%, rgba(245,193,0,.02) 100%);
    border: 1px solid rgba(245,193,0,.15);
    border-radius: 28px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .why-big-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(245,193,0,.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .why-big-num {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -.06em;
    line-height: 1;
    margin-bottom: 8px;
    opacity: .15;
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
  }
  .why-big-emoji { font-size: 4rem; margin-bottom: 20px; position: relative; z-index: 1; }
  .why-big-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative; z-index: 1;
    letter-spacing: -.02em;
  }
  .why-big-desc {
    color: var(--white-muted);
    font-size: .9rem;
    line-height: 1.7;
    position: relative; z-index: 1;
  }

  /* ── HOW WE WORK ── */
  #process { background: var(--black); }
  .process-header { text-align: center; margin-bottom: 80px; }
  .process-header .section-label { justify-content: center; }
  .process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 40px; left: 40px; right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,193,0,.3) 20%, rgba(245,193,0,.3) 80%, transparent);
  }
  .process-step {
    text-align: center;
    position: relative;
    padding-top: 20px;
  }
  .process-step-num {
    width: 64px; height: 64px;
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: all .3s ease;
  }
  .process-step:hover .process-step-num {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(245,193,0,.4);
  }
  .process-step-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  .process-step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.01em;
  }
  .process-step-desc {
    font-size: .83rem;
    color: var(--white-muted);
    line-height: 1.65;
  }
  .process-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    transition: all .35s ease;
  }
  .process-card:hover {
    background: rgba(245,193,0,.04);
    border-color: rgba(245,193,0,.25);
    transform: translateY(-8px);
  }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--black2); }
  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-header .section-label { justify-content: center; }
  .testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
  }
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: rgba(245,193,0,.08);
    font-weight: 800;
  }
  .testimonial-card:hover {
    border-color: rgba(245,193,0,.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,.4);
  }
  .testimonial-stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .testimonial-text {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 800;
    color: var(--black);
    border: 2px solid rgba(245,193,0,.3);
  }
  .testimonial-name {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: -.01em;
  }
  .testimonial-role {
    font-size: .75rem;
    color: var(--white-muted);
    font-weight: 500;
  }

  /* trust bar */
  .trust-bar {
    margin-top: 56px;
    padding: 24px 0;
    border-top: 1px solid rgba(245,193,0,.1);
    border-bottom: 1px solid rgba(245,193,0,.1);
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--white-muted);
    font-weight: 500;
  }
  .trust-icon { color: var(--gold); font-size: 1.1rem; }

  /* ── CTA ── */
  #cta {
    background: var(--black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  #cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,193,0,.07) 0%, transparent 70%);
  }
  .cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 200px;
    background: var(--gold);
    filter: blur(120px);
    opacity: .04;
    border-radius: 50%;
  }
  .cta-content { position: relative; z-index: 1; }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    max-width: 700px;
    margin: 0 auto 20px;
  }
  .cta-sub {
    color: var(--white-muted);
    margin: 0 auto 40px;
    max-width: 500px;
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .btn-cta {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
    letter-spacing: .01em;
    box-shadow: 0 0 0 0 rgba(245,193,0,0);
  }
  .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(245,193,0,.45), 0 0 0 8px rgba(245,193,0,.08);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black2);
    border-top: 1px solid rgba(245,193,0,.1);
    padding: 72px 0 36px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .footer-brand { display: flex; flex-direction: column; gap: 16px; }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 4px;
  }
  .footer-logo-icon {
    width: 36px; height: 36px;
    background: var(--gold);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--black);
  }
  .footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
  }
  .footer-logo-text span { color: var(--gold); }
  .footer-tagline {
    font-size: .875rem;
    color: var(--white-muted);
    line-height: 1.65;
    max-width: 280px;
  }
  .footer-social {
    display: flex;
    gap: 12px;
  }
  .social-btn {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(245,193,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    color: var(--white-muted);
    background: var(--glass);
    transition: all .3s;
  }
  .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245,193,0,.08);
    transform: translateY(-3px);
  }
  .footer-col-title {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
  }
  .footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: .875rem;
    transition: color .25s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-contact { display: flex; flex-direction: column; gap: 14px; }
  .footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .82rem;
    color: var(--white-muted);
    line-height: 1.5;
  }
  .footer-contact-icon {
    color: var(--gold);
    font-size: 1rem;
    min-width: 18px;
    margin-top: 1px;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.3);
  }
  .footer-copy span { color: var(--gold); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-floating { display: none; }
    .process-timeline { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-bar { gap: 24px; }
    section { padding: 72px 0; }
  }
  @media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats-row { gap: 20px; }
    .hero-cta-group { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
  }
