:root {
  --navy: #082453;
  --navy-2: #031a3f;
  --green: #4d861d;
  --green-2: #75a63a;
  --ink: #172033;
  --muted: #667085;
  --line: #dfe4ea;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 36, 83, 0.12);
  --radius: 20px;
  --container: 1180px;
}

* { 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(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(8,36,83,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 300px; max-height: 66px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 24px; font-weight: 700; color: var(--navy); }
.main-nav a { font-size: 14px; }
.main-nav a:hover { color: var(--green); }
.nav-cta { padding: 11px 18px; background: var(--navy); color: white !important; border-radius: 999px; }
.lang-toggle {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-weight: 800;
  cursor: pointer;
}
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 7px 0; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(117,166,58,.19), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(8,36,83,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; padding-block: 80px; }
.eyebrow, .section-label {
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0 20px;
  color: var(--navy);
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.045em;
  font-size: clamp(48px, 6vw, 82px);
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--green); }
.hero-copy > p { max-width: 750px; font-size: 19px; color: #475467; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: white; box-shadow: 0 12px 24px rgba(8,36,83,.18); }
.btn-primary:hover { background: var(--green); }
.btn-secondary { border: 1px solid var(--line); background: white; color: var(--navy); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-trust span { font-size: 13px; padding: 7px 11px; border-radius: 999px; background: white; border: 1px solid var(--line); color: #475467; }

.hero-card {
  background: var(--navy);
  color: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(77,134,29,.35);
  border-radius: 28px;
  z-index: -1;
}
.hero-card > h2 { margin: 0 0 20px; font-size: 18px; text-transform: uppercase; letter-spacing: .08em; }
.fact { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); }
.icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: white; color: var(--navy); font-weight: 900; }
.fact h3 { margin: 0 0 5px; font-size: 15px; }
.fact p { margin: 0; color: rgba(255,255,255,.8); font-size: 14px; }

.values-section { padding: 24px 0; border-block: 1px solid var(--line); background: white; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.values-grid article { padding: 20px 28px; border-right: 1px solid var(--line); }
.values-grid article:last-child { border-right: 0; }
.value-icon { color: var(--green); font-size: 28px; font-weight: 900; }
.values-grid h3 { margin: 6px 0 4px; color: var(--navy); font-size: 16px; text-transform: uppercase; }
.values-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.split-layout, .section-heading, .why-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.section h2 { color: var(--navy); font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; margin: 14px 0 20px; }
.section p { color: #475467; }
.section-heading { margin-bottom: 38px; }
.section-heading > p { margin-top: 34px; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-number { position: absolute; top: 20px; right: 24px; font-size: 42px; font-weight: 900; color: rgba(8,36,83,.08); }
.service-card h3 { color: var(--navy); font-size: 23px; line-height: 1.2; margin: 0 0 12px; padding-right: 60px; }

.service-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin: 16px 0 18px;
  border: 1px solid var(--line);
}
.service-photo-wide {
  height: 220px;
}

.service-card p { font-size: 15px; }
.service-card ul { padding-left: 18px; margin: 20px 0 0; color: #344054; }
.service-card li { margin: 8px 0; }
.service-card li::marker { color: var(--green); }
.service-wide { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.two-col-list { columns: 2; column-gap: 36px; }

.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.industry {
  min-height: 125px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.industry:hover { border-color: var(--green); background: #fbfdf8; }
.industry span { color: var(--green); font-weight: 900; }
.industry strong { color: var(--navy); font-size: 18px; }

.section-dark { background: var(--navy-2); color: white; }
.section-dark h2 { color: white; }
.section-label.light { color: #9fd45d; }
.benefits { display: grid; gap: 8px; }
.benefits > div { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.benefits span { color: #a8d66f; font-weight: 900; }
.benefits p { color: rgba(255,255,255,.86); margin: 0; }

.contact-section { background: linear-gradient(135deg, #f6f8fb, #ffffff); }
.contact-links { display: grid; gap: 12px; margin-top: 28px; }
.contact-links a { display: flex; flex-direction: column; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.contact-links strong { color: var(--navy); }
.contact-links span { color: var(--muted); font-size: 14px; }

.contact-form { background: white; border: 1px solid var(--line); border-radius: 22px; padding: 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-weight: 800; font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid #cfd6df;
  border-radius: 9px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid rgba(77,134,29,.16); border-color: var(--green); }
.contact-form small { color: var(--muted); }

footer { background: #061b3d; color: white; padding: 34px 0; }
.footer-wrap { display: grid; grid-template-columns: 260px 1fr auto; gap: 24px; align-items: center; }
.footer-wrap img { width: 240px; filter: brightness(0) invert(1); }
.footer-wrap p { margin: 0; font-size: 13px; color: rgba(255,255,255,.76); }

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a, .lang-toggle { text-align: center; }
  .lang-toggle { width: 100%; }
  .hero-grid, .split-layout, .section-heading, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-grid { padding-block: 60px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid article:nth-child(2) { border-right: 0; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 230px; }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: 44px; }
  .hero-copy > p { font-size: 17px; }
  .hero-card { padding: 24px; }
  .values-grid, .services-grid, .industries-grid { grid-template-columns: 1fr; }
  .values-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-wide { grid-column: auto; display: block; }
  .two-col-list { columns: 1; }
  .section { padding: 72px 0; }
  .section h2 { font-size: 36px; }
}
