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

:root {
  --navy:   #0d1f35;
  --navy2:  #142840;
  --blue:   #1a6bba;
  --sky:    #3a9bd5;
  --accent: #e8f4fd;
  --white:  #ffffff;
  --gray:   #6b7a8d;
  --light:  #f4f7fb;
  --border: #dce6f0;
}

html { scroll-behavior: smooth; }

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

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

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span { color: var(--blue); }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 6% 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, #0e2d4e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(26,107,186,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(58,155,213,0.12) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--sky);
  border-radius: 50%;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
h1 em {
  font-style: normal;
  color: var(--sky);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 2rem;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.hero-stats {
  position: absolute; right: 6%; bottom: 80px; z-index: 1;
  display: flex; gap: 3rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.3rem;
}

/* ── SECTION SHARED ── */
section { padding: 100px 6%; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
}

/* ── SERVICES ── */
#services { background: var(--light); }
.services-header { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--accent); }

.service-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 22px; height: 22px; color: var(--blue); }

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── WHY ── */
#why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-visual { position: relative; }

.why-card-main {
  background: var(--navy);
  border-radius: 14px;
  padding: 2.5rem;
  color: var(--white);
}
.why-card-main h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.why-card-main p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.why-card-float {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--blue);
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(26,107,186,0.35);
}
.why-card-float .big { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; }
.why-card-float .small { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }

.why-points { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.why-points li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--gray); line-height: 1.6;
}
.why-points li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CONTACT ── */
#contact { background: var(--navy); color: var(--white); }
#contact h2 { color: var(--white); }
#contact .section-intro { color: rgba(255,255,255,0.55); max-width: 460px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-dot {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.contact-dot svg { width: 16px; height: 16px; color: var(--sky); }
.contact-item-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; }
.contact-item-text span { font-size: 0.95rem; color: rgba(255,255,255,0.85); }

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--sky); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 0.5rem; }

/* ── FOOTER ── */
footer {
  background: #08131f;
  padding: 2rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer .logo { font-size: 1.1rem; }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

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

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }
  #why { grid-template-columns: 1fr; gap: 3rem; }
  .why-card-float { bottom: -20px; right: 0; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
