*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0D2137;
    --blue: #1A4E8A;
    --blue-light: #2E6DB4;
    --accent: #E85D04;
    --accent-light: #F7A034;
    --green: #1D7A54;
    --green-light: #E6F4EE;
    --gray-50: #F8F9FA;
    --gray-100: #F0F2F5;
    --gray-200: #E2E6EA;
    --gray-400: #8A9BAE;
    --gray-600: #4A5568;
    --gray-800: #1A202C;
    --white: #FFFFFF;
    --red: #C0392B;
    --red-light: #FEF2F2;
  }
  body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; }
  a { color: var(--blue); text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ── MARQUEE ── */
  .marquee-wrap { background: var(--navy); padding: 10px 0; overflow: hidden; }
  .marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll 30s linear infinite; }
  .marquee-track span { font-size: 13px; font-weight: 500; color: var(--accent-light); flex-shrink: 0; }
  .marquee-track span em { color: #fff; font-style: normal; }
  @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── NAV ── */
  .nav { background: var(--white); padding: 14px 5%; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { width: 280px; }
  .nav-logo span { font-size: 14px; font-weight: 600; color: var(--navy); }
  .nav-cta { background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: background 0.2s; }
  .nav-cta:hover { background: #C14900; color: #fff; }

  /* ── HERO ── */
  .hero { background: linear-gradient(135deg, var(--navy) 0%, #1A3A5C 60%, #1D5A8A 100%); color: #fff; padding: 70px 5% 60px; display: flex; gap: 130px; align-items: center; }
  .hero-left { flex: 1; max-width: 620px; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,93,4,0.15); border: 1px solid rgba(232,93,4,0.4); border-radius: 30px; padding: 6px 14px; margin-bottom: 20px; }
  .hero-badge span { font-size: 12px; font-weight: 600; color: var(--accent-light); letter-spacing: 0.04em; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: 46px; line-height: 1.2; margin-bottom: 16px; }
  .hero h1 em { color: var(--accent-light); font-style: normal; }
  .hero-sub { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 520px; }
  .hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
  .hero-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 6px 14px; font-size: 13px; color: rgba(255,255,255,0.9); }
  .hero-tag strong { color: var(--accent-light); }
  .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--accent); color: #fff; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; transition: background 0.2s, transform 0.1s; display: inline-block; }
  .btn-primary:hover { background: #C14900; color: #fff; transform: translateY(-1px); }
  .btn-secondary { background: rgba(255,255,255,0.1); color: #fff; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; border: 1.5px solid rgba(255,255,255,0.3); transition: background 0.2s; display: inline-block; }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; }

  /* ── COUNTDOWN ── */
  .hero-right { flex-shrink: 0; }
  .countdown-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 28px 32px; text-align: center; min-width: 240px; }
  .countdown-label { font-size: 12px; font-weight: 600; color: var(--accent-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
  .countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .countdown-unit { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 8px; }
  .countdown-num { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
  .countdown-unit-label { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-top: 4px; letter-spacing: 0.06em; }
  .seats-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.7); }
  .seats-note strong { color: #fff; }

  /* ── TRUST BAR ── */
  .trust-bar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 18px 5%; }
  .trust-inner { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; align-items: center; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--gray-600); }
  .trust-icon { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .trust-icon::after { content: '✓'; font-size: 11px; color: #fff; font-weight: 700; }

  /* ── SECTIONS ── */
  .section { padding: 64px 5%; }
  .section-alt { background: var(--gray-50); }
  .section-heading { text-align: center; margin-bottom: 48px; }
  .section-heading .eyebrow { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
  .section-heading h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--navy); margin-bottom: 14px; }
  .section-heading p { font-size: 16px; color: var(--gray-600); max-width: 600px; margin: 0 auto; }

  /* ── ADMISSION STEPS ── */
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .step-connector { position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: var(--gray-200); z-index: 0; }
  .step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
  .step-num { width: 64px; height: 64px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; color: #fff; margin: 0 auto 16px; border: 4px solid var(--white); box-shadow: 0 0 0 3px var(--blue); }
  .step h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .step p { font-size: 13px; color: var(--gray-600); }

  /* ── PROGRAMME CARDS ── */
  .prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .prog-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
  .prog-card-header { background: var(--navy); color: #fff; padding: 28px 28px 22px; }
  .prog-badge { display: inline-block; background: rgba(255,255,255,0.15); border-radius: 4px; font-size: 11px; font-weight: 700; padding: 3px 10px; margin-bottom: 12px; letter-spacing: 0.06em; }
  .prog-card-header h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
  .prog-card-header p { font-size: 14px; color: rgba(255,255,255,0.75); }
  .prog-card-body { padding: 24px 28px; }
  .prog-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
  .prog-detail { background: var(--gray-50); border-radius: 8px; padding: 14px; }
  .prog-detail-label { font-size: 11px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
  .prog-detail-value { font-size: 15px; font-weight: 600; color: var(--navy); }
  .prog-curriculum h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
  .prog-curriculum ul { list-style: none; }
  .prog-curriculum li { font-size: 13px; color: var(--gray-600); padding: 5px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; }
  .prog-curriculum li:last-child { border-bottom: none; }
  .prog-curriculum li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
  .prog-footer { padding: 20px 28px; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
  .eligibility-note { font-size: 13px; color: var(--gray-600); display: flex; gap: 8px; align-items: flex-start; }
  .elig-icon { width: 18px; height: 18px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
  .elig-icon::after { content: '✓'; font-size: 10px; color: #fff; font-weight: 700; }

  /* ── FEE TABLE ── */
  .fee-table-wrapper {width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch;border-radius: 12px;box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);}
  .fee-table {width: 100%;min-width: 700px;border-collapse: collapse;overflow: hidden;}
  .fee-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
  .fee-table thead { background: var(--navy); color: #fff; }
  .fee-table thead th { padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 600; }
  .fee-table tbody tr { border-bottom: 1px solid var(--gray-200); }
  .fee-table tbody tr:last-child { border-bottom: none; }
  .fee-table td { padding: 16px 20px; font-size: 14px; color: var(--gray-700); }
  .fee-table tr:nth-child(even) { background: var(--gray-50); }
  .fee-highlight { font-weight: 600; color: var(--green); }
  .fee-cta-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
  .fee-cta-link:hover { color: #C14900; text-decoration: underline; }
  .fee-note { text-align: center; margin-top: 16px; font-size: 13px; color: var(--gray-600); }
  .scholarship-box { background: var(--green-light); border: 1px solid rgba(29,122,84,0.2); border-radius: 10px; padding: 18px 20px; margin-top: 20px; display: flex; gap: 12px; align-items: flex-start; }
  .scholarship-box svg { flex-shrink: 0; margin-top: 2px; }
  .scholarship-box p { font-size: 14px; color: var(--green); font-weight: 500; }
  .scholarship-box p span { font-weight: 400; color: var(--gray-600); }
  @media (max-width: 767px){
    .fee-table {min-width: 650px;font-size: 14px;}
	.fee-table th,
    .fee-table td {padding: 12px 10px;white-space: nowrap;}
	}

  /* ── ELIGIBILITY BOX ── */
  .elig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto; }
  .elig-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1.5px solid var(--gray-200); }
  .elig-card h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
  .elig-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 14px; color: var(--gray-600); }
  .elig-check { width: 20px; height: 20px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 11px; color: var(--green); font-weight: 700; }
  .no-neet { background: var(--red-light); border: 1px solid rgba(192,57,43,0.2); border-radius: 8px; padding: 12px 16px; margin-top: 14px; font-size: 13px; color: var(--red); font-weight: 500; text-align: center; }

  /* ── HIGHLIGHTS GRID ── */
  .highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .highlight-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1.5px solid var(--gray-200); text-align: center; }
  .highlight-icon { font-size: 32px; margin-bottom: 12px; }
  .highlight-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
  .highlight-card p { font-size: 13px; color: var(--gray-600); }

  /* ── CAREERS ── */
  .careers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .career-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 18px 16px; text-align: center; }
  .career-icon { font-size: 28px; margin-bottom: 8px; }
  .career-card span { font-size: 13px; font-weight: 500; color: var(--navy); }

  /* ── LABS ── */
  .labs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .lab-card { background: var(--navy); border-radius: 12px; padding: 28px 20px; text-align: center; color: #fff; }
  .lab-icon { font-size: 36px; margin-bottom: 14px; }
  .lab-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
  .lab-card p { font-size: 13px; color: rgba(255,255,255,0.7); }

  /* ── PLACEMENTS ── */
  .placement-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: start; }
  .placement-stats { display: flex; flex-direction: column; gap: 16px; }
  .stat-card { background: var(--navy); border-radius: 12px; padding: 24px; text-align: center; color: #fff; }
  .stat-num { font-size: 36px; font-weight: 700; color: var(--accent-light); }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
  .placement-employers h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
  .employer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .employer-pill { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 12px 14px; font-size: 13px; font-weight: 500; color: var(--navy); text-align: center; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1.5px solid var(--gray-200); }
  .testimonial-quote { font-size: 32px; color: var(--accent); line-height: 1; margin-bottom: 12px; }
  .testimonial-card p { font-size: 14px; color: var(--gray-600); font-style: italic; margin-bottom: 16px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #fff; flex-shrink: 0; }
  .author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
  .author-role { font-size: 12px; color: var(--gray-400); }

  /* ── FORM ── */
  .form-section { background: linear-gradient(135deg, var(--navy) 0%, #1A3A5C 100%); padding: 64px 5%; }
  .form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto; align-items: center; }
  .form-left h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: #fff; margin-bottom: 16px; }
  .form-left p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
  .form-usps { list-style: none; }
  .form-usps li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 10px; }
  .form-usps li::before { content: '✓'; width: 22px; height: 22px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
  .form-card { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
  .form-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .form-subtitle { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
  .urgency-bar { background: var(--red-light); border: 1px solid rgba(192,57,43,0.2); border-radius: 8px; padding: 10px 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--red); }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
  .form-group input, .form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); transition: border-color 0.2s; outline: none; }
  .form-group input:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,78,138,0.08); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-submit { width: 100%; padding: 15px; background: var(--accent); border: none; border-radius: 8px; color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.1s; font-family: 'Inter', sans-serif; margin-top: 8px; }
  .form-submit:hover { background: #C14900; transform: translateY(-1px); }
  .form-privacy { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 12px; }

  /* ── INDUSTRY ── */
  .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .industry-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1.5px solid var(--gray-200); }
  .industry-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .industry-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
  .industry-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); }
  .industry-card ul { list-style: none; }
  .industry-card li { font-size: 13px; color: var(--gray-600); padding: 5px 0; border-bottom: 1px solid var(--gray-100); display: flex; gap: 8px; align-items: flex-start; }
  .industry-card li:last-child { border-bottom: none; }
  .industry-card li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

  /* ── FOOTER ── */
  footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 40px 5% 24px; }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; margin-bottom: 20px; }
  footer .logo-area img { height: 36px;}
  footer .logo-area span { display: block; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; }
  .footer-links { display: flex; gap: 24px; font-size: 13px; }
  .footer-links a { color: rgba(255,255,255,0.6); }
  .footer-bottom { font-size: 12px; text-align: center; }

  /* ── COUNTDOWN STRIP ── */
  .countdown-strip { background: linear-gradient(90deg, #0A1929 0%, #0D2137 50%, #0A1929 100%); border-bottom: 2px solid var(--accent); padding: 10px 5%; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
  .cs-label { font-size: 12px; font-weight: 700; color: var(--accent-light); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
  .cs-units { display: flex; align-items: center; gap: 6px; }
  .cs-unit { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 10px; min-width: 48px; }
  .cs-num { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; font-variant-numeric: tabular-nums; }
  .cs-lbl { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
  .cs-sep { font-size: 20px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; }
  .cs-cta { background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 18px; border-radius: 20px; white-space: nowrap; transition: background 0.2s; }
  .cs-cta:hover { background: #C14900; color: #fff; }
  .cs-date { font-size: 12px; color: rgba(255,255,255,0.6); white-space: nowrap; }
  .cs-date strong { color: rgba(255,255,255,0.9); }

  /* ── HERO FORM EMBED ── */
  .hero-form-card { background: #fff; border-radius: 16px; padding: 28px 28px 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.35); width:475px; flex-shrink: 0; }
  .hero-form-card .form-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .hero-form-card .form-subtitle { font-size: 12px; color: var(--gray-400); margin-bottom: 16px; }
  .hero-form-card .urgency-bar { font-size: 12px; padding: 8px 12px; margin-bottom: 14px; }
  .hero-form-card .form-group { margin-bottom: 12px; }
  .hero-form-card .form-group label { font-size: 12px; font-weight: 600; color: var(--gray-600); margin-bottom: 4px; display: block; }
  .hero-form-card .form-group input,
  .hero-form-card .form-group select { padding: 9px 12px; font-size: 13px; width: 100%; border: 1.5px solid var(--gray-200); border-radius: 7px; font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); outline: none; transition: border-color 0.2s; }
  .hero-form-card .form-group input:focus,
  .hero-form-card .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,78,138,0.08); }
  .hero-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-form-card .form-submit { width: 100%; padding: 13px; font-size: 14px; font-weight: 700; background: var(--accent); border: none; border-radius: 8px; color: #fff; cursor: pointer; font-family: 'Inter', sans-serif; margin-top: 6px; transition: background 0.2s, transform 0.1s; }
  .hero-form-card .form-submit:hover { background: #C14900; transform: translateY(-1px); }
  .hero-form-card .form-privacy { font-size: 10px; color: var(--gray-400); text-align: center; margin-top: 10px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { flex-direction: column; }
    .hero-form-card { width: 100%; }
    .countdown-strip { gap: 16px; }
    .cs-label, .cs-date { display: none; }
    .prog-grid, .elig-grid, .form-inner, .placement-grid, .steps-grid { grid-template-columns: 1fr; }
    .step-connector { display: none; }
    .highlights-grid, .careers-grid { grid-template-columns: repeat(2, 1fr); }
    .labs-grid, .industry-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; }
  }