/* ===== Immigration Horizons — navy & gold theme ===== */
:root {
  --blue-900: #152C54;
  --blue-800: #1C3A6B;
  --blue-700: #234A85;
  --blue-600: #2C5CA1;
  --blue-500: #3E74BE;
  --blue-100: #EAF0F8;
  --gold-600: #A67C1E;
  --gold-500: #C9992E;
  --gold-400: #E0B65C;
  --gold-100: #F7ECD3;
  --gray-900: #1c2530;
  --gray-700: #4a5568;
  --gray-500: #718096;
  --gray-200: #e2e8f0;
  --gray-100: #f5f7fa;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(10, 38, 71, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 38, 71, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 12px; color: var(--blue-900); }
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; color: var(--gray-700); }

.section { padding: 72px 0; }
.section-alt { background: var(--gray-100); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-size: .95rem;
}
.btn-primary { background: var(--gold-500); color: var(--white); }
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue { background: var(--blue-600); color: var(--white); }
.btn-blue:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px; font-size: .82rem; }
.btn-ghost { background: var(--gray-100); color: var(--blue-800); }
.btn-danger { background: #fde8e8; color: #c53030; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 52px; width: auto; display: block; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), var(--gold-500));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.brand-name { font-size: 1.15rem; font-weight: 500; color: var(--blue-900); }
.brand-name strong { color: var(--gold-600); font-weight: 800; }
.brand-name.light { color: var(--white); }
.brand-name.light strong { color: var(--gold-400); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-weight: 600; color: var(--gray-700); font-size: .95rem; padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--blue-700); }
.main-nav a.nav-cta {
  background: var(--gold-500); color: var(--white); padding: 10px 20px; border-radius: 999px;
}
.main-nav a.nav-cta:hover { background: var(--gold-600); color: var(--white); }

.nav-item-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 10px; min-width: 200px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px;
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 50;
}
.dropdown-menu li a { display: block; padding: 9px 12px; border-radius: 6px; border-bottom: none; font-size: .9rem; }
.dropdown-menu li a:hover { background: var(--gray-100); color: var(--blue-700); }
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: none;
}

.nav-toggle-checkbox { display: none; }
.nav-toggle-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle-btn span { width: 26px; height: 3px; background: var(--blue-900); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700) 60%, var(--blue-600));
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,153,46,.35), transparent 45%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: var(--white); font-size: 2.9rem; margin-bottom: 18px; }
.hero p.lead { color: #d9e6f5; font-size: 1.12rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 2rem; color: var(--gold-400); }
.hero-stat span { color: #cfe0f2; font-size: .88rem; }

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-900);
}
.hero-card h3 { margin-bottom: 6px; }
.hero-card ul li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--gray-200); font-size: .92rem; color: var(--gray-700); }
.hero-card ul li:last-child { border-bottom: none; }
.hero-card .badge { color: var(--gold-600); font-weight: 700; }
.landing-hero { padding-top: 56px; }
.landing-hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.landing-card { background: linear-gradient(180deg, var(--white), #f7fbff); }

/* ===== Services grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-500); }
.service-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 4px; }
.service-card .tagline { color: var(--gold-600); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; display: block; }
.service-card ul { margin-top: 14px; }
.service-card ul li { font-size: .88rem; color: var(--gray-700); padding: 4px 0; padding-left: 20px; position: relative; }
.service-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 800; }
.service-card .learn-more { display: inline-block; margin-top: 12px; font-weight: 700; font-size: .88rem; color: var(--blue-600); }
.service-card .learn-more:hover { color: var(--gold-600); }

/* ===== Why us / stats ===== */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: var(--blue-900); border-radius: var(--radius); padding: 40px; color: var(--white); }
.stats-strip .stat { text-align: center; }
.stats-strip .stat strong { display: block; font-size: 2.2rem; color: var(--gold-400); }
.stats-strip .stat span { color: #cfe0f2; font-size: .85rem; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.feature { text-align: left; }
.feature .service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-100); color: var(--gold-600); }
.feature .service-icon .icon-svg { width: 26px; height: 26px; }
.faq-grid { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; color: var(--blue-900); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 12px; margin-bottom: 0; }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.stars { color: var(--gold-500); letter-spacing: 2px; }
.testimonial-card .quote { color: var(--gray-700); font-size: .95rem; flex-grow: 1; }
.testimonial-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gray-200); padding-top: 12px; }
.testimonial-person { font-weight: 700; color: var(--blue-900); }
.testimonial-role { font-size: .78rem; color: var(--gray-500); }
.verify-link { font-size: .78rem; color: var(--blue-600); font-weight: 600; }
.verify-link:hover { color: var(--gold-600); }
.service-pill {
  display: inline-block; font-size: .72rem; font-weight: 700; color: var(--blue-700);
  background: var(--blue-100); padding: 3px 10px; border-radius: 999px; align-self: flex-start;
}
.platform-badge {
  display: inline-block; font-size: .7rem; font-weight: 700; color: var(--gray-700);
  background: var(--gray-100); border: 1px solid var(--gray-200); padding: 2px 9px; border-radius: 999px;
}

