*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --pink: #e01e70;
    --pink-light: #f55fa0;
    --pink-pale: #fce8f3;
    --pink-xpale: #fff5fa;
    --pink-dark: #a0144f;
    --ink: #1a0a12;
    --body-text: #4a3040;
    --muted: #8a6878;
    --white: #ffffff;
    --off-white: #fdf8fb;
    --light-gray: #f7f0f4;
    --border: rgba(224,30,112,0.18);
    --border-soft: rgba(224,30,112,0.1);
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--body-text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 6%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s, box-shadow 0.3s;
    box-shadow: 0 1px 24px rgba(224,30,112,0.06);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem; font-weight: 900;
    color: var(--ink); letter-spacing: -0.5px;
  }
  .logo img {max-height: 65px; }
  .logo span { color: var(--pink); }
  .nav-links { display: flex; gap: 3.5rem; list-style: none; }
  .nav-links a {
    color: var(--body-text); text-decoration: none;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--pink); }
  .nav-cta {
    background: var(--pink); color: #fff;
    padding: 0.65rem 1.5rem; border-radius: 3px;
    font-weight: 600; font-size: 0.83rem;
    text-decoration: none; letter-spacing: 0.5px;
    text-transform: uppercase; transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,30,112,0.3); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #fff 0%, var(--pink-xpale) 50%, #fff8fc 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 8rem 6% 5rem;
    position: relative; overflow: hidden;
  }
  .hero-blob1 {
    position: absolute; top: -10%; right: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(224,30,112,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-blob2 {
    position: absolute; bottom: -5%; left: -8%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(224,30,112,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(224,30,112,0.12) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--pink-pale); border: 1px solid rgba(224,30,112,0.3);
    color: var(--pink-dark); padding: 0.45rem 1.2rem;
    border-radius: 100px; font-size: 0.78rem;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 2rem; position: relative;
    animation: fadeUp 0.8s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink); animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
  .content-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-columns: 2fr 1fr;
      gap: 1.5rem;
  }
  .hero-content {
    text-align: left;
    align-content: center;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 900; color: var(--ink);
    line-height: 1.07; max-width: 900px;
    margin: 0 0 1.5rem; position: relative;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em { font-style: italic; color: var(--pink); }

  .hero-sub {
    font-size: 1.1rem; color: var(--body-text);
    opacity: 0.75; max-width: 560px;
    line-height: 1.75; margin: 0 0 3rem;
    position: relative; animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; 
    /* justify-content: center; */
    position: relative; animation: fadeUp 0.8s 0.45s ease both;
  }
  .btn-primary {
    background: var(--pink); color: #fff;
    padding: 1rem 2.4rem; border-radius: 3px;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none; letter-spacing: 0.5px;
    text-transform: uppercase; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(224,30,112,0.35); }
  .btn-outline {
    background: transparent; color: var(--pink);
    padding: 1rem 2.4rem; border-radius: 3px;
    border: 1.5px solid var(--pink);
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: 0.5px; transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--pink-pale); }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 5rem;
    position: relative; animation: fadeUp 0.8s 0.6s ease both;
    flex-wrap: wrap; 
    /* justify-content: center; */
  }
  .stat { text-align: center; }
  .usd {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700;
    color: var(--pink); line-height: 1;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700;
    color: var(--pink); line-height: 1;
  }
  .stat-label {
    font-size: 0.76rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem;
  }
  .stat-divider { width: 1px; background: var(--border); align-self: stretch; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
  .form-card h3 span { color: var(--pink); }
  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--pink);
    padding: 1.2rem 0; overflow: hidden; display: flex;
  }
  .marquee-track {
    display: flex; white-space: nowrap;
    animation: marquee 30s linear infinite; gap: 0;
  }
  .marquee-item {
    padding: 0 2rem; font-size: 1.2rem;
    font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #fff;
    display: flex; align-items: center; gap: 1rem;
  }
  .marquee-item::before { content: '◆'; font-size: 0.45rem; }
  @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* ── SECTION BASE ── */
  section { padding: 6rem 6%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.73rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--pink); margin-bottom: 1rem;
  }
  .section-label::before {
    content: ''; width: 24px; height: 2px; background: var(--pink);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.15;
    color: var(--ink); margin-bottom: 1.2rem;
  }
  .section-title em { font-style: italic; color: var(--pink); }
  .section-desc {
    font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 560px;
  }

  /* ── CLIENTS ── */
  #clients {
    background: var(--white); padding: 3.5rem 6%;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    text-align: center;
  }
  .clients-label {
    font-size: 0.73rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted); margin-bottom: 2.5rem;
  }
  .clients-row {
    display: flex; flex-wrap: wrap; gap: 0;
    justify-content: center; align-items: center;
  }
  .client-pill {
    padding: 0.65rem 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.05rem;
    color: rgba(26,10,18,0.2);
    border-right: 1px solid var(--border-soft);
    transition: color 0.3s; cursor: default;
  }
  .client-pill img {
    width: 120px;
  }
  .client-pill:last-child { border-right: none; }
  .client-pill:hover { color: var(--pink); }

  /* ── SERVICES ── */
  #services { background: var(--light-gray); }
  .services-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end; margin-bottom: 4rem;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
    /* background: var(--border); */
  }
  .service-card {
    background: var(--white);
    cursor: pointer; transition: background 0.3s;
    border-radius: 20px;
    overflow: hidden;
  }
  .service-caption {
    padding: 2.2rem 1.8rem;
  }
  .service-card:hover { background: var(--pink-xpale); }
  .service-card:hover .service-img { transform: scale(1.05); }
  .service-card:hover .service-arrow { transform: translateX(4px); opacity: 1; }

  .service-img-wrap {
    width: 100%; height: 300px; overflow: hidden;
    border-radius: 3px;
    background: var(--pink-pale);
  }
  .service-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .service-num {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2px; color: var(--pink);
    text-transform: uppercase; margin-bottom: 0.65rem; display: none;
  }
  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--pink); margin-bottom: 1.2rem; line-height: 1.2;
  }
  .service-desc {
    font-size: 0.86rem; color: var(--muted);
    line-height: 1.65; margin-bottom: 1.1rem;
  }
  ul.service-tags {
    list-style-type: none;
  }

  ul.service-tags li {
      background: var(--pink-pale);
      border: 1px solid rgba(224, 30, 112, 0.3);
      color: var(--pink-dark);
      padding: 0.3rem 1rem;
      border-radius: 100px;
      font-size: 0.9rem;
      display: inline-block;
      margin: 0 5px 10px 0;
  }
  .service-arrow {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--pink); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    opacity: 0.55; transition: all 0.2s;
    display: none;
  }

  /* ── WHY CHOOSE US ── */
  #why { background: var(--white); }
  .why-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-bottom: 4rem;
  }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .why-card {
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    border-radius: 4px; padding: 2rem 1.8rem;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--pink);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .why-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 16px 40px rgba(224,30,112,0.1); 
    border-color: rgba(224,30,112,0.25); 
    scale: 1.03;
    transition: all .2s;
  }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon {
    width: 50px; height: 50px; background: var(--pink-pale); color: var(--pink-dark);
    border-radius: 4px; display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 1.3rem; font-size: 1.6rem;
  }
  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--ink); margin-bottom: 0.65rem;
  }
  .why-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

  /* ── PROCESS ── */
  #process { background: var(--pink-xpale); }
  .process-head { text-align: center; margin-bottom: 4rem; }
  .process-head .section-label { justify-content: center; }
  .process-head .section-desc { margin: 0 auto; text-align: center; }
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute;
    top: 32px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--pink-light) 50%, var(--pink) 100%);
    z-index: 0;
  }
  .process-step {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 0 0.75rem; position: relative; z-index: 1;
  }
  .step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(224, 30, 112, 0.15);
}
  .process-step:hover .step-circle { background: var(--pink); color: #fff; box-shadow: 0 8px 24px rgba(224,30,112,0.3); }
  .step-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 0.5rem; }
  .step-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--white); }
  .testi-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end; margin-bottom: 4rem;
  }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .testi-card {
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    border-radius: 4px; padding: 2rem;
    display: flex; flex-direction: column; gap: 1.2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .testi-card:hover { border-color: rgba(224,30,112,0.3); box-shadow: 0 8px 32px rgba(224,30,112,0.08); }
  .testi-stars { color: var(--pink); font-size: 1.8rem; letter-spacing: 2px; }
  .testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    color: var(--ink); line-height: 1.7; flex: 1; opacity: 0.85;
  }
  .testi-author {
    display: flex; align-items: center; gap: 0.9rem;
    border-top: 1px solid var(--border-soft); padding-top: 1rem;
  }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
  }
  .testi-name { font-weight: 600; font-size: 1rem; color: var(--ink); }
  .testi-role { font-size: 0.76rem; color: var(--muted); }

  /* ── AUDIT CTA ── */
  #audit {
    background: linear-gradient(135deg, var(--pink) 0%, #c01060 50%, #a80f55 100%);
    position: relative; overflow: hidden; padding: 7rem 6%;
  }
  #audit::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  #audit::after {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.05); pointer-events: none;
  }
  .audit-inner {
    position: relative; z-index: 1;
    max-width: 800px; margin: 0 auto; text-align: center;
  }
  .audit-badge {
    display: inline-block; background: rgba(255,255,255,0.2);
    color: #fff; font-size: 0.72rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0.45rem 1.3rem; border-radius: 100px; margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
  }
  .audit-value {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    padding: 0.35rem 1rem; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
  }
  .audit-value s { opacity: 0.6; font-size: 0.8rem; }
  .audit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900; color: #fff;
    line-height: 1.1; margin-bottom: 1.2rem;
  }
  .audit-title em { font-style: italic; color: rgba(255,220,236,0.95); }
  .audit-desc {
    font-size: 1rem; color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 3rem;
  }
  .audit-form {
    display: flex; gap: 0; max-width: 520px; margin: 0 auto 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.35); border-radius: 4px; overflow: hidden;
  }
  .audit-input {
    flex: 1; padding: 1rem 1.4rem;
    background: rgba(255,255,255,0.12);
    border: none; color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none;
  }
  .audit-input::placeholder { color: rgba(255,255,255,0.5); }
  .audit-submit {
    background: #fff; color: var(--pink); border: none;
    padding: 1rem 1.8rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: 0.86rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    cursor: pointer; transition: background 0.2s; white-space: nowrap;
  }
  .audit-submit:hover { background: var(--pink-pale); }
  .audit-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
  .audit-perks {
    display: flex; gap: 2rem; justify-content: center;
    margin-top: 2.5rem; flex-wrap: wrap;
  }
  .audit-perk {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.65);
  }
  .audit-perk-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.7); flex-shrink: 0;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink); padding: 4rem 6% 2rem;
    border-top: 3px solid var(--pink);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-brand .logo { font-size: 1.7rem; display: block; margin-bottom: 1rem; color: #fff; 
    filter: brightness(0) invert(1);}
  .footer-brand .logo span { color: var(--pink); }
  .footer-tagline {
    font-size: 0.87rem; color: rgba(255,255,255,0.4);
    line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem;
  }
  .social-links { display: flex; gap: 0.75rem; }
  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45); text-decoration: none;
    font-size: 0.8rem; font-weight: 700; transition: all 0.2s;
  }
  .social-link:hover { border-color: var(--pink); color: var(--pink); }
  .footer-col h4 {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--pink); margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul a {
    color: rgba(255,255,255,0.4); text-decoration: none;
    font-size: 0.87rem; transition: color 0.2s;
  }
  .footer-col ul a:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem; display: flex;
    justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    justify-content: center;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a {
    font-size: 0.78rem; color: rgba(255,255,255,0.2);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(26,10,18,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .modal-overlay.active { opacity: 1; pointer-events: all; }
  .modal {
    background: #fff; border-radius: 6px;
    border: 1px solid var(--border);
    padding: 3rem; max-width: 440px; width: 90%;
    text-align: center; transform: translateY(20px); transition: transform 0.3s;
    box-shadow: 0 32px 80px rgba(224,30,112,0.15);
  }
  .modal-overlay.active .modal { transform: translateY(0); }
  .modal-icon { font-size: 3rem; margin-bottom: 1rem; }
  .modal h3 { font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--ink); margin-bottom:.75rem; }
  .modal p { color:var(--muted); font-size:.95rem; line-height:1.6; margin-bottom:1.5rem; }
  .modal strong { color: var(--pink); }
  .modal-close {
    background: var(--pink); color: #fff; border: none;
    padding: 0.75rem 2rem; font-family:'DM Sans',sans-serif;
    font-weight:700; font-size:.88rem; text-transform:uppercase;
    letter-spacing:.5px; cursor:pointer; border-radius:3px; transition:background .2s;
  }
  .modal-close:hover { background: var(--pink-dark); }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
  .reveal.visible { opacity:1; transform:none; }

  /* ── RESPONSIVE ── */
  @media(max-width:900px){
    .nav-links{display:none}
    .services-intro,.why-intro,.testi-intro{grid-template-columns:1fr;gap:2rem}
    .services-grid{grid-template-columns:1fr 1fr}
    .why-grid{grid-template-columns:1fr 1fr}
    .testi-grid{grid-template-columns:1fr}
    .process-steps{grid-template-columns:1fr 1fr;gap:2rem}
    .process-steps::before{display:none}
    .footer-top{grid-template-columns:1fr 1fr}
  }
  @media(max-width:600px){
    .services-grid,.why-grid,.process-steps{grid-template-columns:1fr}
    .footer-top{grid-template-columns:1fr}
    .hero-stats{gap:1.5rem; justify-content: center; margin: 2.5rem 0;}
    .stat-divider{display:none}
    .audit-form{flex-direction:column}
    .clients-row{flex-wrap:wrap}
    .client-pill{border-right:none; padding: 1.65rem 1.2rem;}
  }


  .form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    width: 100%;
    box-shadow: var(--shadow-lg);
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
    position: relative; overflow: hidden;
  }
  .form-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--green), var(--green3), var(--gold2));
  }
  .text-center {
    text-align: center;
  }
  .form-inner {
      display: grid;
      /* grid-template-columns: repeat(5, 1fr); */
      gap: 1.5rem;
  }
  .form-badge {
    display: inline-block;
    background: var(--gold-xs); border: 1px solid #E8C84A;
    color: var(--gold); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.32rem 0.85rem; border-radius: 50px;
    margin-bottom: 1.1rem;
  }

  .form-card {
    text-align: center;
  }
  .form-inner {
    text-align: left;
  }
  .form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem; font-weight: 700;
    color: var(--text); line-height: 1.25; margin-bottom: 0.4rem;
  }
  .form-card p {
    font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem;
    line-height: 1.6; font-weight: 300;
  }

  .fgroup { margin-bottom: 0.85rem; }
  .fgroup label {
    display: block; font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text2); margin-bottom: 0.35rem;
  }
  .fgroup input,
  .fgroup select {
    width: 100%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem; color: var(--text);
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  }
  .fgroup input:focus, .fgroup select:focus {
    border-color: var(--green3);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.12);
    background: var(--white);
  }
  .fgroup input::placeholder { color: var(--faint); }
  .fgroup select option { background: var(--white); color: var(--text); }

  .form-card button.btn-primary {
    border: 0;
    margin-top: 20px;
    justify-content: center;
  }

  .form-note {
    font-size: 0.72rem; color: var(--faint); text-align: center;
    margin-top: 0.75rem; line-height: 1.5;
  }

  @media (max-width: 768px){
    .logo img {
      max-height: 50px;
    }
    .content-form{
        grid-template-columns: 1fr;
    }
    .hero-content {
      text-align: center;
    }
    .hero-actions {
      justify-content: center;
    }
    .process-steps{
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .process-step:last-child{
        grid-column: 1 / -1;
        justify-self: center;
    }
    .client-pill img {
        width: 130px;
    }
}
.error{
    color:#dc3545;
    font-size:12px;
    margin-top:5px;
    font-weight:500;
}

.fgroup input.error-field{
    border-color:#dc3545;
}
