/* =====================================================
   iTax Accounting & Business Services — Stylesheet
   ===================================================== */

:root {
  --navy:        #0a0a6e;
  --navy-dark:   #06064a;
  --navy-mid:    #14148a;
  --gold:        #c8a44a;
  --gold-light:  #e0bc72;
  --gold-pale:   #fdf6e3;
  --white:       #ffffff;
  --off-white:   #f9faf9;
  --gray-100:    #f1f4f9;
  --gray-200:    #dde3ed;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --text:        #1e293b;
  --text-light:  #64748b;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.14);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 500; line-height: 1.25; color: var(--navy-dark); }
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); font-style: italic; }
h3 { font-size: clamp(1.0rem, 2.5vw, 1.25rem); font-weight: 500; }
p  { color: var(--text-light); margin-bottom: 1rem; font-weight: 300; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Container ── */
.container         { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn--primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,74,0.35); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── Sections ── */
.section    { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 110px 0; }
.bg-off-white { background: var(--off-white); }
.bg-gray      { background: var(--gray-100); }
.bg-navy      { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

.section__header { text-align: center; margin-bottom: 56px; }
.section__header h2 { margin-bottom: 14px; }
.section__header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}

/* Logo */
.header__logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--gold);
  flex-shrink: 0;
}
/* When real logo is available: replace .logo-mark with <img> */
.logo-img { width: 140px; height: 42px; object-fit: contain; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy-dark); line-height: 1; }
.logo-sub  { font-size: 0.68rem; color: var(--gray-600); font-weight: 500; letter-spacing: 0.04em; }

/* Nav links */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 15px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.87rem;
  color: var(--gray-800); border-radius: var(--radius); transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--navy); background: var(--gray-100); }
.nav__cta {
  margin-left: 8px; padding: 10px 22px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.87rem;
  transition: var(--transition);
}
.nav__cta:hover { background: var(--gold); color: var(--navy-dark); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* =====================================================
   HERO (Home page)
   ===================================================== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  background: var(--navy-dark); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&q=80');
  background-size: cover; background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  opacity: 0.82;
}
.hero__deco {
  position: absolute; right: -120px; top: -120px;
  width: 640px; height: 640px;
  border: 1px solid rgba(200,164,74,0.13); border-radius: 50%; pointer-events: none;
}
.hero__deco::after {
  content: ''; position: absolute; inset: 70px;
  border: 1px solid rgba(200,164,74,0.08); border-radius: 50%;
}
.hero__content { position: relative; z-index: 1; max-width: 680px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero__eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 22px; font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hero h1 span { color: var(--gold); }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.78); margin-bottom: 38px; line-height: 1.75; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { position: relative; z-index: 1; margin-top: 72px; display: flex; gap: 44px; flex-wrap: wrap; }
.hero__stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero__stat-num { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.7rem; color: #fff; line-height: 1; }
.hero__stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 5px; }

/* =====================================================
   INTRO VIDEO
   ===================================================== */
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-dark);
  line-height: 0;
}
.intro-video {
  width: 100%;
  max-height: 480px;
  display: block;
  background: var(--navy-dark);
}

