/* =========================
   Root and reset
========================= */

:root {
  --navy: #071a24;
  --navy-light: #102d38;
  --green: #2bd5a1;
  --green-dark: #0aa678;
  --green-soft: #e9faf4;
  --cream: #f6f7f2;
  --white: #ffffff;
  --text: #17252b;
  --muted: #66777d;
  --border: #dfe7e4;
  --shadow: 0 24px 60px rgba(6, 30, 39, 0.1);
  --radius: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

body,
input,
select,
textarea,
button {
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-size: 1rem;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--cream);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #73ebc7;
}

.section h2,
.process-section h2,
.audit-section h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
}

.section-title-row {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-title-row h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-title-row > p {
  margin-bottom: 6px;
  color: var(--muted);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.center-heading > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
}


/* =========================
   Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(254, 255, 255);
  backdrop-filter: blur(18px);
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px 4px 11px 4px;
  color: var(--navy);
  background: var(--green);
  font-size: 1.05rem;
  font-weight: 900;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navigation > a {
  color: rgb(0, 0, 0);
  font-size: 0.91rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.navigation > a:hover {
  color: var(--green);
}

.navigation .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(92, 225, 181, 0.55);
  border-radius: 9px;
  color: var(--white);
  background: #2bd5a1
}

.navigation .nav-cta:hover {
  color: var(--navy);
  background: var(--green);
}

.menu-toggle,
.menu-button {
  display: none;
}


/* =========================
   Buttons
========================= */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 12px 30px rgba(43, 213, 161, 0.22);
}

.button-primary:hover {
  background: #5ce1b5;
  box-shadow: 0 16px 35px rgba(43, 213, 161, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}


/* =========================
   Hero
========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(43, 213, 161, 0.12), transparent 28%),
    linear-gradient(135deg, #061720 0%, #0a2530 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(92, 225, 181, 0.12);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: rgba(43, 213, 161, 0.05);
}

.hero-glow-two {
  right: 20%;
  bottom: -180px;
  width: 450px;
  height: 450px;
  background: rgba(80, 123, 255, 0.05);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #8cf1d1;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(43, 213, 161, 0.12);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--green);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
}

.hero-features span::first-letter {
  color: var(--green);
}


/* Dashboard */

.dashboard-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 22px;
  background: linear-gradient(
    140deg,
    rgba(92, 225, 181, 0.28),
    transparent 35%,
    transparent 70%,
    rgba(255, 255, 255, 0.08)
  );
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-heading h2 {
  margin: 5px 0 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.dashboard-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 30px;
  color: #8cf1d1;
  background: rgba(43, 213, 161, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.chart-area {
  position: relative;
  height: 235px;
  margin: 28px 0 18px;
  overflow: hidden;
}

.chart-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.chart-lines span {
  border-top: 1px dashed rgba(255, 255, 255, 0.09);
}

.chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-fill {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: #5ce1b5;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 3px 5px rgba(92, 225, 181, 0.3));
}

.chart-tooltip {
  position: absolute;
  top: 30px;
  right: 10px;
  display: flex;
  flex-direction: column;
  padding: 10px 13px;
  border: 1px solid rgba(92, 225, 181, 0.25);
  border-radius: 9px;
  background: rgba(6, 23, 32, 0.88);
}

.chart-tooltip strong {
  color: var(--green);
}

.chart-tooltip span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.dashboard-stats article {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-stats article > span {
  display: block;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
}

.dashboard-stats strong {
  display: block;
  margin: 5px 0 1px;
  color: var(--white);
  font-size: 0.88rem;
}

.dashboard-stats small {
  color: #69dfbd;
  font-size: 0.64rem;
}


/* =========================
   About
========================= */

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
}

.section-heading h2 {
  max-width: 520px;
}

.about-content > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.about-points article {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.about-points article > span {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.about-points h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.about-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}


/* =========================
   Services
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 425px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 166, 120, 0.32);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(43, 213, 161, 0.055);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 13px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-family: "Manrope", sans-serif;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card > p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card ul {
  margin: 10px 0 26px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: #43565d;
  font-size: 0.87rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.service-card > a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.featured-service {
  border-color: rgba(10, 166, 120, 0.35);
  box-shadow: 0 20px 55px rgba(10, 166, 120, 0.1);
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  border-radius: 20px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}


/* =========================
   Benefits
========================= */

.benefits-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at center, #d9f8ed, transparent 65%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.benefits-grid article {
  min-height: 250px;
  padding: 35px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefit-number {
  display: block;
  margin-bottom: 38px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.benefits-grid h3 {
  margin-bottom: 13px;
  font-size: 1.15rem;
}

.benefits-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}


/* =========================
   Process
========================= */

.process-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(43, 213, 161, 0.11), transparent 28%),
    var(--navy);
}

.process-section .section-title-row > p {
  color: rgba(255, 255, 255, 0.62);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid article {
  position: relative;
  min-height: 260px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease;
}

.process-grid article:hover {
  background: rgba(255, 255, 255, 0.045);
}

.process-grid article > span {
  display: block;
  margin-bottom: 46px;
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 13px;
  font-size: 1.18rem;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}


/* =========================
   Industries
========================= */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industries-grid article {
  padding: 30px 25px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.industries-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(6, 30, 39, 0.08);
}

.industry-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 1.1rem;
  font-weight: 900;
}

.industries-grid h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.industries-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}


/* =========================
   Statistics
========================= */

.stats-section {
  padding: 65px 0;
  color: var(--white);
  background: var(--navy-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
  padding: 10px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}


/* =========================
   Case studies
========================= */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.case-image {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
}

.case-image::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -40px;
  top: -55px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.case-image span {
  position: relative;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 30px;
  color: var(--white);
  background: rgba(7, 26, 36, 0.55);
  backdrop-filter: blur(10px);
  font-size: 0.74rem;
  font-weight: 800;
}

.case-image-one {
  background:
    linear-gradient(135deg, rgba(7, 26, 36, 0.2), rgba(7, 26, 36, 0.75)),
    linear-gradient(120deg, #4bbf98, #1a6657);
}

.case-image-two {
  background:
    linear-gradient(135deg, rgba(7, 26, 36, 0.2), rgba(7, 26, 36, 0.75)),
    linear-gradient(120deg, #587ddc, #263b74);
}

.case-image-three {
  background:
    linear-gradient(135deg, rgba(7, 26, 36, 0.2), rgba(7, 26, 36, 0.75)),
    linear-gradient(120deg, #d89761, #75482d);
}

.case-content {
  padding: 28px;
}

.case-label {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-content h3 {
  margin-bottom: 15px;
  font-size: 1.18rem;
}

.case-content > p {
  color: var(--muted);
  font-size: 0.89rem;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 23px 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.case-results span {
  color: var(--muted);
  font-size: 0.7rem;
}

.case-results strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

.case-content > a {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}


/* =========================
   FAQ
========================= */

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p {
  margin-bottom: 30px;
  color: var(--muted);
}

.faq-list details {
  border-top: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 1.15rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  padding: 0 50px 25px 0;
  color: var(--muted);
}


/* =========================
   Forms
========================= */

.audit-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(43, 213, 161, 0.1), transparent 26%),
    var(--navy);
}

.audit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 80px;
  align-items: start;
}

.audit-content {
  padding-top: 25px;
}

.audit-content > p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.65);
}

.audit-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(92, 225, 181, 0.2);
  border-radius: 12px;
  background: rgba(92, 225, 181, 0.055);
}

.audit-note > span {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  font-weight: 900;
}

.audit-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.audit-form,
.contact-form {
  padding: 34px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: #35474d;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid #d9e3df;
  border-radius: 8px;
  outline: none;
  color: var(--text);
  background: #fbfcfb;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(43, 213, 161, 0.11);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  color: #5d6e74;
  font-size: 0.78rem;
}

.checkbox-field input {
  margin-top: 4px;
  accent-color: var(--green-dark);
}

.form-button {
  width: 100%;
  border: 0;
}


/* =========================
   Blog
========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(6, 30, 39, 0.08);
}

.blog-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 13px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 1.15rem;
  font-weight: 900;
}

.blog-card > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.89rem;
}

.blog-card a {
  color: var(--green-dark);
  font-size: 0.87rem;
  font-weight: 800;
}


/* =========================
   Contact
========================= */

.contact-section {
  background: var(--cream);
}

.contact-content {
  padding-top: 20px;
}

.contact-content > p {
  max-width: 520px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.contact-details article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.contact-details article > span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}


/* =========================
   Footer
========================= */

.site-footer {
  padding: 80px 0 25px;
  color: var(--white);
  background: #05151d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.65fr);
  gap: 55px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 23px;
}

.footer-brand > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.newsletter-form {
  max-width: 440px;
  margin-top: 30px;
}

.newsletter-form > label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
}

