/* ═══════════════════════════════════════════
   SEATECH SOLUTIONS — MAIN STYLESHEET
   ═══════════════════════════════════════════ */

:root {
  --navy:    #07111f;
  --navy2:   #0d1f35;
  --navy3:   #132840;
  --blue:    #1a6fb5;
  --sky:     #38adf5;
  --sky-lt:  #a8d8f8;
  --white:   #ffffff;
  --off-wht: #f0f5fb;
  --gray:    #8a9bb0;
  --text:    #1e2d3d;
  --text2:   #4a5e72;
  --border:  #d6e4f0;
  --green:   #22c55e;
  --accent:  #38adf5;
  --shadow:  0 8px 40px rgba(7,17,31,0.12);
  --shadow2: 0 2px 12px rgba(7,17,31,0.08);
  --radius:  14px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}

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

/* ── UTILS ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin: 12px 0 16px;
}
.section-header p {
  color: var(--text2);
  font-size: 18px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: var(--sky-lt); }

.section-tag {
  display: inline-block;
  background: rgba(56,173,245,0.12);
  color: var(--sky);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(56,173,245,0.25);
}
.section-tag.light {
  background: rgba(255,255,255,0.1);
  color: var(--sky-lt);
  border-color: rgba(255,255,255,0.2);
}

.btn-primary {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,173,245,0.4);
}
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--sky-lt);
  padding: 15px 32px;
  border-radius: 50px;
  border: 1px solid rgba(168,216,248,0.35);
  font-size: 16px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: rgba(56,173,245,0.1);
  border-color: var(--sky);
  color: var(--white);
}

.accent { color: var(--sky); }

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

/* ════════════════════════
   NAV
════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(7,17,31,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--sky);
  color: var(--navy);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-thin { font-weight: 400; opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  background: var(--sky);
  color: var(--navy);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--white);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
}

/* ════════════════════════
   HERO
════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,173,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,173,245,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.g1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a6fb5, transparent 70%);
  top: -100px; right: -100px;
}
.g2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #38adf5, transparent 70%);
  bottom: -100px; left: 10%;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(56,173,245,0.15);
  color: var(--sky);
  border: 1px solid rgba(56,173,245,0.3);
  padding: 7px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--sky-lt);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 40px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat { text-align: center; padding: 0 32px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--sky);
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--sky-lt);
  display: block;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════
   SERVICES
════════════════════════ */
.services-section { background: var(--off-wht); }

.service-category { margin-bottom: 64px; }
.cat-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
}
.cat-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--sky);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sky);
}

.service-card.featured {
  border-color: rgba(56,173,245,0.3);
  background: linear-gradient(135deg, var(--white) 0%, rgba(56,173,245,0.04) 100%);
}

.featured-tag {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--sky);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-bullets {
  list-style: none;
  margin-bottom: 20px;
}
.service-bullets li {
  font-size: 14px;
  color: var(--text2);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.service-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sky);
  font-size: 12px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}
.service-link:hover { color: var(--sky); }

/* ════════════════════════
   WHO WE SERVE
════════════════════════ */
.dark-section { background: var(--navy); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.audience-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.audience-card:hover {
  background: rgba(56,173,245,0.1);
  border-color: rgba(56,173,245,0.4);
  transform: translateY(-4px);
}

.aud-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.audience-card h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--sky-lt);
  font-size: 15px;
  line-height: 1.65;
}

/* ════════════════════════
   TECHNOLOGY
════════════════════════ */
.tech-section { background: var(--white); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.tech-feature {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--off-wht);
  transition: all 0.3s;
}
.tech-feature:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow2);
  background: var(--white);
}

.tech-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.tech-feature h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
}

.tech-feature p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
}

.ehr-logos {
  text-align: center;
  padding: 40px;
  background: var(--off-wht);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.ehr-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.ehr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ehr-badge {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy2);
  transition: all 0.2s;
}
.ehr-badge:hover {
  border-color: var(--sky);
  color: var(--blue);
}

/* ════════════════════════
   RESULTS
════════════════════════ */
.results-section { background: var(--navy2); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
}
.result-card:hover {
  background: rgba(56,173,245,0.12);
  border-color: rgba(56,173,245,0.4);
  transform: translateY(-4px);
}

.result-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.result-desc {
  font-size: 13px;
  color: var(--sky-lt);
  line-height: 1.5;
}

/* ════════════════════════
   SPECIALTIES
════════════════════════ */
.specialties-section { background: var(--off-wht); }

.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.specialty-pill {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: default;
  transition: all 0.25s;
}
.specialty-pill:hover {
  background: var(--navy);
  color: var(--sky);
  border-color: var(--navy);
  transform: scale(1.04);
}

/* ════════════════════════
   TESTIMONIALS
════════════════════════ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-wht);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--sky);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--sky);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

.testimonial-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--sky);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.author-role {
  font-size: 13px;
  color: var(--gray);
}

/* ════════════════════════
   COMPLIANCE
════════════════════════ */
.compliance-section { background: var(--navy); }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.compliance-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.compliance-item:hover {
  border-color: rgba(56,173,245,0.4);
  background: rgba(56,173,245,0.08);
}

.comp-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.compliance-item h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.compliance-item p {
  color: var(--sky-lt);
  font-size: 14px;
  line-height: 1.65;
}

/* ════════════════════════
   ABOUT
════════════════════════ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-tag { margin-bottom: 16px; }

.about-text h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-wht);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stat-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  border: 1px solid rgba(56,173,245,0.2);
}

.asc-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: var(--sky);
  display: block;
  line-height: 1;
}

.asc-label {
  color: var(--sky-lt);
  font-size: 15px;
  margin-top: 8px;
  display: block;
}

/* ════════════════════════
   FAQ
════════════════════════ */
.faq-section { background: var(--off-wht); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off-wht); }

.faq-arrow {
  font-size: 22px;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
}
.faq-a p { color: var(--text2); font-size: 15px; line-height: 1.7; }

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-item.open { border-color: var(--sky); }

/* ════════════════════════
   CONTACT
════════════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }

.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-icon {
  width: 44px; height: 44px;
  background: rgba(56,173,245,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cd-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 4px;
}

.cd-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrap {
  background: var(--off-wht);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(56,173,245,0.15);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: var(--sky-lt);
  font-size: 15px;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--sky-lt);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(168,216,248,0.5);
}
.footer-bottom a {
  color: rgba(168,216,248,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px 32px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .nav-links .nav-cta { margin: 8px 0 0; text-align: center; }
  .hamburger { display: flex; }

  .hero-stats { flex-direction: column; gap: 8px; }
  .stat-divider { width: 60px; height: 1px; }

  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .result-card { padding: 24px 16px; }
  .result-num { font-size: 34px; }
}
