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

:root {
  --navy: #0d1b2a;
  --blue: #1a6bdb;
  --blue-light: #3d8ef0;
  --accent: #f0a500;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #0d1b2a;
  --muted: #6b7a8d;
  --border: #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,249,252,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.logo span, .blue-span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.nav-cta:hover { background: var(--blue-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  top: -80px; right: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(26,107,219,0.12) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26,107,219,0.08);
  color: var(--blue);
  border: 1px solid rgba(26,107,219,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(13,27,42,0.18);
  display: block;
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── SECTION BASE ── */
section { padding: 80px 5%; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

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

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.white-title { color: #fff; }

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
}

.dim-sub { color: rgba(255,255,255,0.55); }

/* ── SERVICES ── */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: default;
  background: var(--surface);
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(26,107,219,0.12);
  transform: translateY(-4px);
  border-color: rgba(26,107,219,0.25);
}

.service-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.5rem;
}

.service-icon {
  width: 40px; height: 40px;
  background: rgba(26,107,219,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WHY US ── */
.why {
  background: var(--navy);
  color: #fff;
  padding: 80px 5%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.2rem;
}

.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.why-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 0.95rem;
}

.why-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Why image */
.why-image-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.why-img-overlay {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--accent);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.overlay-stat span {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.overlay-stat {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PROCESS ── */
.process { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.process-step { padding: 2rem 1.5rem 2rem 0; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(26,107,219,0.12);
  margin-bottom: 0.5rem;
}

.step-line {
  width: 32px; height: 3px;
  background: var(--blue);
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
.contact { background: var(--surface); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(26,107,219,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
}

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.full-btn { width: 100%; padding: 0.85rem; }

.form-feedback {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2rem;
  color: var(--blue);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

footer .logo { color: #fff; font-size: 1.1rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-image-wrap { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
}

@media (max-width: 700px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
