/* ─── RESET & VARIABLES ─── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,200;0,300;0,400;1,200&family=Syne:wght@500;600;700&display=swap');

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

:root {
  --blue: #4285F4;
  --green: #34A853;
  --yellow: #F9AB00;
  --red: #EA4335;
  --orange: #FF7618;
  --navy: #0d0d14;
  --text: #0d0d14;
  --muted: rgba(13, 13, 20, 0.45);
  --line: rgba(13, 13, 20, 0.08);
  --border: rgba(13, 13, 20, 0.08);
  --border2: rgba(13, 13, 20, 0.14);
  --g1: #fffcfc;
  --g2: #E8EAED;
  --g3: #9AA0A6;
  --g4: #5F6368;
  --r: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px; /* Reduced padding for mobile safety */
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease;
}

@media (min-width: 1025px) {
  nav {
    padding: 0 48px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-dots {
  display: flex;
  gap: 5px;
}

.nd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.nd-b {
  background: var(--blue);
}

.nd-r {
  background: var(--red);
}

.nd-y {
  background: var(--yellow);
}

.nd-g {
  background: var(--green);
}

.nav-logo span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-logo span:first-child {
  color: var(--orange);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin-left: auto; /* Push everything to the right */
}

.nav-links a {
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g4);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue) !important;
  background: transparent !important;
  border: 1px solid rgba(66, 133, 244, 0.3) !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--blue) !important;
  color: #fff !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-mobile-social {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--g4);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-mobile-social a:link,
.nav-mobile-social a:visited {
  color: var(--g4);
  outline: none;
}

.nav-mobile-social a:hover {
  color: var(--green);
}

.nav-mobile-social a:active {
  color: var(--green);
}

.nav-mobile-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Burger Animation when menu is open */
.nav-links.open ~ .nav-right .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
}

.nav-links.open ~ .nav-right .hamburger span:nth-child(2) {
  opacity: 0 !important;
  transform: translateX(-10px) !important;
}

.nav-links.open ~ .nav-right .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--g4);
  transition: all 0.2s;
}

.social-icon:hover {
  color: var(--blue);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ─── FADE IN ANIMATION ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.fade {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-1 {
  animation-delay: 0.1s;
}

.fade-2 {
  animation-delay: 0.22s;
}

.fade-3 {
  animation-delay: 0.36s;
}

.fade-4 {
  animation-delay: 0.50s;
}

.fade-5 {
  animation-delay: 0.64s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 72px 80px;
  gap: 72px;
  position: relative;
  overflow: hidden;
}

.hero-content-wrapper {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
}

/* Hero decoration dots */
.hero-deco {
  position: absolute;
  top: -60px;
  right: 0;
  width: 420px;
  height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}

.hdot {
  border-radius: 50%;
  filter: blur(30px);
}

.hdot-b {
  background: var(--blue);
}

.hdot-r {
  background: var(--red);
}

.hdot-y {
  background: var(--yellow);
}

.hdot-g {
  background: var(--green);
}

.hero-left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8F0FE;
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--g1);
  border: 1px solid var(--g2);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g4);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-form-wrap {
  flex: 0 0 420px;
  position: relative;
  z-index: 1;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}

.form-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-card>p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 76px;
}

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

.btn-submit {
  width: 100%;
  padding: 15px 32px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.85;
}

.form-note {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  color: var(--g3);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g4);
  white-space: nowrap;
  border-right: 1px solid var(--g2);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  padding: 32px 48px;
}

.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid var(--g2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
}

.stat-num .unit {
  font-size: 16px;
  color: var(--orange);
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* ─── SERVICES SECTION (TABS) ─── */
.services-section {
  padding: 96px 48px;
  background: #fff;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.s-header {
  margin-bottom: 64px;
}

.s-overtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.s-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.s-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
}

.service-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stab {
  font-family: 'DM Sans', sans-serif;
  padding: 10px 22px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--g1);
  border: 1px solid var(--g2);
  color: var(--g4);
  transition: all 0.2s;
  user-select: none;
}

