/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Colors ───────────────────────────────────────── */
:root {
  --midnight: #0B1D3A;
  --midnight-light: #132D54;
  --mint: #5EEAD4;
  --mint-dark: #3ECFB2;
  --mint-light: #D1FAF5;
  --accent-warm: #F97316;
  --white: #ffffff;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
}

/* ── Utility ──────────────────────────────────────── */
.accent { color: var(--mint); }
.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--mint);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--midnight);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
}
.btn--primary:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94, 234, 212, 0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--midnight);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--mint);
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94, 234, 212, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 58, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.15);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--mint);
  background: var(--mint);
  color: var(--midnight);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mint); }
.nav-cta {
  background: var(--mint) !important;
  color: var(--midnight) !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}
.nav-cta:hover {
  background: var(--mint-dark) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--white);
  box-shadow: 0 -6px 0 var(--white), 0 6px 0 var(--white);
  transition: all 0.3s ease;
}
.nav-toggle.active .hamburger {
  background: transparent;
  box-shadow: 0 -6px 0 transparent, 0 6px 0 transparent;
}
.nav-toggle.active .hamburger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--white);
  transform: rotate(45deg);
}
.nav-toggle.active .hamburger::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--white);
  transform: rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero image */
.hero-image {
  position: relative;
}
.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.6;
}
.hero-floating-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  z-index: 3;
}
.floating-card-icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  flex-shrink: 0;
}
.floating-card-text {
  display: flex;
  flex-direction: column;
}
.floating-card-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--midnight);
}
.floating-card-text span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* Hero decorative shapes */
.hero-shape { position: absolute; border-radius: 50%; }
.hero-shape--circle {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94,234,212,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-shape--rect {
  width: 200px;
  height: 200px;
  background: var(--mint);
  opacity: 0.06;
  border-radius: 32px;
  bottom: 10%;
  left: -40px;
  transform: rotate(25deg);
  pointer-events: none;
}
.hero-shape--dot {
  width: 12px;
  height: 12px;
  background: var(--mint);
  opacity: 0.5;
  top: 25%;
  left: 48%;
  pointer-events: none;
}
.hero-shape--line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), transparent);
  top: 42%;
  left: 47%;
  border-radius: 2px;
  pointer-events: none;
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--midnight), var(--mint), var(--midnight));
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 29, 58, 0.12);
  border-color: var(--mint);
}
.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-accent { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--mint-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--mint);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(11, 29, 58, 0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 16px 40px rgba(11, 29, 58, 0.2);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: var(--mint);
  opacity: 0.15;
  border-radius: 28px;
  transform: rotate(15deg);
  z-index: -1;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
}
.about-value-icon {
  width: 32px;
  height: 32px;
  background: var(--mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  flex-shrink: 0;
}

/* ── Why Us ───────────────────────────────────────── */
.why {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94,234,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content .section-tag { background: var(--mint); }
.why-content .section-title { color: var(--white); margin-bottom: 16px; }
.why-content .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mint);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.why-item-text h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.why-visual {
  position: relative;
}
.why-visual-bg {
  position: absolute;
  inset: 20px;
  background: var(--mint);
  opacity: 0.1;
  border-radius: 24px;
  z-index: 0;
}
.why-visual img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}
.why-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  z-index: 2;
}
.why-badge svg {
  width: 32px;
  height: 32px;
  color: var(--midnight);
  flex-shrink: 0;
}
.why-badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--midnight);
}
.why-badge span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: var(--mint);
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape--1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 3px solid rgba(11,29,58,0.1);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}
.cta-shape--2 {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(11,29,58,0.08);
  border-radius: 28px;
  bottom: -40px;
  right: 10%;
  transform: rotate(20deg);
}
.cta-shape--3 {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(11,29,58,0.06);
  border-radius: 50%;
  top: 20%;
  right: 5%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--midnight);
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 1.1rem;
  color: rgba(11,29,58,0.7);
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info .section-desc { margin-bottom: 40px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--mint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--midnight);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--mint-dark); }

/* Form */
.contact-form-wrap {
  position: relative;
}
.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(11, 29, 58, 0.08);
  border: 1px solid var(--gray-200);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--midnight);
  margin-bottom: 8px;
}
.contact-form-card > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--off-white);
  color: var(--gray-800);
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(94,234,212,0.15);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--midnight);
}
.form-success svg { color: var(--mint-dark); flex-shrink: 0; }

/* ── Map ──────────────────────────────────────────── */
.map-section { height: 320px; }
.map-section iframe { width: 100%; height: 100%; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--midnight);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--mint);
  color: var(--midnight);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.footer-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mint); }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-contact a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mint);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--mint-dark); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav Overlay ───────────────────────────── */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--midnight);
  padding: 40px 24px;
  gap: 24px;
  z-index: 999;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links.mobile-open a {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 0; }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-floating-card { left: 16px; bottom: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-img-secondary { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 16px; }
  .about-values { grid-template-columns: 1fr; }
  .why-badge { left: 16px; bottom: 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.75rem; }
}
