/* ============================================================
   DANIELS SOLUTIONS — Main Stylesheet
   Inspired by ethosbenefits.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --navy-dark:  #0D1F2D;
  --navy:       #1B3A4B;
  --navy-mid:   #234668;
  --gold:       #B8982A;
  --gold-light: #D4B347;
  --gold-pale:  rgba(184,152,42,0.12);
  --white:      #FFFFFF;
  --gray-light: #F7F8FA;
  --gray-mid:   #E5E7EB;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-light: #6B7280;
  --border:     #E5E7EB;
  --radius:     6px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
}

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body  { font-family:'Inter',system-ui,sans-serif; color:var(--text-dark); 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; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* === UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.section-label.dark { color: var(--gold); }

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 580px;
}

.section-desc.light { color: rgba(255,255,255,0.68); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,152,42,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  border: 2px solid var(--navy-dark);
}
.btn-navy:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}
.btn-outline-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 36px;
  max-width: 1360px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.09);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.15s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.09); }

.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,152,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 36px;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -22px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 20px 26px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(184,152,42,0.4);
  min-width: 130px;
}

.hero-badge-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.hero-badge-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
  opacity: 0.85;
}

/* === LICENSE STRIP === */
.license-strip {
  background: var(--navy);
  padding: 11px 28px;
  text-align: center;
}

.license-strip p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.license-strip span { color: var(--gold-light); }

/* === STATS BAR === */
.stats-bar {
  background: var(--gold);
  padding: 52px 28px;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {}

.stat-figure {
  font-size: 54px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-num { /* animated by JS */ }

.stat-suffix {
  font-size: 32px;
  font-weight: 800;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 8px;
  opacity: 0.72;
}

/* === SECTION WRAPPER === */
.section        { padding: 96px 28px; }
.section-alt    { background: var(--gray-light); }
.section-dark   { background: var(--navy-dark); }
.section-center { text-align: center; }

.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* === TRIFECTA CARDS === */
.trifecta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.trifecta-card {
  background: var(--white);
  border-radius: 12px;
  padding: 38px 36px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trifecta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.trifecta-icon {
  width: 54px;
  height: 54px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.trifecta-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.trifecta-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.72;
}

/* === SPLIT SECTIONS === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-content .section-desc { margin-bottom: 28px; }

.split-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

/* === CHECK LIST === */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

/* === TRUST ITEMS (dark section) === */
.trust-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.trust-item {
  display: flex;
  gap: 16px;
}

.trust-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(184,152,42,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.trust-item-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* === CTA BAND === */
.cta-band {
  background: var(--gold);
  padding: 80px 28px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  font-size: 17px;
  color: rgba(13,31,45,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--navy-dark);
  padding: 148px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(184,152,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative;
}

/* === FORMS === */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--gray-light);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,152,42,0.1);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  margin-top: 4px;
  justify-content: center;
}

/* === CONTACT INFO CARD === */
.contact-info-card {
  background: var(--navy-dark);
  border-radius: 12px;
  padding: 40px 36px;
  color: var(--white);
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-info-item-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* === RESOURCES / BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* === NEWSLETTER BAND === */
.newsletter-band {
  background: var(--navy);
  padding: 64px 28px;
  text-align: center;
}

.newsletter-band h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.newsletter-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }

/* === ABOUT PAGE === */
.bio-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-img-wrap { position: relative; }

.bio-img-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.bio-credential-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(184,152,42,0.35);
  text-align: center;
}

.bio-credential-badge strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.bio-credential-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bio-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bio-content p:first-of-type {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
}

/* === SOLUTIONS PAGE === */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: box-shadow 0.2s;
}

.service-item:hover { box-shadow: var(--shadow-md); }

.service-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* === PROCESS STEPS === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 36px;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.process-step:last-child::after { display: none; }

.process-num {
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 28px 36px;
}

.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-row .ico { font-size: 15px; margin-top: 1px; }

.footer-contact-row span {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}

.footer-contact-row strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .bio-split { grid-template-columns: 360px 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .hero-inner, .split, .bio-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse { direction: ltr; }

  .hero-inner { text-align: center; padding: 60px 24px; }
  .hero-desc { max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }

  /* Reduce image heights for mobile */
  .hero-img { height: 340px; }
  .split-img img { height: 300px; }

  /* Fix badge so it stays inside the visual container */
  .hero-badge { left: 10px; bottom: -14px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .trifecta-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .blog-grid { grid-template-columns: 1fr 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }

  .bio-split { grid-template-columns: 1fr; }
  .bio-img-wrap img { height: 400px; }

  .form-card { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 64px 20px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-figure { font-size: 40px; }
  .hero-img { height: 240px; }
  .split-img img { height: 240px; }
}
