  :root {
    --bg: #0A0C0F;
    --bg2: #111318;
    --bg3: #181C23;
    --accent: #E8FF47;
    --accent2: #47BFFF;
    --text: #F0EDE6;
    --muted: #7A7D85;
    --border: rgba(240,237,230,0.08);
    --danger: #FF4747;
    --success: #47FF8C;
    --card-bg: #13161C;
  }

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

  html { scroll-behavior: smooth; }

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

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

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

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

  .nav-logo span { color: var(--accent); }

  nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  nav a:hover { color: var(--text); }

  .nav-cta {
    background: var(--accent) !important;
    color: #0A0C0F !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.88; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 4rem 6rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(232,255,71,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,255,71,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, transparent 0%, black 70%);
  }

  .hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(71,191,255,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-glow2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,255,71,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,255,71,0.08);
    border: 1px solid rgba(232,255,71,0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    background: var(--accent);
    color: #0A0C0F;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

  .btn-secondary {
    background: transparent;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-secondary:hover {
    border-color: rgba(240,237,230,0.25);
    background: rgba(240,237,230,0.04);
  }

  /* HERO STATS */
  .hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  /* SECTION BASE */
  section {
    padding: 7rem 4rem;
    position: relative;
    z-index: 1;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-desc {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 4rem;
  }

  /* FAULT SECTION */
  .fault-bg { background: var(--bg2); }

  .fault-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .fault-codes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .fault-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--danger);
    padding: 0.85rem 1.25rem;
    border-radius: 0 2px 2px 0;
  }

  .fault-code-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--danger);
    min-width: 80px;
    letter-spacing: 0.04em;
  }

  .fault-code-desc {
    font-size: 0.85rem;
    color: var(--muted);
  }

  .symptoms-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .symptom {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2px;
  }

  .symptom-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(255,71,71,0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
  }

  .symptom-icon svg { width: 16px; height: 16px; stroke: var(--danger); fill: none; stroke-width: 2; }

  .symptom-title {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .symptom-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* CAUSE */
  .cause-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent2);
    padding: 2rem;
    border-radius: 0 0 2px 2px;
    margin-top: 2rem;
  }

  .cause-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 1rem;
  }

  .cause-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
  }

  /* MODELS */
  .models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .model-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.75rem;
    transition: border-color 0.25s, transform 0.2s;
    cursor: default;
  }

  .model-card:hover {
    border-color: rgba(232,255,71,0.3);
    transform: translateY(-3px);
  }

  .model-brand {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }

  .model-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .model-years {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
  }

  .model-parts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .part-tag {
    font-size: 0.68rem;
    font-family: monospace;
    background: rgba(71,191,255,0.08);
    border: 1px solid rgba(71,191,255,0.15);
    color: var(--accent2);
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
    letter-spacing: 0.02em;
  }

  .model-fault {
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
  }

  /* PROCESS */
  .process-bg { background: var(--bg2); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
  }

  .step-num {
    width: 44px;
    height: 44px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .process-step.active .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: #0A0C0F;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

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

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.2s;
  }

  .pricing-card:hover { transform: translateY(-4px); }

  .pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(232,255,71,0.04) 0%, var(--card-bg) 60%);
  }

  .featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0A0C0F;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 0 0 2px 2px;
  }

  .pricing-tier {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
  }

  .pricing-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .pricing-price {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 1.5rem 0 0.3rem;
  }

  .pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
    vertical-align: super;
    font-family: 'DM Sans', sans-serif;
  }

  .pricing-unit {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
  }

  .pricing-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%2347FF8C' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .btn-pricing {
    width: 100%;
    padding: 0.85rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
  }

  .btn-pricing:hover { border-color: rgba(240,237,230,0.3); background: rgba(240,237,230,0.05); }

  .btn-pricing.featured-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #0A0C0F;
  }

  .btn-pricing.featured-btn:hover { opacity: 0.88; }

  /* TESTIMONIALS */
  .testimonials-bg { background: var(--bg2); }

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

  .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2rem;
  }

  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
  }

  .star {
    width: 14px;
    height: 14px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
  }

  .author-name {
    font-size: 0.85rem;
    font-weight: 500;
  }

  .author-car {
    font-size: 0.75rem;
    color: var(--muted);
  }

  /* FAQ */
  .faq-list {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

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

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--accent); }

  .faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.2s;
    font-size: 0.8rem;
    color: var(--muted);
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(232,255,71,0.1);
    border-color: rgba(232,255,71,0.3);
    color: var(--accent);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    padding-bottom: 0;
    font-weight: 300;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
  }

  /* CTA */
  .cta-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
  }

  .cta-box {
    background: linear-gradient(135deg, rgba(232,255,71,0.06) 0%, rgba(71,191,255,0.04) 100%);
    border: 1px solid rgba(232,255,71,0.15);
    border-radius: 4px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  }

  .cta-box h2 { margin-bottom: 1rem; }

  .cta-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* CONTACT FORM */
  .contact-bg { background: var(--bg2); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .contact-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(71,191,255,0.08);
    border: 1px solid rgba(71,191,255,0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
  }

  .contact-item-icon svg { width: 16px; height: 16px; stroke: var(--accent2); fill: none; stroke-width: 2; }

  .contact-item-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
  }

  .contact-item-val {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(232,255,71,0.4);
  }

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

  .form-group select option { background: var(--bg); }

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

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    position: relative;
    z-index: 1;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--text); }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero { padding: 8rem 1.5rem 4rem; }
    section { padding: 5rem 1.5rem; }
    .fault-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 2rem; }
    .cta-box { padding: 2.5rem 1.5rem; }
    footer { padding: 2rem 1.5rem; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
  }

/* Cookie consent banner animation */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