/* =====================================================
   DIFFERENTIATORS
   ===================================================== */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.diff-card {
  background: #fff; border-radius: var(--radius-lg); padding: 38px 30px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold); transition: var(--transition);
}
.diff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.diff-card__icon {
  width: 54px; height: 54px; background: var(--gold-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.diff-card__icon svg { width: 27px; height: 27px; color: var(--gold); }
.diff-card h3 { margin-bottom: 11px; }

/* =====================================================
   SERVICE CARDS (Home preview)
   ===================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--shadow); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__img { height: 200px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 26px; }
.service-card__body h3 { margin-bottom: 9px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); transition: var(--transition);
}
.service-card__link:hover { gap: 10px; }

/* =====================================================
   ABOUT / SPLIT
   ===================================================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split__img { position: relative; }
.about-split__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: auto; max-height: 500px; }
.about-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--navy); color: #fff; padding: 20px 22px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge__num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--gold); line-height: 1; }
.about-badge__text { font-size: 0.75rem; opacity: 0.75; margin-top: 5px; line-height: 1.3; }
.about-split__content h2 { margin-bottom: 18px; }
.about-split__content p { font-size: 1.03rem; line-height: 1.8; margin-bottom: 14px; }

.check-list { margin: 22px 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0; font-size: 0.94rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2540' stroke-width='3.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
  margin-top: 2px;
}

/* =====================================================
   TARGET BANNER
   ===================================================== */
.target-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 58px 56px; border-radius: var(--radius-lg); position: relative; overflow: hidden;
}
.target-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border: 1px solid rgba(200,164,74,0.18); border-radius: 50%;
}
.target-banner h2 { color: #fff; margin-bottom: 14px; }
.target-banner > p { color: rgba(255,255,255,0.78); font-size: 1.08rem; max-width: 580px; }
.target-criteria { display: flex; flex-wrap: wrap; gap: 20px 36px; margin: 28px 0; }
.target-criteria__item {
  display: flex; align-items: center; gap: 11px;
  color: #fff; font-size: 0.96rem; font-family: 'Montserrat', sans-serif; font-weight: 500;
}
.target-criteria__item::before {
  content: '✓';
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; flex-shrink: 0;
}

/* =====================================================
   SOFTWARE STRIP
   ===================================================== */
.software-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.sw-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sw-badge__logo {
  width: 82px; height: 82px; border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem;
  transition: var(--transition);
}
.sw-badge:hover .sw-badge__logo { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sw-badge__name { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); }

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip { background: var(--gold); padding: 56px 0; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-strip h2 { color: var(--navy-dark); margin-bottom: 7px; }
.cta-strip p  { color: var(--navy-mid); font-size: 1.08rem; }
.cta-strip .btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================
   NEWS / ARTICLES
   ===================================================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card__img { height: 185px; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: 24px; }
.news-card__cat {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px;
}
.news-card__body h3 { font-size: 1.05rem; margin-bottom: 9px; line-height: 1.35; }
.news-card__meta { font-size: 0.78rem; color: var(--gray-400); margin-top: 14px; }
.news-card__body a { color: inherit; }
.news-card__body a:hover h3 { color: var(--navy); }

/* Full article page */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; }
.article-body p  { font-size: 1.05rem; line-height: 1.85; color: var(--gray-600); margin-bottom: 1.2rem; }
.article-body ul { margin: 0 0 1.2rem 0; padding-left: 24px; list-style: disc; }
.article-body ul li { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.article-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.article-meta__cat {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale); padding: 5px 12px; border-radius: 4px;
}
.article-meta__date { font-size: 0.88rem; color: var(--gray-400); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--navy-dark);
  padding: 100px 0 96px; position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  opacity: 0.82;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 56px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.12rem; max-width: 580px; }

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block--rev .service-block__img  { order: 2; }
.service-block--rev .service-block__text { order: 1; }
.service-block__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 360px; object-fit: cover; }
.service-block__icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.service-block__icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.service-block p  { font-size: 1.03rem; line-height: 1.8; margin-bottom: 14px; }

.service-list { margin-top: 18px; }
.service-list li {
  padding: 10px 0 10px 18px; position: relative;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.94rem; color: var(--gray-600);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-info__row {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info__row:last-child { border-bottom: none; }
.contact-info__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-info__label {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 3px;
}
.contact-info__val { font-size: 0.94rem; color: var(--gray-600); }
.contact-info__val a { color: var(--navy); font-weight: 600; }
.contact-info__val a:hover { color: var(--gold); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 30px; }
.map-wrap iframe { display: block; }

/* Contact Form */
.contact-form {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.82rem; color: var(--navy-dark); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text);
  background: #fff; transition: var(--transition); outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,92,0.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--gray-400); margin-top: 14px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy-dark); color: #fff; padding: 60px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.93rem; margin-top: 16px; max-width: 300px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer__logo .logo-mark { background: var(--gold); color: var(--navy-dark); }
.footer__logo .logo-name { color: #fff; }
.footer__logo .logo-sub  { color: rgba(255,255,255,0.45); }
.footer__heading { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,0.6); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .diff-grid     { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .news-grid     { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .about-split   { gap: 48px; }
  .service-block { gap: 48px; }
}

@media (max-width: 768px) {
  .diff-grid, .services-grid, .news-grid, .about-split,
  .service-block, .contact-layout, .footer__grid { grid-template-columns: 1fr; }
  .service-block--rev .service-block__img,
  .service-block--rev .service-block__text { order: unset; }
  .nav { display: none; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: #fff; padding: 12px 16px 16px; box-shadow: var(--shadow-lg); gap: 4px; }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .target-banner { padding: 40px 28px; }
  .target-criteria { flex-direction: column; gap: 14px; }
  .hero__stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: -14px; right: -14px; }
  .about-split__img img { height: 320px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
  .contact-form { padding: 24px; }
  .section { padding: 56px 0; }
  .target-banner { padding: 30px 20px; }
}