.stab:hover {
  border-color: var(--g3);
  color: var(--navy);
}

.stab.active-blue {
  background: rgba(66, 133, 244, 0.1);
  border-color: rgba(66, 133, 244, 0.4);
  color: var(--blue);
}

.stab.active-green {
  background: rgba(52, 168, 83, 0.1);
  border-color: rgba(52, 168, 83, 0.4);
  color: var(--green);
}

.stab.active-orange {
  background: rgba(255, 118, 24, 0.1);
  border-color: rgba(255, 118, 24, 0.4);
  color: var(--orange);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: panelIn 0.35s ease both;
}

.tab-panel.active {
  display: grid;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.panel-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.panel-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.panel-bullets {
  list-style: none;
  margin-bottom: 32px;
}

.panel-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--g4);
  margin-bottom: 11px;
  line-height: 1.6;
}

.pb-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pb-icon svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.pb-blue .pb-icon {
  background: var(--blue);
}

.pb-green .pb-icon {
  background: var(--green);
}

.pb-orange .pb-icon {
  background: var(--orange);
}

.panel-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tag-blue {
  background: rgba(66, 133, 244, 0.15);
  color: var(--blue);
  border: 1px solid rgba(66, 133, 244, 0.3);
}

.tag-green {
  background: rgba(52, 168, 83, 0.15);
  color: var(--green);
  border: 1px solid rgba(52, 168, 83, 0.3);
}

.tag-orange {
  background: rgba(255, 118, 24, 0.15);
  color: var(--orange);
  border: 1px solid rgba(255, 118, 24, 0.3);
}

.panel-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pv-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.pv-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}

.b-up {
  background: rgba(52, 168, 83, 0.12);
  color: var(--green);
}