/* ===== Marketplace gig card (portfolio-listing style) ===== */
.gig-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 28px; }
.gig-card {
  background: #14181f;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
.gig-card-main { padding: 22px; }
.gig-card-title { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.gig-card-seller { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: .85rem; }
.gig-card-seller .avatar {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .7rem; color: #14181f; flex-shrink: 0;
}
.gig-card-seller .seller-name { color: #62d68a; font-weight: 700; }
.gig-card-seller .rating { color: #cfd6e0; }
.gig-card-seller .rating strong { color: #fff; }
.gig-card-hero {
  position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/10;
  background: var(--blue-800); display: flex; align-items: center; justify-content: center;
}
.gig-card-hero img { width: 100%; height: 100%; object-fit: cover; }
.gig-card-hero .hero-fallback { color: #fff; font-weight: 800; font-size: 1.3rem; letter-spacing: .03em; }
.gig-card-hero .hero-label {
  position: absolute; left: 18px; top: 18px; color: #fff; font-weight: 800; font-size: 1.4rem; text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.gig-card-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px; }
.gig-card-thumbs .thumb {
  aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; background: var(--blue-800);
  border: 1px solid rgba(255,255,255,.1);
}
.gig-card-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gig-card-side { background: #14181f; border-left: 1px solid rgba(255,255,255,.1); padding: 22px; display: flex; flex-direction: column; }
.gig-card-side-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.gig-card-side-head h4 { color: #fff; margin: 0; font-size: 1rem; }
.gig-card-side-head .price { color: #fff; font-weight: 800; font-size: 1.15rem; }
.gig-card-package-title { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.gig-card-package-desc { color: #9aa4b2; font-size: .82rem; margin-bottom: 16px; }
.gig-card-meta { border-top: 1px solid rgba(255,255,255,.1); padding-top: 12px; margin-top: auto; }
.gig-card-meta-row { display: flex; justify-content: space-between; font-size: .82rem; color: #cfd6e0; padding: 6px 0; }
.gig-card-meta-row span:first-child { text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }
.gig-card-meta-row span:last-child { color: #fff; font-weight: 700; }
.gig-card-cta {
  display: block; text-align: center; padding: 13px; border-radius: 6px; font-weight: 700; font-size: .92rem;
  margin-top: 16px; color: #fff;
}
.gig-card-cta:hover { filter: brightness(1.08); }
.gig-card-note { display: flex; gap: 8px; font-size: .76rem; color: #9aa4b2; margin-top: 14px; }
@media (max-width: 720px) {
  .gig-card { grid-template-columns: 1fr; }
  .gig-card-side { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--gold-600), var(--gold-500));
  color: var(--white); text-align: center; border-radius: var(--radius);
  padding: 56px 30px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--gold-100); max-width: 560px; margin: 0 auto 24px; }

/* ===== Forms ===== */
.form-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow); max-width: 640px; margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--blue-900); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--gray-200);
  font-size: .95rem; font-family: inherit; background: var(--white); color: var(--gray-900);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue-500); }
textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: #e6f7ee; color: #1e7d4b; border: 1px solid #b7ecd1; }
.alert-error { background: #fdecec; color: #c53030; border: 1px solid #f8c6c6; }

.contact-alt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 40px; }

/* ===== Blog comments ===== */
.comments-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--gray-200); }
.comment-list { max-width: 720px; margin: 0 auto 32px; }
.comment { padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.comment:last-child { border-bottom: none; }
.comment-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.comment-name { font-weight: 700; color: var(--blue-900); }
.comment-date { font-size: .78rem; color: var(--gray-500); }
.comment-message { margin: 0; color: var(--gray-700); white-space: pre-wrap; }
.comment-form-card { margin-top: 8px; }
.contact-alt-card { text-align: center; background: var(--gray-100); border-radius: var(--radius); padding: 24px; }

/* ===== Blog ===== */
.blog-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.blog-filters a { padding: 8px 16px; border-radius: 999px; background: var(--gray-100); font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.blog-filters a.active, .blog-filters a:hover { background: var(--blue-600); color: var(--white); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.blog-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-teaser-grid { grid-template-columns: 1fr; } }
.guides-head h2 { text-transform: uppercase; letter-spacing: .02em; font-size: 2rem; }
.blog-teaser-grid .blog-card { border: none; box-shadow: 0 4px 16px rgba(10,38,71,.08); }
.blog-teaser-grid .blog-card-body { padding: 18px 20px 22px; }
.blog-teaser-grid .blog-card-body h3 {
  margin: 0; font-size: 1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .01em; line-height: 1.4; color: var(--blue-900);
}
.blog-card { position: relative; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 0 2px 10px rgba(10,38,71,.05); transition: box-shadow .2s ease, transform .2s ease; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.blog-card .thumb { position: relative; height: 190px; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-weight: 800; font-size: 1.4rem; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card .cat {
  display: inline-block; color: var(--white); background: var(--gold-500); font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .05em; padding: 4px 11px; border-radius: 999px;
}
.blog-card .thumb .cat { position: absolute; left: 14px; bottom: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.blog-card-body .cat { color: var(--gold-600); background: none; padding: 0; }
.blog-card h3 { margin: 10px 0 8px; font-size: 1.15rem; }
.blog-card p { font-size: .9rem; }
.blog-card .meta { font-size: .78rem; color: var(--gray-500); border-top: 1px solid var(--gray-100); margin-top: 14px; padding-top: 12px; }
.empty-state { text-align: center; color: var(--gray-500); padding: 40px 0; }

.post-header { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.post-content { max-width: 760px; margin: 0 auto; }
.post-content img { border-radius: var(--radius); margin: 20px 0; }
.post-cover { width: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 30px; }

/* ===== Admin ===== */
.admin-shell { background: var(--gray-100); min-height: 70vh; padding: 40px 0; }
.admin-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); box-shadow: var(--shadow); padding: 26px; margin-bottom: 24px; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--gray-200); }
.admin-table th { color: var(--gray-500); text-transform: uppercase; font-size: .72rem; letter-spacing: .04em; }
.badge-status { padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.badge-new { background: var(--gold-100); color: var(--gold-600); }
.badge-contacted { background: var(--blue-100); color: var(--blue-700); }
.badge-closed { background: var(--gray-200); color: var(--gray-700); }
.lead-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.lead-filter-tab { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--gray-100); color: var(--gray-700); font-size: .82rem; font-weight: 600; border: 1px solid var(--gray-200); }
.lead-filter-tab:hover { background: var(--gray-200); }
.lead-filter-tab.active { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.login-shell { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.action-row { display: flex; gap: 8px; }

/* ===== Footer ===== */
.site-footer { background: var(--blue-900); color: #cfe0f2; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-col h4 { color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.footer-col a, .footer-brand a { display: flex; align-items: center; gap: 8px; color: #b9cde3; font-size: .9rem; padding: 5px 0; }
.footer-col a:hover, .footer-brand a:hover { color: var(--gold-400); }
.social-icon-svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-socials a { padding: 0; }
.footer-logo { display: inline-flex !important; padding: 10px 16px !important; margin-bottom: 14px; background: var(--white); border-radius: 10px; width: fit-content; }
.footer-logo img { height: 44px; width: auto; display: block; }
.footer-brand p { color: #b9cde3; font-size: .9rem; }
.footer-socials { display: flex; gap: 16px; margin-top: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; margin-top: 10px; }
.footer-bottom p { color: #8fa8c4; font-size: .8rem; margin: 4px 0; }
.footer-bottom .disclaimer { max-width: 720px; }

/* ===== WhatsApp floating button ===== */
.whatsapp-fab {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25); z-index: 200; transition: transform .15s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .landing-hero-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute; top: 76px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--gray-200);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .main-nav a { width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--gray-100); }
  .nav-toggle-btn { display: flex; }
  .nav-toggle-checkbox:checked ~ .main-nav { max-height: 600px; }
  .nav-item-dropdown { width: 100%; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; margin-top: 0; padding: 0;
    background: var(--gray-100);
  }
  .dropdown-menu li a { padding: 12px 24px 12px 40px; font-size: .88rem; border-bottom: 1px solid var(--white); }
  .form-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 24px; }
  .landing-hero { padding-top: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
}
