:root {
  --navy: #0b1220;
  --navy-2: #111c31;
  --blue: #1999e6;
  --red: #ff4b51;
  --white: #ffffff;
  --muted: #667085;
  --light: #f5f7fa;
  --border: #e6eaf0;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: white;
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
nav a { opacity: .88; }
nav a:hover { opacity: 1; }
.nav-cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 40%, rgba(25,153,230,.18), transparent 26%),
    radial-gradient(circle at 72% 72%, rgba(255,75,81,.12), transparent 24%),
    var(--navy);
}
.hero-shape { position: absolute; pointer-events: none; }
.shape-one {
  width: 560px; height: 560px; right: -220px; top: 90px;
  background: linear-gradient(145deg, rgba(25,153,230,.12), rgba(25,153,230,0));
  transform: rotate(18deg);
}
.shape-two {
  width: 460px; height: 460px; left: -280px; bottom: -250px;
  border-radius: 50%; background: rgba(255,75,81,.07);
}
.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  padding-top: 70px;
}
.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--blue); }
.hero-text {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--red); box-shadow: 0 12px 30px rgba(255,75,81,.22); }
.button.secondary { color: white; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.hero-mark { display: grid; place-items: center; position: relative; min-height: 430px; }
.hero-mark img { position: relative; z-index: 1; width: min(410px, 78%); max-height: 410px; object-fit: contain; }
.mark-glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,153,230,.16), transparent 65%);
  filter: blur(4px);
}

.section { padding: 105px 0; }
.section h2 { margin: 0; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.03; letter-spacing: -.045em; }
.section-text { margin: 22px 0 0; max-width: 780px; color: var(--muted); font-size: 18px; }
.section-light { background: var(--light); }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-intro { margin: 0; color: var(--muted); font-size: 16px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 30px rgba(11,18,32,.035);
}
.card-number { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.card h3 { margin: 42px 0 8px; font-size: 19px; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.accent-section { color: white; background: var(--navy); }
.accent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.accent-section h2 { max-width: 600px; }
.accent-text { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 16px; }
.approach-list { border-top: 1px solid rgba(255,255,255,.1); }
.approach-list div { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.approach-list strong { color: var(--blue); font-size: 12px; }
.approach-list span { color: rgba(255,255,255,.82); }

.why-us { background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item { padding: 24px; border: 1px solid var(--border); border-radius: 14px; background: white; }
.trust-item strong { display: block; margin-bottom: 8px; font-size: 16px; }
.trust-item span { color: var(--muted); font-size: 13px; line-height: 1.55; }

.contact { padding-top: 40px; }
.contact-box {
  display: flex; align-items: center; justify-content: space-between; gap: 35px;
  padding: 48px; border: 1px solid var(--border); border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f7f9fc);
}
.contact-box h2 { font-size: clamp(34px, 4vw, 52px); }
.contact-box p:not(.eyebrow) { max-width: 680px; margin: 16px 0 0; color: var(--muted); }
.contact-box .button { flex: 0 0 auto; }

.footer { padding: 28px 0; border-top: 1px solid var(--border); background: white; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.footer-brand { color: var(--navy); }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; text-align: right; }

@media (max-width: 900px) {
  .hero-grid, .accent-grid, .section-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 20px; padding-top: 110px; }
  .hero-mark { min-height: 280px; }
  .hero-mark img { width: min(300px, 62%); }
  .section-heading { gap: 20px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 650px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .nav { min-height: 72px; }
  .brand span { display: none; }
  nav { gap: 10px; font-size: 11px; }
  nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 14px; }
  .hero { min-height: 760px; }
  .hero-grid { min-height: 760px; padding-top: 90px; }
  .hero h1 { font-size: clamp(45px, 13vw, 66px); }
  .hero-text { font-size: 15px; }
  .hero-mark { min-height: 245px; }
  .hero-mark img { width: min(270px, 72%); }
  .section { padding: 78px 0; }
  .section h2 { font-size: 39px; }
  .cards, .trust-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card h3 { margin-top: 28px; }
  .contact-box { padding: 30px 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { align-items: flex-start; text-align: left; }
}


.contact-details{display:flex;flex-wrap:wrap;gap:10px 22px;margin-top:18px}.contact-details a{color:inherit;text-decoration:none;font-weight:600}.contact-details a:hover{text-decoration:underline}.contact-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:flex-end}.button.whatsapp{background:transparent;border:1px solid rgba(11,18,32,.14);color:#0b1220}.button.whatsapp:hover{background:#f4f6f9}.experience-note{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}.business-experience{padding-top:0;padding-bottom:20px}@media (max-width:760px){.experience-note{grid-template-columns:1fr;gap:14px}.contact-actions{justify-content:flex-start;margin-top:18px}.contact-details{flex-direction:column;gap:8px}}
