/* ============================================
   SMARTSCALE FP&A — DESIGN SYSTEM
   Navy + Cream + Orange palette
   Font: Cormorant Garamond (display) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:        #0B1F3A;
  --navy-mid:    #132d52;
  --navy-light:  #1e4070;
  --orange:      #E8622A;
  --orange-light:#F0844E;
  --cream:       #FDF6ED;
  --cream-dark:  #F5EAD8;
  --white:       #FFFFFF;
  --text-dark:   #0B1F3A;
  --text-mid:    #3a5070;
  --text-light:  #6b8299;
  --border:      rgba(11,31,58,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(11,31,58,0.10);
  --shadow-lg:0 12px 48px rgba(11,31,58,0.16);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.bg-navy   { background: var(--navy); }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.text-white { color: var(--white); }
.text-cream { color: var(--cream); }
.text-orange{ color: var(--orange); }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.label--light { color: var(--orange-light); }
.label--cream { color: var(--cream-dark); opacity: 0.7; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }

img { max-width: 100%; display: block; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__links a.active { color: var(--orange-light); }
.nav__cta { margin-left: 8px; padding: 10px 22px; font-size: 13px; }

/* Foundry highlight in nav */
.nav__links .foundry-link a {
  color: var(--orange-light);
  border: 1px solid rgba(232,98,42,0.35);
}
.nav__links .foundry-link a:hover {
  background: rgba(232,98,42,0.15);
  color: var(--orange-light);
  border-color: rgba(232,98,42,0.6);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,112,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,98,42,0.15);
  border: 1px solid rgba(232,98,42,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.hero__eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-light);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- FOUNDRY BANNER ---- */
.foundry-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 3px solid var(--orange);
  padding: 32px 0;
}
.foundry-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foundry-banner__text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.foundry-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.foundry-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: 0;
}
.foundry-banner strong { color: var(--white); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.65); }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,98,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---- PRICING CARDS ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,98,42,0.08);
}
.pricing-card__header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-card__header {
  background: var(--navy);
}
.pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__name { color: var(--white); }
.pricing-card__tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-card__tagline { color: rgba(255,255,255,0.6); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.pricing-card--featured .pricing-price__amount { color: var(--orange-light); }
.pricing-price__period {
  font-size: 13px;
  color: var(--text-light);
}
.pricing-card--featured .pricing-price__period { color: rgba(255,255,255,0.5); }
.pricing-card__body { padding: 28px 32px; }
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-check {
  color: var(--orange);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ---- FOUNDRY PAGE CARDS ---- */
.foundry-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.foundry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.foundry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.foundry-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232,98,42,0.12);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}
.foundry-card h3 { color: var(--navy); margin-bottom: 12px; }
.foundry-card p { font-size: 14.5px; color: var(--text-mid); }
.foundry-card__price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--navy);
}
.foundry-card__price span { color: var(--orange); }

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-stat {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
}
.about-stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat__label {
  font-size: 12.5px;
  color: var(--text-mid);
  margin-top: 4px;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.6;
}
.about-image-placeholder .initials {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  margin-bottom: 20px;
  line-height: 1;
}
.about-image-placeholder p {
  margin: 0;
  color: rgba(255,255,255,0.6);
}

/* Logo placeholder */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-placeholder__mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* Active nav indicator */
.nav__links a.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
  position: relative;
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12.5px; color: var(--text-light); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin: 0 8px; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 8px; }
.contact-info p { color: var(--text-mid); font-size: 15px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,98,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 2px; }
.contact-detail span { color: var(--text-dark); font-size: 15px; }

.contact-form { background: var(--cream); border-radius: var(--radius-lg); padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- TEMPLATES ---- */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.template-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}
.template-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.template-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.template-card h4 { margin-bottom: 8px; color: var(--navy); }
.template-card p { font-size: 13.5px; color: var(--text-mid); margin-bottom: 20px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,98,42,0.5), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---- FOOTER ---- */
.footer {
  background: #060f1c;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.55);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer__logo-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__foundry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,42,0.15);
  border: 1px solid rgba(232,98,42,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  transition: all var(--transition);
}
.footer__foundry-link:hover {
  background: rgba(232,98,42,0.25);
  border-color: rgba(232,98,42,0.6);
}
.footer__foundry-link span { font-size: 13px; color: var(--orange-light); font-weight: 500; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer__bottom a { color: rgba(255,255,255,0.4); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---- DIVIDER ---- */
.orange-rule {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.orange-rule--left { margin-left: 0; }

/* ---- FADE IN ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav__links.open li { width: 100%; }
  .nav__links.open a { display: block; padding: 12px 16px; }
  .hero { padding: 120px 0 72px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-placeholder { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 28px 20px; }
}
