/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C8102E;
  --red-dark: #9B0B21;
  --red-light: #F5E6E9;
  --red-mid: #E8D0D4;
  --white: #FFFFFF;
  --off-white: #FDF8F8;
  --gray-100: #F9F2F3;
  --gray-200: #EEE3E5;
  --gray-500: #8A7275;
  --gray-700: #4A3335;
  --gray-900: #1E0E10;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(200,16,46,0.08);
  --shadow-lg: 0 12px 48px rgba(200,16,46,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-900); line-height: 1.6; }

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { font-size: 1rem; color: var(--gray-700); }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 12px rgba(200,16,46,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 64px; width: auto; mix-blend-mode: multiply; background: transparent; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); border-bottom: 2px solid var(--red); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* ===== FACT TICKER ===== */
.fact-ticker {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.fact-ticker span.label {
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--off-white);
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-eyebrow::before { content: '♥'; font-size: 0.9rem; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1.1rem; color: var(--gray-500);
  max-width: 480px; margin-bottom: 2rem;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-700);
  box-shadow: var(--shadow);
}
.badge::before { content: '✓'; color: var(--red); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--red); color: var(--red);
  padding: 12px 28px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.hero-image {
  position: relative; overflow: hidden;
  background: var(--red-light);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.hero-image-overlay {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
}
.stat-block { text-align: center; flex: 1; }
.stat-block strong { display: block; font-size: 1.6rem; font-family: var(--font-display); color: var(--red); }
.stat-block span { font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.2rem 2rem;
  display: flex; justify-content: center; align-items: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-700);
}
.trust-item span.icon { font-size: 1.1rem; }

/* ===== SECTION ===== */
.section { padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem); }
.section-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 0.8rem;
}
.section h2 { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-500); max-width: 560px; margin: 0 auto 3rem; }

/* ===== COURSES GRID ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.course-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, var(--white) 0%, var(--red-light) 100%);
}
.course-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--red); color: var(--white);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; letter-spacing: 0.06em;
}
.course-icon { font-size: 2rem; margin-bottom: 1rem; }
.course-card h3 { margin-bottom: 0.6rem; color: var(--gray-900); }
.course-card p { font-size: 0.9rem; margin-bottom: 1.2rem; flex: 1; }
.course-meta {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.meta-item { font-size: 0.8rem; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.course-features { list-style: none; margin-bottom: 1.5rem; }
.course-features li {
  font-size: 0.88rem; color: var(--gray-700);
  padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.course-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.course-price {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--red);
  margin-bottom: 1rem;
}
.course-price span { font-size: 0.9rem; font-family: var(--font-body); color: var(--gray-500); font-weight: 400; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white);
  border-radius: 16px; padding: 1.2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.about-badge-float strong { display: block; font-size: 1.8rem; font-family: var(--font-display); }
.about-badge-float span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }
.about-content .section-label { margin-bottom: 0.5rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin: 1.5rem 0; }
.credential {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--gray-100);
  padding: 12px 16px; border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.credential-icon { font-size: 1.1rem; }
.credential-text strong { display: block; font-size: 0.88rem; color: var(--gray-900); }
.credential-text span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== TESTIMONIALS ===== */
.testimonials-bg { background: var(--gray-100); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem; color: var(--red-light);
  position: absolute; top: -0.5rem; left: 1.2rem;
  line-height: 1;
}
.testimonial p { font-size: 0.95rem; color: var(--gray-700); margin-bottom: 1rem; position: relative; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-initials {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red-light); color: var(--red-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--gray-500); }
.stars { color: #F5A623; font-size: 0.9rem; margin-bottom: 0.8rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.btn-white {
  background: var(--white); color: var(--red);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all 0.2s; display: inline-block;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all 0.2s; display: inline-block;
  margin-left: 12px;
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item-text a, .contact-item-text span { font-size: 0.95rem; color: var(--gray-900); font-weight: 500; }
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; color: var(--gray-900); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--red); color: var(--white);
  border: none; cursor: pointer;
  padding: 14px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.form-submit:hover { background: var(--red-dark); }

/* ===== FOOTER ===== */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 2rem;
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ===== RESOURCES PAGE ===== */
.resources-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
}
.resources-hero h1 { color: var(--white); margin-bottom: 1rem; }
.resources-hero p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.resources-filter {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 2rem; background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 70px; z-index: 50;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-700);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); color: var(--white); border-color: var(--red);
}

.resources-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
  padding: 3rem 2rem;
}
.resource-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-card-header {
  padding: 1.8rem 1.8rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: flex-start; gap: 14px;
}
.resource-emoji { font-size: 2.2rem; flex-shrink: 0; }
.resource-card-header h3 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.resource-category {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--red);
}
.resource-card-body { padding: 1.2rem 1.8rem; }
.resource-card-body p { font-size: 0.88rem; margin-bottom: 1rem; }
.resource-steps { list-style: none; }
.resource-steps li {
  font-size: 0.85rem; color: var(--gray-700);
  padding: 6px 0;
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px solid var(--gray-200);
}
.resource-steps li:last-child { border-bottom: none; }
.step-num {
  background: var(--red); color: var(--white);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.resource-card-footer {
  padding: 1rem 1.8rem;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.urgency-badge {
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}
.urgency-critical { background: #FFEAEA; color: #C8102E; }
.urgency-urgent { background: #FFF3E0; color: #E65100; }
.urgency-standard { background: #E8F5E9; color: #2E7D32; }
.read-more { font-size: 0.82rem; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }

/* MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 1000;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gray-200); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  color: var(--gray-700); transition: background 0.2s;
}
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-header {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 2rem 2rem 1.5rem;
  border-radius: 20px 20px 0 0;
}
.modal-header h2 { color: var(--white); font-size: 1.4rem; }
.modal-header p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-top: 0.5rem; }
.modal-body { padding: 2rem; }
.modal-step {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200);
}
.modal-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.modal-step-num {
  background: var(--red); color: var(--white);
  width: 32px; height: 32px; border-radius: 50%;
  font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.modal-step-content strong { display: block; margin-bottom: 0.4rem; color: var(--gray-900); }
.modal-step-content p { font-size: 0.9rem; margin: 0; }
.modal-warning {
  background: #FFF3E0; border-left: 4px solid #E65100;
  padding: 1rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
  font-size: 0.88rem; color: #BF360C;
}
.modal-warning strong { display: block; margin-bottom: 0.3rem; }

/* ===== COURSES PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white); text-align: center;
  padding: 5rem 2rem 4rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.pricing-note {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--red-dark);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.who-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem; max-width: 1100px; margin: 0 auto;
}
.who-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.who-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.who-card .who-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.who-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.who-card p { font-size: 0.82rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 50vw; min-height: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .about-badge-float { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 1rem; }
}
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .trust-bar { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn-white-outline { margin-left: 0; margin-top: 10px; display: block; }
}