.g-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.gb {
  flex: 1;
  border-radius: 2px 2px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.gb.animate {
  transform: scaleY(1);
}

.m-rows {}

.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.m-row:last-child {
  border-bottom: none;
}

.m-row-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.m-row-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.pos-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pos-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pos-kw {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 140px;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pos-bar-track {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
}

.pos-bar-fill {
  height: 100%;
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pos-bar-fill.animate {
  transform: scaleX(1);
}

.pos-num-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.p1b {
  color: var(--green);
}

.p2b {
  color: var(--blue);
}

.p3b {
  color: var(--yellow);
}

.site-prev {
  background: var(--g1);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.site-bar {
  background: #fff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--line);
}

.site-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.site-body {
  padding: 14px;
}

.site-hero-block {
  background: var(--blue);
  border-radius: 2px;
  padding: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.site-h-line {
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  width: 65%;
  margin: 0 auto 5px;
}

.site-h-sub {
  height: 5px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  width: 45%;
  margin: 0 auto 10px;
}

.site-h-btn {
  display: inline-block;
  background: #fff;
  border-radius: 2px;
  padding: 5px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.site-grid-p {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}

.site-card-p {
  background: #fff;
  border-radius: 2px;
  padding: 8px;
  border: 1px solid var(--line);
}

.site-card-l {
  height: 5px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 3px;
}

.site-card-l.short {
  width: 60%;
}

.site-cta-bar {
  background: var(--orange);
  border-radius: 2px;
  padding: 7px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* ─── PROOF SECTION ─── */
.proof-section {
  padding: 96px 48px;
  background: var(--g1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

.proof-tabs {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}

.ptab {
  font-family: 'DM Sans', sans-serif;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid var(--g2);
  color: var(--g4);
  transition: all 0.2s;
}

.ptab.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.proof-panel {
  display: none;
  animation: panelIn 0.4s ease both;
}

.proof-panel.active {
  display: block;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.proof-item {
  transition: transform 0.3s;
}

.proof-item:hover {
  transform: translateY(-5px);
}

.proof-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.proof-info {
  padding: 16px 0 0;
  text-align: left;
}

.proof-info strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.proof-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--g4);
}

/* ─── CAROUSEL ─── */
.carousel-wrap {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 24px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 320px;
  text-align: center;
  transition: transform 0.25s;
}

.carousel-item:hover {
  transform: translateY(-4px);
}

.carousel-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.carousel-item .caption {
  padding: 10px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--g4);
  background: none;
}

.carousel-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g1);
  border: 1px solid var(--g2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-btn:hover svg {
  stroke: #fff;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  stroke-width: 2.5;
  fill: none;
}

.btn-primary {
  display: inline-block;
  padding: 15px 32px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* ─── REVIEWS ─── */
.section-light {
  background: #fff;
  padding: 96px 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: var(--r);
  padding: 24px;
}

.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.review-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--g4);
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g3);
}

/* ─── STATEMENT ─── */
.statement {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 48px;
  text-align: center;
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}

.statement h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.statement h2 em {
  color: var(--yellow);
  font-style: normal;
}

.statement p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── CONTACT FORM ─── */
.form-section {
  padding: 96px 48px;
  background: #fff;
}

.form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.form-left {
  padding: 0;
}

.form-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.form-left p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 360px;
}

.form-right {
  padding: 0;
}

.form-right h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.form-right>p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}

.fg {
  margin-bottom: 14px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fg label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--muted);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

.fg textarea {
  min-height: 80px;
  resize: vertical;
}

.fg select option {
  background: #fff;
}

.submit-btn {
  flex: 1;
  padding: 15px 32px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.85;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
}

.footer-legal {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  justify-content: center;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; /* Increased size */
  font-weight: 400;
  color: #707070 !important; /* Lighter color */
  text-decoration: none;
  transition: all 0.2s;
  padding: 4px 12px;
  display: inline-block;
}

.footer-legal a:hover {
  color: var(--blue) !important;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g1);
  border: 1px solid var(--g2);
  color: var(--g4);
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-inner,
.footer-bottom {
  display: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.logo em {
  color: var(--orange);
  font-style: normal;
}

.f-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.f-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.f-col ul {
  list-style: none;
}

.f-col li {
  margin-bottom: 10px;
}

.f-col a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.f-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ─── FLOATING ELEMENTS ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 2000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.google-partner-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 2000;
  pointer-events: none;
  user-select: none;
}

.google-partner-badge img {
  height: 18px;
}

.google-partner-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--g4);
  border-left: 1px solid #dadce0;
  padding-left: 10px;
  letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }

  .nav-right {
    display: flex !important;
    order: 2;
  }

  .nav-mobile-social {
    display: flex !important;
    margin-right: 12px;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    z-index: 99;
    margin-left: 0;
  }

  .nav-links.open {
    display: flex;
    min-height: 300px;
  }

  .nav-links .nav-social {
    display: none;
  }

  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
    gap: 40px;
  }

  .hero-content-wrapper {
    flex-direction: column;
    gap: 48px;
  }

  .hero-form-wrap {
    flex: unset;
    width: 100%;
    max-width: 420px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-section,
  .proof-section,
  .section-light,
  .statement,
  .form-section {
    padding: 48px 24px;
  }

  .stats-bar {
    padding: 32px 24px;
  }

  .form-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 36px 20px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .pv-badge {
    display: none !important;
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

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

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

  .services-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .ps-steps {
    grid-template-columns: 1fr !important;
  }

  .nav-social {
    margin-left: 0px;
    padding-left: 0px;
  }

  footer {
    padding: 24px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--g2);
    padding: 16px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  footer {
    padding: 20px;
  }

  .footer-logo {
    flex-direction: column;
    gap: 8px;
  }
}

/* ─── PAGE HERO (for service pages) ─── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero .hero-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8F0FE;
  padding: 5px 14px;
  border-radius: 100px;
}

.page-hero .hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-hero h1 .accent {
  color: var(--orange);
}

.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── SECTION (for service pages) ─── */
.section {
  padding: 80px 48px;
}

.section-light {
  background: var(--g1);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: #fafafa;
}

.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.service-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.service-tag {
  margin-top: auto;
  display: inline-block;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

/* ─── PROCESS STRIP ─── */
.process-strip {
  background: var(--g1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 48px;
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ps-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.ps-step {
  position: relative;
}

.ps-num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ps-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--g2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ps-connector {
  flex: 1;
  height: 1px;
  background: var(--g2);
}

.ps-step:last-child .ps-connector {
  display: none;
}

.ps-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.ps-step p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--g4);
  line-height: 1.6;
}

/* ─── PRICING GRID ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue);
}

.pricing-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.pricing-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin: 16px 0 4px;
}

.pricing-card .price .unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--g3);
}

.pricing-card .desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--g4);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--g4);
  margin-bottom: 10px;
}

.pricing-card li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52, 168, 83, 0.15);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2 6 5 9 10 3' fill='none' stroke='%2334A853' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.btn-outline {
  display: inline-block;
  padding: 15px 32px;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s;
  text-align: center;
  width: 100%;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

/* ─── STATS CAROUSEL (Google Ads) ─── */
.stats-carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.stats-carousel-track {
  position: relative;
  overflow: hidden;
}

.stats-carousel-item {
  display: none;
  text-align: center;
  position: relative;
}

.stats-carousel-item.active {
  display: block;
  animation: slideInRight 0.5s ease;
}

.stats-carousel-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats-carousel-caption {
  margin-top: 20px;
  text-align: center;
}

.stats-carousel-caption h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.stats-carousel-caption p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── KPI GRID ─── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--g2);
  padding: 24px;
  border-radius: 4px;
  position: relative;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 4px 4px 0 0;
}

