/* ── Local Fonts ── */
@font-face { font-family: 'Inter'; src: url('fonts/inter-300.ttf'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-400.ttf'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-500.ttf'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-600.ttf'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-700.ttf'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-800.ttf'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('fonts/manrope-600.ttf'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('fonts/manrope-700.ttf'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('fonts/manrope-800.ttf'); font-weight: 800; font-style: normal; font-display: swap; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B2D5A;
  --navy-dk: #0F1C3A;
  --coral:   #E8714A;
  --coral-lt:#F59272;
  --gold:    #C9A84C;
  --warm:    #F8F6F1;
  --white:   #FFFFFF;
  --text:    #1A1A1A;
  --muted:   #6B7280;
  --border:  #E5E7EB;

  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --radius:  12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography helpers ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.btn-nav {
  background: var(--coral);
  color: var(--white) !important;
  padding: .55rem 1.35rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--coral-lt); transform: translateY(-1px); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,113,74,.35);
}
.btn-primary:hover {
  background: var(--coral-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,113,74,.40);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--warm);
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
  padding-top: 200px;
  padding-bottom: 160px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #1B2D5A;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,113,74,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  color: var(--gold);
}
.hero-tag::before { display: none; }
.hero .tag { font-size: .9rem; margin-bottom: 1.5rem; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.8rem;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.8rem;
  max-width: 580px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.hero-proof strong { color: rgba(255,255,255,.85); }
.hero-proof-line {
  width: 1px; height: 24px;
  background: rgba(255,255,255,.2);
}

.hero-bg-image {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a1628 0%, #0a1628 30%, rgba(10,22,40,.7) 55%, transparent 80%);
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  max-width: 360px;
  width: 100%;
}
.hero-card-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-stat:first-child { padding-top: 0; }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(232,113,74,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.stat-icon.gold { background: rgba(201,168,76,.2); }
.stat-icon.blue { background: rgba(100,160,255,.2); }
.stat-text strong {
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-text span {
  color: rgba(255,255,255,.55);
  font-size: .83rem;
}
.floating-badge {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--coral);
  color: var(--white);
  padding: .6rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  box-shadow: 0 6px 20px rgba(232,113,74,.4);
  white-space: nowrap;
}

/* ── Pain/For-who section ── */
.for-who {
  padding: 100px 0;
  background: var(--warm);
}
.for-who h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.for-who-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--coral);
  transition: transform .2s, box-shadow .2s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pain-card-icon {
  font-size: 1.5rem;
  margin-bottom: .8rem;
}
.pain-card h3 {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.pain-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

/* ── How it works ── */
.how {
  padding: 100px 0;
  background: var(--white);
}
.how h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.how-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 4rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  border-radius: 2px;
  pointer-events: none;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(27,45,90,.25);
}
.step h3 {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .6rem;
}
.step p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* ── Services / Pricing ── */
.services {
  padding: 100px 0;
  background: var(--warm);
}
.services h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.services-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 4rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
}
.service-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.service-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), #2A4A8A);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.service-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--warm);
  padding: .2rem .75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.service-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text);
  padding: .4rem 0;
  border-top: 1px solid var(--border);
}
.service-features li:first-child { border-top: none; }
.service-features li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05em;
}
.service-price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}
.service-price sub {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 400;
  color: var(--muted);
}
.btn-service {
  display: block;
  width: 100%;
  text-align: center;
  padding: .85rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  background: var(--warm);
  color: var(--navy);
  transition: background .2s, color .2s;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}
.btn-service:hover, .service-card.featured .btn-service {
  background: var(--coral);
  color: var(--white);
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3.5rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--coral);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
}
.testi-card p {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .5rem;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2A4A8A);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
}
.testi-author span {
  font-size: .8rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Case Study Teaser ── */
.case-teaser {
  padding: 60px 0 80px;
  background: var(--warm);
}
.case-teaser .tag { margin-bottom: 1.5rem; }
.case-teaser-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--coral);
}
.case-teaser-meta { flex: 1; }
.case-teaser-client {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .6rem;
}
.case-teaser-client span {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.case-client-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}
.case-teaser-result {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  max-width: 480px;
}
.case-teaser-stats {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding-left: 3rem;
}
.case-stat { text-align: center; }
.case-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: .3rem;
}
.case-stat span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.4;
  display: block;
  max-width: 80px;
}
@media (max-width: 900px) {
  .case-teaser-inner { flex-direction: column; gap: 2rem; padding: 2rem; }
  .case-teaser-stats { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.5rem; width: 100%; justify-content: space-around; }
}
@media (max-width: 640px) {
  .case-teaser-stats { gap: 1.5rem; }
  .case-stat strong { font-size: 1.6rem; }
}

/* ── Testimonial / Quote ── */
.quote-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  font-family: var(--font-head);
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.quote-text em { color: var(--coral); font-style: normal; }
.quote-author {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  position: relative;
  z-index: 1;
}
.quote-author strong { color: rgba(255,255,255,.85); display: inline; font-size: 1rem; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, #2A4A8A 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-placeholder {
  text-align: center;
  color: rgba(255,255,255,.6);
}
.about-placeholder i { font-size: 5rem; display: block; margin-bottom: .75rem; }
.about-placeholder span { font-size: .9rem; }
.about-chip {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-chip-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #0077B5 0%, #005e94 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.15rem;
}
.about-chip-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--navy); }
.about-chip-text span { font-size: .8rem; color: var(--muted); }

.about h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
  line-height: 1.22;
  letter-spacing: -.02em;
}
.about p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.about p strong { color: var(--text); }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.value-item::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

/* ── Final CTA ── */
.cta-section {
  padding: 100px 0;
  background: var(--warm);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.cta-section h2 em { font-style: normal; color: var(--coral); }
.cta-section p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-sub {
  margin-top: 1.5rem;
  font-size: .88rem !important;
  color: var(--muted) !important;
}
.cta-sub a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--navy); }

/* ── Footer ── */
footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,.5);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.footer-logo span { color: var(--coral); }
.footer-meta { font-size: .82rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner, .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-card-wrap { display: none; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps::before { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card.featured { transform: none; }
  .about-chip { display: none; }
}
/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: .9rem 1.5rem;
    font-size: 1rem;
    color: var(--navy);
  }
  .btn-nav {
    margin: .75rem 1.5rem;
    display: inline-flex;
    justify-content: center;
    border-radius: 50px;
  }
  .hero { padding-top: 110px; padding-bottom: 70px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
