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

:root {
  --navy-900: #0a1730;
  --navy-800: #0f1e3d;
  --navy-700: #142a52;
  --navy-600: #1c3a6e;
  --blue-500: #1e6fd9;
  --blue-400: #2f7fef;
  --blue-300: #5b9bf5;
  --blue-50: #eaf2fe;
  --ink: #101828;
  --gray-700: #475467;
  --gray-500: #667085;
  --gray-200: #e4e7ec;
  --gray-100: #f2f4f7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 16px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 23, 48, 0.14);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue-500);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--gray-700);
  font-size: 16.5px;
}

section { padding: 96px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(30, 111, 217, 0.35);
}
.btn-primary:hover { background: var(--blue-400); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); }

.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  background: rgba(10, 23, 48, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(10,23,48,0.18);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
}
.logo .logo-mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.02em;
}
.logo .logo-sub {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--blue-300);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.nav-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, #16264a 0%, var(--navy-900) 55%);
  color: var(--white);
  padding: 190px 0 120px;
  overflow: hidden;
}
.hero .dots {
  position: absolute;
  top: 60px; right: 40px;
  width: 180px; height: 130px;
  background-image: radial-gradient(rgba(91, 155, 245, 0.55) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: 0.7;
}
.hero .angle-shape {
  position: absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-600));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 40%);
  opacity: 0.5;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 56px);
  margin-bottom: 22px;
}
.hero-copy h1 span { color: var(--blue-300); }
.hero-copy p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-trust svg { color: var(--blue-300); flex-shrink: 0; }

.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-card .card-tag {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 18px;
  display: block;
}
.hero-card h3 { color: var(--white); font-size: 24px; margin-bottom: 22px; }
.hero-value-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.hero-value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 500;
}
.check-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-footer .founder { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.hero-card-footer strong { display: block; color: var(--white); font-size: 14.5px; }

/* Stats bar */
.stats-bar {
  background: var(--white);
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.stats-bar .container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 20px;
}
.stat { text-align: center; padding: 0 12px; border-right: 1px solid var(--gray-200); }
.stat:last-child { border-right: none; }
.stat .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy-900);
}
.stat .num span { color: var(--blue-500); }
.stat .label { font-size: 13.5px; color: var(--gray-500); margin-top: 6px; font-weight: 500; }

/* About */
.about { background: var(--paper); padding-top: 140px; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: stretch;
}
.about-visual {
  position: relative;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 65%);
  border-radius: var(--radius-lg);
  padding: 48px 38px;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  box-shadow: var(--shadow-xl);
}
.quote-top { position: relative; z-index: 2; }
.value-block { position: relative; z-index: 2; }
.value-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 14px;
}
.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.value-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.value-chips span:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}
.value-chips svg { color: var(--blue-300); flex-shrink: 0; }
.about-visual .dots {
  position: absolute; bottom: -20px; left: -20px;
  width: 140px; height: 100px;
  background-image: radial-gradient(rgba(91,155,245,0.4) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.about-visual .glow {
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(47,127,239,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.about-visual .quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 76px;
  color: var(--blue-400);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.about-visual p.lead {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 0;
}
.about-visual .founder-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  position: relative;
  z-index: 2;
}
.founder-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.about-visual .founder-row strong { display: block; font-size: 14.5px; }
.about-visual .founder-row span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.6); }
.about-visual .founder-row .founder-role { color: var(--blue-300); font-weight: 600; margin-bottom: 1px; }

.about-copy p { color: var(--gray-700); font-size: 16px; margin-bottom: 18px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.mv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-200);
}
.mv-card .mv-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.mv-card h4 { font-size: 16px; margin-bottom: 8px; }
.mv-card p { font-size: 14px; color: var(--gray-700); }

/* Services */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.services-grid .service-card:nth-child(9) { grid-column: 2 / 3; }
.services-grid .service-card:nth-child(10) { grid-column: 3 / 4; }
.service-card {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: var(--white);
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card h4 { font-size: 16px; margin-bottom: 10px; }
.service-card p { font-size: 13.8px; color: var(--gray-700); }

/* Why us */
.why-us {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us .angle-shape-2 {
  position: absolute;
  bottom: -180px; left: -140px;
  width: 420px; height: 420px;
  background: linear-gradient(135deg, var(--blue-500), transparent 70%);
  clip-path: polygon(0 30%, 70% 0, 100% 100%, 0% 100%);
  opacity: 0.4;
}
.why-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 30px 24px;
}
.why-card .why-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(47,127,239,0.18);
  border: 1px solid rgba(91,155,245,0.4);
  color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h4 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); }
.why-us .section-head p { color: rgba(255,255,255,0.65); }
.why-us .section-head h2 { color: var(--white); }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 34px 28px 28px;
  border: 1px solid var(--gray-200);
}
.process-num {
  position: absolute;
  top: -20px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-500);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(30,111,217,0.4);
}
.process-card h4 { font-size: 18px; margin: 14px 0 10px; }
.process-card p { font-size: 14.5px; color: var(--gray-700); margin-bottom: 16px; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.process-list li { display: flex; gap: 10px; font-size: 13.8px; color: var(--gray-700); }
.process-list svg { color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-500), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 15.5px; max-width: 480px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* FAQ */
.faq { background: var(--paper); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy-900);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--blue-500); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
  color: var(--gray-700);
  font-size: 14.8px;
}
.faq-item.open .faq-answer { max-height: 240px; padding: 0 24px 22px; }

/* Contact */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-row:first-child { padding-top: 0; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(47,127,239,0.18);
  color: var(--blue-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row h4 { color: var(--white); font-size: 14.5px; margin-bottom: 4px; }
.contact-row p, .contact-row a { color: rgba(255,255,255,0.7); font-size: 14px; }
.contact-row a:hover { color: var(--white); }
.map-embed {
  margin-top: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  height: 220px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-card h3 { font-size: 20px; margin-bottom: 6px; }
.contact-form-card > p { color: var(--gray-700); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.form-field input, .form-field textarea, .form-field select {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue-400); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--gray-500); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--blue-50);
  color: var(--navy-900);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--blue-500); flex-shrink: 0; }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-mark { font-size: 26px; }
.footer-brand p { font-size: 13.8px; margin: 16px 0 20px; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: background 0.15s ease;
}
.footer-social:hover { background: var(--blue-500); }
.footer-col h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.fab:hover { transform: scale(1.08); }
.fab-call { background: var(--blue-500); }
.fab-whatsapp { background: linear-gradient(160deg, #6ee58a, #1fae55); padding: 0; overflow: hidden; }
.fab-icon-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transform: scale(1.06); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(9),
  .services-grid .service-card:nth-child(10) { grid-column: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--gray-200); padding-bottom: 20px; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  section { padding: 64px 0; }
  .about { padding-top: 100px; }
  .hero { padding: 150px 0 90px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-banner p { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