.newsletter-form > div {
  display: flex;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px 0 0 8px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.newsletter-form input:focus {
  border-color: var(--green);
}

.newsletter-form button {
  padding: 0 18px;
  border: 0;
  border-radius: 0 8px 8px 0;
  color: var(--navy);
  background: var(--green);
  font-weight: 800;
}

.footer-links h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--green);
}


/* =========================
   Responsive: tablets
========================= */

@media (max-width: 1050px) {
  .navigation {
    gap: 16px;
  }

  .navigation > a {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
  }

  .dashboard-card {
    max-width: 760px;
  }

  .services-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
    gap: 35px;
  }
}


/* =========================
   Responsive navigation
========================= */

@media (max-width: 900px) {
  .menu-button {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9px;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: 0.25s ease;
  }

  .navigation {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: #071a24;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    transition: max-height 0.35s ease;
  }

  .navigation > a {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .navigation .nav-cta {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 12px 16px;
    text-align: center;
  }

  .menu-toggle:checked ~ .navigation {
    max-height: 620px;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .split-layout,
  .faq-layout,
  .audit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .section-title-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }

  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* =========================
   Responsive: mobile
========================= */

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .process-section,
  .audit-section {
    padding: 78px 0;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 9px;
  }

  .dashboard-card {
    padding: 20px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-stats article > span {
    min-height: auto;
  }

  .about-points,
  .services-grid,
  .benefits-grid,
  .process-grid,
  .industries-grid,
  .case-grid,
  .blog-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .case-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .benefits-grid,
  .process-grid {
    border-left: 0;
  }

  .benefits-grid article,
  .process-grid article {
    border-left: 1px solid var(--border);
  }

  .process-grid article {
    border-left-color: rgba(255, 255, 255, 0.12);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-grid article,
  .stats-grid article:nth-child(2) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .audit-form,
  .contact-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* =========================
   Very small screens
========================= */

@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .newsletter-form > div {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-form input,
  .newsletter-form button {
    min-height: 48px;
    border-radius: 8px;
  }

  .case-results {
    grid-template-columns: 1fr;
  }
}



section#about_banr h1 {
    font-size: 60px;
    text-align: center;
    max-width: 98%;
}
section.privacy_sec{
  padding: 100px 0;
  background-color: #f6f7f2;
}

section.privacy_sec h4 {
    font-size: 22px;
}

section.privacy_sec p {
    font-size: 16px;
    padding-bottom: 10px;
}


section.privacy_sec li {
    font-size: 14px;
    font-family: 'Manrope';
    list-style: disc;
}

section.privacy_sec ul {
    padding-left: 30px;
    padding-bottom: 20px;
}