:root {
  --green: #0b6e4f;
  --green-dark: #08563e;
  --blue: #1f3a5f;
  --blue-deep: #162c47;
  --ink: #1e2d3d;
  --muted: #5f6f7f;
  --line: #d9e2ea;
  --line-strong: #cbd7e2;
  --surface: #ffffff;
  --surface-soft: #f5f7f6;
  --surface-accent: #eef4f8;
  --shadow-sm: 0 10px 24px rgba(19, 34, 53, 0.08);
  --shadow-md: 0 22px 48px rgba(18, 35, 55, 0.1);
  --shadow-lg: 0 28px 70px rgba(17, 34, 53, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(11, 110, 79, 0.06), transparent 28%),
    linear-gradient(180deg, #fbfcfc 0%, var(--surface-soft) 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section-tight {
  padding: 48px 0;
}

.centered {
  text-align: center;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.content-flow {
  display: grid;
  gap: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--blue-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.625rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(11, 110, 79, 0.12);
  border-radius: 999px;
  background: rgba(11, 110, 79, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 44px;
}

.section-head.center {
  justify-items: center;
  text-align: center;
}

.section-head.center .lead {
  max-width: 720px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 95, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.card-body {
  display: grid;
  gap: 14px;
  height: 100%;
  padding: 22px;
}

.service-card,
.feature-card,
.industry-card,
.blog-card,
.metric-card,
.process-card {
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.feature-card:hover,
.industry-card:hover,
.blog-card:hover,
.metric-card:hover,
.process-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 110, 79, 0.14);
}

.service-card .card-body,
.industry-card .card-body,
.feature-card .card-body,
.blog-card .card-body,
.metric-card .card-body,
.process-card .card-body {
  align-content: start;
}

.service-card p,
.industry-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.service-card p {
  -webkit-line-clamp: 2;
}

.industry-card p {
  -webkit-line-clamp: 3;
}

.service-card a,
.blog-card a,
.cta-link {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 700;
}

.service-card a::after,
.blog-card a::after,
.cta-link::after {
  content: " →";
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.12), rgba(31, 58, 95, 0.12));
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1px rgba(11, 110, 79, 0.06);
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
}

.btn-row,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 110, 79, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 18px 34px rgba(11, 110, 79, 0.22);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: rgba(31, 58, 95, 0.18);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
  background: rgba(31, 58, 95, 0.05);
  border-color: rgba(31, 58, 95, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 58, 95, 0.08);
  background: rgba(245, 247, 246, 0.88);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(21, 42, 66, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  color: var(--blue-deep);
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.nav-links button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--green-dark);
}

.nav-links a.active,
.nav-links button.active {
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-menu {
  position: relative;
}

.services-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: none;
  min-width: 300px;
  padding: 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(31, 58, 95, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.services-menu:hover .services-menu-panel,
.services-menu:focus-within .services-menu-panel,
.services-menu-panel.is-open {
  display: grid;
  gap: 4px;
}

.services-menu-panel a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.services-menu-panel a:hover {
  background: rgba(31, 58, 95, 0.05);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(31, 58, 95, 0.14);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-deep);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}

.home-hero {
  background:
    radial-gradient(circle at top left, rgba(11, 110, 79, 0.14), transparent 30%),
    linear-gradient(130deg, #f6faf8 0%, #ecf3f0 42%, #f1f5f7 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 58, 95, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(31, 58, 95, 0.1), transparent 24%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.home-hero .hero-copy h1,
.home-hero .hero-copy p {
  color: var(--ink);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(31, 58, 95, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 0;
  align-items: stretch;
}

.hero-figure {
  min-height: 340px;
  background: #d7e0e7;
  border-radius: 12px;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 58, 95, 0.08), rgba(31, 58, 95, 0.42));
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at top left, rgba(11, 110, 79, 0.08), transparent 24%),
    linear-gradient(135deg, #edf3f6 0%, #f7faf9 100%);
  border-bottom: 1px solid rgba(31, 58, 95, 0.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 58, 95, 0.03), transparent 50%);
  pointer-events: none;
}

.page-hero .hero-card {
  padding: 24px;
  border: 1px solid rgba(31, 58, 95, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f7fafb);
  box-shadow: var(--shadow-sm);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumbs strong {
  color: var(--blue-deep);
}

.trust-band {
  position: relative;
  z-index: 4;
  margin-top: 0;
}

.trust-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.trust-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 120px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: var(--green-dark);
}

.problem-grid {
  grid-template-columns: 1fr;
}

.photo-card {
  min-height: 320px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.why-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 248, 0.96));
}

