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

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

html { color-scheme: light only; }

:root {
  --teal: #00687a;
  --teal-light: #008a9e;
  --teal-dark: #004f5c;
  --teal-muted: #e6f4f6;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 2rem;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0,104,122,0.08); }

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 130px;
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}
.nav-logo span { color: var(--gray-800); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links .btn-nav {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-links .btn-nav:hover { background: var(--teal-dark) !important; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-muted);
  border-color: var(--teal-muted);
}

/* ── PAGE WRAPPER ── */
main { padding-top: 140px; }

/* ── SECTION BASICS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 520px;
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {}
.hero-tag {
  display: inline-block;
  background: var(--teal-muted);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.stat-item {}
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,104,122,0.10);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.avatar-stack { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.avatar.a2 { background: #e8f5e9; color: #388e3c; }
.avatar.a3 { background: #fff3e0; color: #f57c00; }
.card-meta { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }
.card-meta strong { color: var(--gray-900); font-weight: 700; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-bottom: 1rem;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--teal-muted);
  transition: 0.3s;
}
.bar.active { background: var(--teal); }

.chart-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.growth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}
.floating-pill {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.pill-1 { top: -16px; right: -16px; color: var(--gray-800); }
.pill-2 { bottom: 24px; left: -24px; color: var(--gray-800); }

/* ── HERO GEO ── */
.hero-geo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
}
.geo-block {
  position: absolute;
  border-radius: 20px;
}
.geo-1 {
  width: 72%;
  height: 72%;
  background: var(--teal);
  top: 0; right: 0;
  opacity: 1;
}
.geo-2 {
  width: 48%;
  height: 48%;
  background: var(--teal-muted);
  bottom: 0; left: 0;
  border-radius: 50%;
}
.geo-3 {
  width: 36%;
  height: 36%;
  background: var(--teal-light);
  bottom: 12%;
  right: 8%;
  opacity: 0.35;
  border-radius: 12px;
  transform: rotate(18deg);
}

/* ── LOGOS ── */
.logos-section {
  padding: 3rem 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.logos-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 2rem;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,104,122,0.10);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--gray-50); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.step {
  text-align: center;
  padding: 1.5rem;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
}
.stars { color: var(--teal); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}
.author-biz {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cta-band p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .nav-logo { font-size: 1.2rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── PAGE HEROES (inner pages) ── */
.page-hero {
  background: var(--teal);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.page-hero .section-label { color: rgba(255,255,255,0.7); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICES PAGE ── */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.services-detail:nth-child(even) .detail-text { order: 2; }
.services-detail:nth-child(even) .detail-visual { order: 1; }
.detail-visual {
  background: var(--teal-muted);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-visual svg { width: 80px; height: 80px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0.5; }
.detail-text .section-title { font-size: 1.75rem; }
.detail-text p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-top: 1rem; }
.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}
.feature-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing-section { background: var(--gray-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 2.25rem;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,104,122,0.12);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); vertical-align: super; font-size: 1.1rem; }
.pricing-per { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--teal); font-weight: 700; }
.pricing-card .btn { width: 100%; text-align: center; }

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  background: var(--teal-muted);
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,104,122,0.05) 20px,
    rgba(0,104,122,0.05) 21px
  );
}
.about-img svg { width: 100px; height: 100px; stroke: var(--teal); fill: none; stroke-width: 1; opacity: 0.3; }
.about-text .section-title { font-size: 1.9rem; }
.about-text p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.85; margin-top: 1rem; }

.values-section { background: var(--gray-50); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1.75rem;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.value-card h3::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.value-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(0,104,122,0.09); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--teal-muted);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.team-role { font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-top: 0.2rem; }
.team-bio { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.5rem; line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 10px;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--teal-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-size: 0.875rem; color: var(--gray-800); font-weight: 600; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}
.contact-form-wrap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,104,122,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 0.95rem; font-size: 0.95rem; }

.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--teal-muted);
  border-radius: 10px;
  color: var(--teal);
  font-weight: 600;
  margin-top: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .services-detail { grid-template-columns: 1fr; gap: 2rem; }
  .services-detail:nth-child(even) .detail-text { order: unset; }
  .services-detail:nth-child(even) .detail-visual { order: unset; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid var(--gray-100); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
