:root{
  --navy:#202A44;
  --navy-900:#141B2D;
  --navy-700:#1A2238;
  --navy-100:#EEF1F8;
  --ink:#0F172A;
  --muted:#475467;
  --border:#E6E8EF;
  --bg:#ffffff;
  --shadow:0 12px 30px rgba(15,23,42,.10);
  --radius:18px;
  --container:1180px;
  --navy-light: #EEF1F8;
  --text-dark: #0F172A;
  --text-muted: #475467;
  --border: #E6E8EF;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--container);margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{
  background:var(--navy);
  color:#fff;
  font-size:13px;
}
.topbar .row{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar a{opacity:.95}
.topbar a:hover{opacity:1;text-decoration:underline}
.topbar .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
}

/* Header */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:900;letter-spacing:.2px;
  color:var(--navy);
}
.brand img{width:44px;height:44px;object-fit:contain}
.nav-links{display:flex;gap:16px;align-items:center}
.nav-links a{
  font-weight:700;
  color:#1f2937;
  padding:10px 12px;
  border-radius:14px;
}
.nav-links a:hover{background:var(--navy-100);color:var(--navy)}
.nav-cta{display:flex;gap:10px;align-items:center}
.menu-btn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:900;
  color:var(--navy);
}
@media(max-width:980px){
  .menu-btn{display:inline-flex}
  .nav-links{display:none}
  .nav-links.open{
    display:flex;
    position:absolute;
    left:18px;right:18px;top:132px;
    flex-direction:column;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:10px;
    box-shadow:var(--shadow);
  }
  .nav-links.open a{width:100%}
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 14px;border-radius:14px;
  border:1px solid var(--border);
  background:#fff;color:var(--navy);
  font-weight:800;cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.btn-primary{background:var(--navy);color:#fff;border-color:var(--navy)}
.btn-primary:hover{background:var(--navy-700);border-color:var(--navy-700)}
.btn-soft{background:var(--navy-100);border-color:var(--navy-100)}
.btn-soft:hover{background:#e7ecf8;border-color:#e7ecf8}

/* Sections */
.section{padding:56px 0}
.section-tight{padding:34px 0}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  background:var(--navy-100);
  border:1px solid #e4e8f3;
  color:var(--navy);
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
  text-transform:uppercase;
}

/* Hero */
.hero{padding:52px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
@media(max-width:980px){.hero-grid{grid-template-columns:1fr}}
.h1{
  font-size:46px;
  line-height:1.12;
  margin:14px 0 10px;
  letter-spacing:-.6px;
}
@media(max-width:520px){.h1{font-size:36px}}
.lead{
  color:var(--muted);
  font-size:18px;
  margin:0 0 18px;
  max-width:65ch;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:14px 0 10px}
.hero-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:linear-gradient(180deg,#fff 0%, var(--navy-100) 100%);
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-visual{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:radial-gradient(1000px 400px at 20% 10%, rgba(32,42,68,.12), transparent 60%),
             radial-gradient(800px 300px at 70% 60%, rgba(32,42,68,.10), transparent 55%),
             #fff;
  box-shadow:0 10px 26px rgba(15,23,42,.06);
  padding:18px;
}
.hero-visual .frame{
  border:1px solid #dbe2f4;
  border-radius:18px;
  padding:18px;
  background:#fff;
}
.metrics{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}
.metric{
  border:1px solid #dde3f2;
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.metric b{display:block;color:var(--navy);font-size:18px}
.metric span{display:block;color:var(--muted);font-weight:700;font-size:12px}

/* Cards & grids */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media(max-width:980px){.grid-3,.grid-2{grid-template-columns:1fr}}
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  padding:18px;
  box-shadow:0 8px 22px rgba(15,23,42,.05);
}
.card h3{margin:0 0 8px;color:var(--navy)}
.card p{margin:0 0 10px;color:var(--muted)}
.badges{display:flex;flex-wrap:wrap;gap:8px}
.badge{
  font-size:12px;
  font-weight:900;
  color:var(--navy);
  background:var(--navy-100);
  border:1px solid #e4e8f3;
  padding:6px 10px;
  border-radius:999px;
}
.icon{
  width:34px;height:34px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:var(--navy-100);
  border:1px solid #e4e8f3;
  margin-bottom:10px;
}
.icon svg{width:18px;height:18px;stroke:var(--navy);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* Highlight */
.highlight{
  border:1px solid #d9e0f3;
  background:var(--navy-100);
  border-radius:var(--radius);
  padding:18px;
}
.highlight strong{color:var(--navy)}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media(max-width:980px){.split{grid-template-columns:1fr}}

/* Lists */
.ul{margin:0;padding-left:18px;color:var(--muted)}
.ul li{margin:8px 0}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:28px 0;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:14px;
}
@media(max-width:980px){.footer-grid{grid-template-columns:1fr}}
.footer a{color:var(--navy);font-weight:800}
.small{font-size:12px;color:var(--muted)}

/* Forms */
.form{display:grid;gap:12px}
.input{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  outline:none;
  font-weight:650;
}
.input:focus{
  border-color:#c9d2eb;
  box-shadow:0 0 0 4px rgba(32,42,68,.10);
}
textarea.input{min-height:130px;resize:vertical}

/* =========================
   WhatsApp Floating Button
   ========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}


.svg-icon{
  width:20px;
  height:20px;
  stroke: var(--navy);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* =========================
   Hero Mobile Visibility
   ========================= */
.desktop { display: inline; }
.mobile { display: none; }

@media (max-width: 768px) {
  .desktop { display: none; }
  .mobile { display: inline; }
}

/* =========================
   Hero Animation
   ========================= */
.hero-animate {
  opacity: 0;
  transform: translateY(10px);
  animation: heroIn 700ms ease forwards;
}

.hero-animate.delay-1 { animation-delay: 120ms; }
.hero-animate.delay-2 { animation-delay: 260ms; }
.hero-animate.delay-3 { animation-delay: 420ms; }
.hero-animate.delay-4 { animation-delay: 560ms; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================
   Mobile Header Fix
   ========================= */
@media (max-width: 768px) {

  /* Top bar: allow wrapping */
  .topbar .container,
  .topbar-container {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }

  /* Main header row: wrap and align */
  header .container,
  .navbar .container,
  .header .container {
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  /* Logo area: keep it clean */
  .brand,
  .logo {
    flex: 1 1 auto;
    min-width: 160px;
  }

  .brand img,
  .logo img {
    height: 34px;
    width: auto;
  }

  /* Actions container (buttons) */
  .nav-actions,
  .header-actions,
  .actions {
    flex: 1 1 100%;
    display: flex;
    gap: 10px;
  }

  /* Buttons: prevent huge oversized look */
  .nav-actions .btn,
  .header-actions .btn,
  .actions .btn {
    flex: 1 1 50%;
    padding: 12px 12px;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
  }

  /* If you have a “Menu” button */
  .menu-btn,
  .nav-toggle {
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .btn-explore,
  a[href*="services"],
  .explore-btn {
    display: none;
  }

  /* Make the remaining primary button full width */
  .nav-actions .btn.primary,
  .header-actions .btn.primary,
  .actions .btn.primary {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px){
  #exploreBtn { display:none; }
}

@media (max-width: 768px){
  .whatsapp-float{ bottom: 16px; right: 16px; }
}