.kpi-val {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.kpi-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

.kpi-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── DASHBOARD CARD ─── */
.dashboard-card {
  background: #fff;
  border: 1px solid var(--g2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.dashboard-card img {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-caption {
  padding: 12px 16px;
  border-top: 1px solid var(--g2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.dash-cap-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Blog styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-overlay {
  padding: 24px;
  text-align: center;
  color: #fff;
}

.blog-overlay h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.blog-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.blog-link:hover {
  opacity: 0.8;
}

/* ─── SECTION CTA BUTTONS ─── */
.section-cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section-cta-left {
  justify-content: flex-start;
}

.section-cta-center {
  justify-content: center;
}

.section-cta-right {
  justify-content: flex-end;
}

.btn-cta-section {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--r);
  transition: all 0.2s;
}

.btn-cta-section svg {
  width: 16px;
  height: 16px;
}

.btn-cta-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.btn-cta-primary:hover {
  background: #3367d6;
  border-color: #3367d6;
}

.btn-cta-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.btn-cta-outline:hover {
  background: rgba(66, 133, 244, 0.05);
}

.btn-cta-white {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-cta-white:hover {
  background: var(--g1);
  border-color: var(--g2);
}

.btn-cta-arrow {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--g2);
  padding: 8px 16px;
}

.btn-cta-arrow:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* Onpage navigation dots */
.onpage-nav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.onpage-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--g1);
  color: var(--g4);
  border: 1px solid var(--g2);
  transition: all 0.2s;
}

.onpage-nav a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.onpage-nav a svg {
  width: 14px;
  height: 14px;
}

.results-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
  background: #fff;
  padding: 40px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.results-highlight.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.results-highlight-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: contain;
}

.results-highlight-content h3 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.results-highlight-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.results-highlight-content .accent-text {
  color: var(--blue);
  font-weight: 500;
}

@media (max-width: 992px) {

  .results-highlight,
  .results-highlight.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
    margin-top: 48px;
  }

  .results-highlight.reverse .results-highlight-img {
    order: -1;
  }

  .results-highlight-img {
    max-width: 100%;
    width: 100%;
  }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 9999;
  padding: 16px 48px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.055);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-banner-text p {
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

.cookie-banner-text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #3b78db;
}

.cookie-btn-refuse {
  background: transparent;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.cookie-btn-refuse:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 24px;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}