.why-intro .card-body {
  padding: 28px;
}

.why-points {
  grid-template-columns: 1fr;
}

.industry-grid .industry-card .card-body {
  justify-items: start;
}

.section .grid {
  align-items: stretch;
}

.service-card .card-body h3,
.industry-card .card-body h3,
.feature-card .card-body h3 {
  min-height: 2.8em;
}

.service-card .card-body a {
  align-self: end;
}

.home-hero .hero-copy {
  max-width: 580px;
}

.home-hero .hero-actions {
  align-items: center;
}

.home-hero .hero-visual {
  justify-self: stretch;
}

.problem-grid .content-flow,
.problem-grid .photo-card {
  height: 100%;
}

.cta-panel .split {
  align-items: center;
}

.check-list,
.arrow-list,
.bullet-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.arrow-list li,
.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before,
.arrow-list li::before,
.bullet-list li::before {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  background: var(--green);
  color: #fff;
}

.arrow-list li::before {
  content: "→";
  background: rgba(31, 58, 95, 0.08);
  color: var(--blue-deep);
}

.bullet-list li::before {
  content: "•";
  background: rgba(11, 110, 79, 0.08);
  color: var(--green-dark);
}

.cta-panel {
  padding: 24px;
  border: 0;
  background:
    linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 45%, var(--green) 100%);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2,
.cta-panel h3,
.cta-panel p,
.cta-panel strong,
.cta-panel a {
  color: #fff;
}

.cta-panel .eyebrow {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-panel .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-panel .btn-secondary:hover,
.cta-panel .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: var(--blue-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31, 58, 95, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(11, 110, 79, 0.4);
  box-shadow: 0 0 0 4px rgba(11, 110, 79, 0.12);
}

.error {
  min-height: 1rem;
  color: #b42318;
  font-size: 0.84rem;
}

.form-note,
.help-text {
  font-size: 0.92rem;
}

.notice {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
}

.notice.is-success {
  display: block;
  background: rgba(11, 110, 79, 0.1);
  color: var(--green-dark);
}

.notice.is-error {
  display: block;
  background: rgba(180, 35, 24, 0.12);
  color: #b42318;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(31, 58, 95, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.faq-panel {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.service-article {
  display: grid;
  gap: 16px;
}

.service-article p + p {
  margin-top: 2px;
}

.blog-meta,
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 58, 95, 0.08);
  text-align: left;
}

th {
  background: rgba(31, 58, 95, 0.04);
  color: var(--blue-deep);
  font-family: "Poppins", sans-serif;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 42;
  display: grid;
  gap: 12px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.float-btn svg {
  width: 18px;
  height: 18px;
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #19b861, #0b6e4f);
}

.float-btn.call {
  background: linear-gradient(135deg, #27548e, #1f3a5f);
}

.site-footer {
  margin-top: 24px;
  padding: 60px 0 24px;
  background: linear-gradient(180deg, #162a43 0%, #102138 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4,
.site-footer strong,
.site-footer a {
  color: #fff;
}

.site-footer .brand-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links,
.footer-services {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-links,
  .nav-actions .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-panel {
    display: none;
    padding: 0 0 20px;
  }

  .mobile-panel.is-open {
    display: grid;
    gap: 12px;
  }

  .mobile-panel > a,
  .mobile-panel summary {
    color: var(--blue-deep);
    font-weight: 700;
  }

  .mobile-panel details {
    padding: 14px 16px;
    border: 1px solid rgba(31, 58, 95, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
  }

  .details-links {
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .services-menu-panel {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 48px 0 64px;
  }

  .page-hero {
    padding: 44px 0 52px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    min-width: auto;
    padding-inline: 14px;
  }

  .nav-wrap {
    min-height: 74px;
  }
}

@media (min-width: 720px) {
  .grid-2,
  .form-grid,
  .why-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .trust-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 72px 0;
  }

  .section-tight {
    padding: 56px 0;
  }
}

@media (min-width: 920px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .problem-grid,
  .contact-wrap,
  .why-grid,
  .hero-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .home-hero .hero-inner {
    align-items: center;
  }

  .problem-grid {
    align-items: start;
  }

  .hero-figure {
    min-height: 500px;
  }

  .photo-card,
  .photo-card img {
    min-height: 420px;
  }

  .cta-panel {
    padding: 32px;
  }

  .trust-band {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
  }

  .why-points {
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .section-tight {
    padding: 60px 0;
  }
}
