/* ============================================================
   ROOT & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #FF5F1F;
  --accent-dark:  #E04A0A;
  --accent-soft:  rgba(255,95,31,0.13);
  --accent-glow:  rgba(255,95,31,0.45);
  --navy:         #0B1120;
  --navy2:        #0E1628;
  --navy3:        #111D30;
  --navy4:        #162036;
  --navy5:        #1B2740;
  --gray:         #7A8599;
  --gray-light:   #A8B4CC;
  --border:       rgba(255,255,255,0.07);
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--white);
  background: var(--navy);
  line-height: 1.7;
  font-size: 17px;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy3);
  color: var(--white);
  z-index: 9999;
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
}
.cookie-content { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 14px; color: var(--gray-light); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-box {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 28px 88px rgba(0,0,0,0.7);
  position: relative;
}
.modal-box h3 { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.cookie-option { margin-bottom: 16px; }
.cookie-option label { display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; color: var(--white); }
.cookie-option label input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }
.cookie-option p { font-size: 13px; color: var(--gray); margin-top: 4px; padding-left: 26px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }

.modal-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.request-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.request-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.request-form input,
.request-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy5);
  color: var(--white);
  transition: border-color 0.2s;
  resize: vertical;
}
.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.btn-block { width: 100%; text-align: center; }

.request-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
}
.request-success h4 { font-size: 22px; font-weight: 700; color: var(--white); margin-top: 8px; }
.request-success p { font-size: 15px; color: var(--gray); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(255,95,31,0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--accent-glow);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 20px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
  box-shadow: 0 2px 14px rgba(255,95,31,0.3);
}
.btn-service:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-large { padding: 18px 52px; font-size: 17px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,17,32,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  transition: box-shadow 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
.nav-logo span { color: var(--white); }

.footer-logo {
  margin-bottom: 16px;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 2px 14px rgba(255,95,31,0.3) !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px var(--accent-glow) !important;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 100px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
  color: var(--white);
}
.stat-label {
  font-size: 15px;
  opacity: 0.88;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,17,32,0.95) 0%, rgba(11,17,32,0.65) 55%, rgba(11,17,32,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 32px;
  margin-left: calc((100vw - 1200px) / 2);
  padding-left: 32px;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(255,95,31,0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
}
.hero-content h1 {
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-content p {
  font-size: clamp(16px, 1.8vw, 18px);
  margin-bottom: 40px;
  color: var(--gray-light);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 120px 0;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner { max-width: 860px; }
.philosophy h2 { color: var(--white); }
.philosophy-text {
  font-size: 19px;
  color: var(--gray);
  max-width: 760px;
  line-height: 1.85;
  font-weight: 400;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.services h2 { color: var(--white); }

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 60px;
}
.service-row:first-of-type { margin-top: 60px; }

.service-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card:hover {
  border-color: rgba(255,95,31,0.4);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.service-row--reverse .service-card {
  direction: rtl;
}
.service-row--reverse .service-card > * {
  direction: ltr;
}
.service-img-wrap {
  height: 360px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img { transition: transform 0.55s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255,95,31,0.3);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.service-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.service-body ul {
  list-style: none;
  margin: 0 0 8px 0;
}
.service-body ul li {
  font-size: 15px;
  color: var(--gray);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.service-price {
  margin-top: 18px;
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   PROCESS / ADVANTAGES
   ============================================================ */
.process {
  padding: 120px 0;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.process h2 { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  background: var(--navy3);
  transition: background 0.25s, transform 0.25s;
  position: relative;
}
.step:last-child { border-right: none; }
.step:hover {
  background: var(--navy4);
}
.step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.step .support-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
  border: 1px solid rgba(255,95,31,0.22);
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.testimonials h2 { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.testimonial-card {
  background: var(--navy3);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--navy4); }
.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.author-location {
  font-size: 13px;
  color: var(--gray);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
}
.faq h2 { color: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.faq-item {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy3);
  transition: background 0.2s;
  cursor: pointer;
}
.faq-item:hover { background: var(--navy4); }
.faq-item:nth-child(2n) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.faq-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--navy);
}
.contact h2 { color: var(--white); }
.contact-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 56px;
  margin-top: -8px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.info-item {
  display: flex;
  gap: 18px;
  padding: 36px 32px;
  background: var(--navy3);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.info-item:last-child { border-right: none; }
.info-item:hover { background: var(--navy4); }
.info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(255,95,31,0.22);
}
.info-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-item p { font-size: 15px; color: var(--white); line-height: 1.6; }
.info-item a { color: var(--white); font-weight: 700; transition: color 0.2s; }
.info-item a:hover { color: var(--accent); }

.map-wrap {
  margin-bottom: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy2);
  color: var(--gray);
  padding-top: 72px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 10px; }
.footer-brand .disclaimer { font-size: 12px; color: #334155; font-style: italic; }
.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.22s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { width: 100%; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: #334155;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-pref-btn {
  background: none;
  border: 1px solid #1e2d42;
  color: #334155;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cookie-pref-btn:hover { border-color: #3d5672; color: #7A8599; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-content { margin-left: 0; }
}

@media (max-width: 960px) {
  .service-card { grid-template-columns: 1fr; }
  .service-row--reverse .service-card { direction: ltr; }
  .service-img-wrap { height: 260px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonial-card:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); }
  .info-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(3) { border-top: 1px solid var(--border); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 24px 0; }
  .stat-item:last-child { border-bottom: none; }
  .service-body { padding: 28px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy2);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 14px 28px;
    font-size: 15px;
  }
  .nav-links li a::after { display: none; }
  .burger { display: flex; }
  .hero-content h1 { font-size: 38px; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 0 20px; }
  .btn-large { padding: 16px 32px; font-size: 16px; }
}
