﻿:root {
  color-scheme: light;
  --ink: #10242d;
  --ink-2: #25424c;
  --muted: #667981;
  --paper: #ffffff;
  --cream: #fbfaf4;
  --mist: #eef9fb;
  --mint: #eff8ee;
  --sun: #fff7d5;
  --line: #dbe8e8;
  --cyan: #2fb7cb;
  --cyan-2: #0f8fa4;
  --green: #438d3f;
  --green-2: #2c7030;
  --yellow: #e6c51f;
  --yellow-2: #aa8707;
  --shadow: 0 20px 50px rgba(28, 71, 80, 0.12);
  --soft-shadow: 0 12px 30px rgba(28, 71, 80, 0.08);
  --radius: 8px;
  --max: 1180px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eefbff;
  --ink-2: #c5d7de;
  --muted: #90a8b0;
  --paper: #10242d;
  --cream: #071419;
  --mist: #0e3039;
  --mint: #12321d;
  --sun: #332a0b;
  --line: rgba(221, 238, 240, 0.14);
  --cyan: #35c7dd;
  --cyan-2: #72d9e8;
  --green: #62bb58;
  --green-2: #99dd90;
  --yellow: #f0cf36;
  --yellow-2: #f5dc67;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
  --soft-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  transition: background 220ms ease, color 220ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  pointer-events: none;
  user-drag: none;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}

:root[data-theme="dark"] .site-header {
  background: rgba(16, 36, 45, 0.94);
}

.nav-shell,
.section-inner,
.hero-inner,
.footer-inner {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: clamp(18px, 4vw, 34px);
  padding-right: clamp(18px, 4vw, 34px);
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 92px;
}

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

.brand img {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  max-width: 230px;
  white-space: normal;
}

.site-menu {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-menu a {
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.active {
  background: var(--mist);
  color: var(--cyan-2);
  outline: none;
}

.menu-dropdown {
  position: relative;
}

.dropdown-trigger::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
  display: inline-block;
  height: 0;
  margin-left: 6px;
  width: 0;
}

.dropdown-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  left: 0;
  min-width: 260px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 40;
}

.menu-dropdown:hover .dropdown-panel,
.menu-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  border-radius: 8px;
  padding: 10px 12px;
  white-space: nowrap;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(47, 183, 203, 0.06), rgba(67, 141, 63, 0.06)),
    var(--paper);
}

.footer-inner {
  gap: 24px;
}

.footer-inner::after {
  color: var(--muted);
  content: "Website | Apps | WhatsApp | Marketing | AI";
  font-size: 13px;
  font-weight: 800;
}

.site-menu .nav-cta {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 10px 22px rgba(47, 183, 203, 0.24);
  color: #fff;
  padding-left: 16px;
  padding-right: 16px;
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible,
.site-menu .nav-cta.active {
  background: var(--green);
  color: #fff;
}

.theme-switch {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  min-height: 36px;
  padding: 6px 10px;
}

.theme-switch span {
  background: linear-gradient(135deg, var(--yellow), var(--cyan));
  border-radius: 50%;
  display: block;
  height: 18px;
  width: 18px;
}

.theme-switch strong {
  font-size: 12px;
  font-weight: 900;
}

.nav-toggle {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.hero {
  background:
    radial-gradient(circle at 6% 18%, rgba(230, 197, 31, 0.22), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(47, 183, 203, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2fbfc 48%, #f5fbf1 100%);
  overflow: hidden;
  position: relative;
}

:root[data-theme="dark"] .hero,
:root[data-theme="dark"] .page-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(53, 199, 221, 0.14), transparent 27%),
    linear-gradient(135deg, #071419 0%, #0d242b 100%);
}

.home-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(230, 197, 31, 0.22), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(47, 183, 203, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f0fbfc 46%, #f2fbef 100%);
  overflow: hidden;
}

:root[data-theme="dark"] .home-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(240, 207, 54, 0.14), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(53, 199, 221, 0.16), transparent 28%),
    linear-gradient(135deg, #071419 0%, #0b242b 54%, #0a2413 100%);
}

.home-hero-inner {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100vh - 84px);
  padding: 76px clamp(18px, 4vw, 34px) 84px;
}

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

.slogan-badge {
  align-items: center;
  background: linear-gradient(135deg, rgba(47, 183, 203, 0.13), rgba(230, 197, 31, 0.18));
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-2);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  margin: 0 0 18px;
  padding: 9px 14px;
}

.slogan-badge::before {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
}

.home-hero-copy h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  max-width: 820px;
}

.hero-service-line {
  color: var(--cyan-2);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  margin: -10px 0 18px;
}

.home-hero-copy > p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 720px;
}

.home-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  max-width: 620px;
}

.home-proof span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
  padding: 14px;
}

.home-proof strong {
  color: var(--cyan-2);
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}

.home-dashboard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 32px);
  position: relative;
  overflow: hidden;
}

.home-dashboard {
  border-top: 6px solid var(--cyan);
}

.home-dashboard::before {
  background:
    linear-gradient(135deg, rgba(47, 183, 203, 0.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(230, 197, 31, 0.2), transparent 22%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home-dashboard > * {
  position: relative;
  z-index: 1;
}

.dashboard-logo {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-logo img {
  height: 88px;
  object-fit: contain;
  width: 88px;
}

.dashboard-logo span {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.dashboard-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: block;
  min-height: 132px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.dash-card::after {
  background: rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  content: "";
  height: 70px;
  position: absolute;
  right: -24px;
  top: -24px;
  width: 70px;
}

:root[data-theme="dark"] .dash-card::after {
  background: rgba(255, 255, 255, 0.07);
}

.dash-card:hover,
.dash-card:focus-visible {
  border-color: var(--cyan);
  box-shadow: var(--soft-shadow);
  outline: none;
  transform: translateY(-2px);
}

.dash-card strong,
.dash-card span {
  display: block;
}

.dash-card strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.dash-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.dash-card strong,
.dash-card span {
  position: relative;
  z-index: 1;
}

.dash-card.cyan {
  background: var(--mist);
}

.dash-card.green {
  background: var(--mint);
}

.dash-card.yellow {
  background: var(--sun);
}

.home-intro {
  background: var(--paper);
}

:root[data-theme="dark"] .home-intro,
:root[data-theme="dark"] .site-footer,
:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .home-service-card,
:root[data-theme="dark"] .showcase-card,
:root[data-theme="dark"] .process-row article,
:root[data-theme="dark"] .contact-form,
:root[data-theme="dark"] .contact-info-card,
:root[data-theme="dark"] .product-list article,
:root[data-theme="dark"] .cta-band,
:root[data-theme="dark"] .service-band,
:root[data-theme="dark"] .whatsapp-panel > div:first-child,
:root[data-theme="dark"] .whatsapp-list span,
:root[data-theme="dark"] .compact-list a {
  background: var(--paper);
}

:root[data-theme="dark"] .home-proof span,
:root[data-theme="dark"] .stat-row span {
  background: #12303a;
  border-color: rgba(221, 238, 240, 0.16);
  color: #d6edf3;
}

:root[data-theme="dark"] .home-proof strong,
:root[data-theme="dark"] .stat-row strong {
  color: #6fe8f4;
}

:root[data-theme="dark"] .dash-card.cyan,
:root[data-theme="dark"] .home-service-card.cyan,
:root[data-theme="dark"] .feature-card.cyan {
  background: #102f38;
}

:root[data-theme="dark"] .dash-card.green,
:root[data-theme="dark"] .home-service-card.green,
:root[data-theme="dark"] .feature-card.green {
  background: #12321d;
}

:root[data-theme="dark"] .dash-card.yellow,
:root[data-theme="dark"] .home-service-card.yellow,
:root[data-theme="dark"] .feature-card.yellow {
  background: #352b0b;
}

:root[data-theme="dark"] .dash-card span,
:root[data-theme="dark"] .home-service-card p,
:root[data-theme="dark"] .feature-card p,
:root[data-theme="dark"] .showcase-card p,
:root[data-theme="dark"] .process-row p,
:root[data-theme="dark"] .whatsapp-list span,
:root[data-theme="dark"] .compact-list a {
  color: #c5d7de;
}

:root[data-theme="dark"] .dashboard-logo,
:root[data-theme="dark"] .lead-popup-card,
:root[data-theme="dark"] .home-dashboard {
  background: #10242d;
}

.home-services {
  background: var(--cream);
}

.wide-heading {
  max-width: 900px;
}

.home-service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  display: block;
  min-height: 248px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.home-service-card.cyan {
  border-top: 5px solid var(--cyan);
}

.home-service-card.green {
  border-top: 5px solid var(--green);
}

.home-service-card.yellow {
  border-top: 5px solid var(--yellow);
}

.home-service-card span {
  color: var(--cyan-2);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.home-service-card.green span {
  color: var(--green-2);
}

.home-service-card.yellow span {
  color: var(--yellow-2);
}

.whatsapp-spotlight {
  background: linear-gradient(135deg, var(--mint), #ffffff);
}

:root[data-theme="dark"] .whatsapp-spotlight {
  background: linear-gradient(135deg, var(--mint), var(--cream));
}

.whatsapp-panel {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
}

.whatsapp-panel > div:first-child {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 30px;
}

.whatsapp-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whatsapp-list span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 850;
  padding: 16px;
}

.whatsapp-list span:nth-child(3n + 1) {
  border-left: 5px solid var(--green);
}

.whatsapp-list span:nth-child(3n + 2) {
  border-left: 5px solid var(--cyan);
}

.whatsapp-list span:nth-child(3n) {
  border-left: 5px solid var(--yellow);
}

.split-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.showcase-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 28px;
}

.showcase-card.accent {
  background: var(--mist);
}

.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.compact-list a {
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-weight: 850;
  padding: 12px 14px;
}

.compact-list a:hover,
.compact-list a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-2);
  outline: none;
}

.home-process {
  background: var(--mist);
}

.process-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-row article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.process-row span {
  align-items: center;
  background: var(--cyan);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  margin-bottom: 18px;
  width: 36px;
}

.process-row strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.process-row p {
  margin-bottom: 0;
}

.home-cta {
  background: linear-gradient(135deg, var(--paper), var(--sun));
}

.lead-popup {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 100;
}

.lead-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-backdrop {
  background: rgba(5, 18, 23, 0.52);
  inset: 0;
  position: absolute;
}

.lead-popup-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  padding: 28px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 220ms ease;
  width: min(100%, 500px);
}

.lead-popup.is-visible .lead-popup-card {
  transform: translateY(0) scale(1);
}

.lead-close {
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
}

.lead-popup-card h2 {
  font-size: clamp(26px, 4vw, 36px);
  padding-right: 32px;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.lead-form input,
.lead-form select {
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
}

:root[data-theme="dark"] .lead-form input,
:root[data-theme="dark"] .lead-form select,
:root[data-theme="dark"] .contact-form input,
:root[data-theme="dark"] .contact-form select,
:root[data-theme="dark"] .contact-form textarea {
  background: #0b1d24;
}

.hero::before {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: -70px;
  content: "";
  height: 190px;
  position: absolute;
  right: -60px;
  width: 190px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: calc(100vh - 84px);
  padding-bottom: 84px;
  padding-top: 76px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 24px;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.28;
  margin-bottom: 10px;
}

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

.hero-copy > p:not(.eyebrow),
.page-hero p {
  color: var(--ink-2);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 720px;
}

.hero-actions,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 12px 24px rgba(47, 183, 203, 0.2);
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: linear-gradient(135deg, var(--cyan-2), var(--green));
}

.btn.secondary {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(28, 71, 80, 0.06);
}

.stat-row {
  margin-top: 28px;
}

.stat-row span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.stat-row strong {
  color: var(--cyan-2);
  margin-right: 4px;
}

.hero-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 38px);
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  border-radius: 999px;
  content: "";
  position: absolute;
}

.hero-visual::before {
  background: var(--sun);
  height: 54px;
  right: 28px;
  top: 24px;
  width: 54px;
}

.hero-visual::after {
  background: var(--mint);
  bottom: 34px;
  height: 72px;
  left: 28px;
  width: 72px;
}

.hero-visual img {
  margin: 0 auto 24px;
  max-width: 270px;
  position: relative;
  width: 72%;
  z-index: 1;
}

.solution-stack {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.solution-stack span {
  background: var(--mist);
  border: 1px solid rgba(47, 183, 203, 0.18);
  border-radius: 8px;
  color: var(--cyan-2);
  font-weight: 850;
  padding: 12px 14px;
}

.solution-stack span:nth-child(2) {
  background: var(--mint);
  border-color: rgba(67, 141, 63, 0.18);
  color: var(--green-2);
}

.solution-stack span:nth-child(3) {
  background: var(--sun);
  border-color: rgba(230, 197, 31, 0.3);
  color: var(--yellow-2);
}

.page-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 183, 203, 0.17), transparent 27%),
    linear-gradient(135deg, #ffffff 0%, #f5fbfb 100%);
}

.page-hero .section-inner {
  padding-bottom: 82px;
  padding-top: 82px;
}

.page-hero h1 {
  max-width: 960px;
}

.section .section-inner {
  padding-bottom: 82px;
  padding-top: 82px;
}

.soft-cyan {
  background: var(--mist);
}

.soft-green {
  background: var(--mint);
}

.soft-yellow {
  background: var(--sun);
}

:root[data-theme="dark"] .home-services,
:root[data-theme="dark"] .soft-cyan,
:root[data-theme="dark"] .soft-green,
:root[data-theme="dark"] .soft-yellow {
  background: var(--cream);
}

.intro-grid,
.contact-layout {
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
}

.section-heading {
  margin-bottom: 34px;
  max-width: 800px;
}

.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.contact-form,
.contact-info-card,
.product-list article,
.cta-band,
.service-band {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  display: block;
  min-height: 236px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.feature-card:hover,
a.feature-card:focus-visible {
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.feature-card.cyan {
  border-top: 5px solid var(--cyan);
}

.feature-card.green {
  border-top: 5px solid var(--green);
}

.feature-card.yellow {
  border-top: 5px solid var(--yellow);
}

.feature-card ul {
  color: var(--muted);
  margin: 16px 0 0;
  padding-left: 18px;
}

.feature-card li + li {
  margin-top: 6px;
}

.mini-icon {
  border-radius: 8px;
  display: block;
  height: 46px;
  margin-bottom: 20px;
  position: relative;
  width: 46px;
}

.mini-icon.code,
.mini-icon.ai {
  background: var(--mist);
}

.mini-icon.product {
  background: var(--mint);
}

.mini-icon.marketing {
  background: var(--sun);
}

.mini-icon.code::before {
  color: var(--cyan-2);
  content: "</>";
  font-size: 14px;
  font-weight: 900;
  left: 8px;
  position: absolute;
  top: 13px;
}

.mini-icon.product::before {
  background: var(--green);
  border-radius: 7px;
  box-shadow: 13px 0 0 var(--green), 0 13px 0 var(--green), 13px 13px 0 var(--green);
  content: "";
  height: 10px;
  left: 11px;
  position: absolute;
  top: 11px;
  width: 10px;
}

.mini-icon.marketing::before {
  background: var(--yellow-2);
  border-radius: 999px;
  content: "";
  height: 16px;
  left: 8px;
  position: absolute;
  top: 15px;
  width: 27px;
}

.mini-icon.ai::before {
  color: var(--cyan-2);
  content: "AI";
  font-size: 15px;
  font-weight: 900;
  left: 12px;
  position: absolute;
  top: 11px;
}

.service-band {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  padding: 26px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pills span {
  background: var(--mist);
  border-radius: 999px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 850;
  padding: 9px 12px;
}

.service-pills span:nth-child(3n + 2) {
  background: var(--mint);
  color: var(--green-2);
}

.service-pills span:nth-child(3n) {
  background: var(--sun);
  color: var(--yellow-2);
}

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

.product-list article {
  display: grid;
  gap: 14px 24px;
  grid-template-columns: 70px minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: 24px;
}

.product-list span {
  align-items: center;
  background: var(--mist);
  border-radius: 50%;
  color: var(--cyan-2);
  display: inline-flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.product-list h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.product-list p {
  margin-bottom: 0;
}

.cta-band {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 32px;
}

.cta-band h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 0;
}

.contact-info-card,
.contact-form {
  padding: 26px;
}

.contact-info-card p:last-child {
  margin-bottom: 0;
}

.contact-info-card strong {
  color: var(--ink);
}

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

.contact-form label {
  color: var(--ink-2);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 50px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  outline: none;
}

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer-inner .brand img {
  height: 42px;
  width: 42px;
}

.footer-inner p {
  font-size: 14px;
  margin: 0;
}

:root[data-theme="dark"] .site-menu a:hover,
:root[data-theme="dark"] .site-menu a:focus-visible,
:root[data-theme="dark"] .site-menu a.active {
  background: rgba(53, 199, 221, 0.12);
}

@media (max-width: 1080px) {
  .site-menu a {
    font-size: 12px;
    padding: 9px 8px;
  }

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

@media (max-width: 920px) {
  .hero-inner,
  .home-hero-inner,
  .intro-grid,
  .contact-layout,
  .service-band,
  .whatsapp-panel,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .feature-grid.three,
  .home-service-grid,
  .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-list article {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .product-list p {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    height: 42px;
    width: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    max-width: 174px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    inset: 80px 10px auto;
    padding: 14px;
    position: fixed;
  }

  .theme-switch {
    justify-content: center;
    width: 100%;
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 58px;
    padding-top: 52px;
  }

  .home-hero-inner {
    min-height: auto;
    padding-bottom: 58px;
    padding-top: 52px;
  }

  .home-proof,
  .dashboard-grid,
  .whatsapp-list {
    grid-template-columns: 1fr;
  }

  .section .section-inner,
  .page-hero .section-inner {
    padding-bottom: 62px;
    padding-top: 62px;
  }

  .feature-grid.three,
  .feature-grid.four,
  .home-service-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .product-list article {
    grid-template-columns: 1fr;
  }

  .product-list p {
    grid-column: auto;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

/* Final polish overrides */
.cta-band {
  padding: 28px;
}

.cta-band .btn {
  border-radius: 14px;
  font-size: 15px;
  min-height: 44px;
  min-width: 148px;
  padding: 10px 18px;
  white-space: nowrap;
}

.home-cta .btn {
  max-width: 190px;
}

.lead-popup-card {
  max-width: 480px;
  padding: 26px;
  width: min(100%, 480px);
}

.lead-popup-card h2 {
  font-size: clamp(24px, 4vw, 34px);
}

.lead-form input,
.lead-form select {
  border-radius: 12px;
  min-height: 46px;
}

.lead-form .btn {
  border-radius: 12px;
  min-height: 48px;
}

@media (max-width: 1080px) {
  .nav-shell {
    gap: 16px;
    min-height: 86px;
  }

  .site-menu {
    gap: 5px;
  }

  .site-menu a {
    font-size: 12px;
    padding: 8px 9px;
  }

  .theme-switch strong {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 74px;
  }

  .lead-popup-card {
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-menu {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    inset: 88px 14px auto;
    padding: 14px;
    position: fixed;
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }

  .theme-switch {
    justify-content: center;
    width: 100%;
  }

  .theme-switch strong {
    display: inline;
  }
}

/* Header final responsive system */
@media (min-width: 761px) {
  .nav-toggle {
    display: none !important;
  }

  .site-menu {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    inset: auto !important;
    padding: 0 !important;
    position: static !important;
  }

  .site-menu a {
    text-align: left !important;
    width: auto !important;
  }

  .menu-dropdown {
    position: relative;
    width: auto;
  }

  .dropdown-panel {
    position: absolute;
  }

  .theme-switch {
    width: auto !important;
  }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .site-menu {
    gap: 5px !important;
  }

  .site-menu a {
    font-size: 12px !important;
    padding: 8px 9px !important;
  }

  .site-menu .nav-cta {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
}

@media (max-width: 900px) and (min-width: 761px) {
  .nav-shell {
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    height: 38px;
    width: 38px;
  }

  .brand strong {
    font-size: 13px;
  }

  .site-menu {
    gap: 2px !important;
  }

  .site-menu a {
    font-size: 10.5px !important;
    padding: 6px 6px !important;
  }

  .site-menu .nav-cta {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  .theme-switch {
    min-height: 30px;
    padding: 5px 7px;
  }

  .theme-switch span {
    height: 15px;
    width: 15px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex !important;
  }

  .site-menu {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 8px;
    inset: 82px 12px auto;
    padding: 12px;
    position: fixed;
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a,
  .theme-switch,
  .menu-dropdown {
    justify-content: center;
    text-align: center;
    width: 100% !important;
  }

  .dropdown-trigger::after {
    display: none;
  }

  .dropdown-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 6px;
    left: auto;
    min-width: 0;
    opacity: 1;
    padding: 6px 0 0;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .dropdown-panel a {
    background: var(--mist);
    white-space: normal;
  }
}

.cta-band .btn {
  max-width: none;
  min-width: max-content;
  overflow: visible;
  text-align: center;
}

/* Final shared header and footer cleanup */
.menu-dropdown,
.dropdown-panel {
  display: contents;
}

.dropdown-trigger::after,
.footer-inner::after {
  content: none !important;
  display: none !important;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 1fr) auto minmax(260px, 1fr);
}

.footer-services {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 14px;
  text-align: center;
  white-space: nowrap;
}

.footer-grid p {
  justify-self: end;
  text-align: right;
}

@media (min-width: 901px) {
  .site-menu {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    inset: auto !important;
    padding: 0 !important;
    position: static !important;
  }

  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .brand small {
    display: none;
  }

  .site-menu a {
    font-size: 12px !important;
    padding: 8px 9px !important;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex !important;
  }

  .site-menu {
    background: var(--paper) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    display: none !important;
    flex-direction: column !important;
    gap: 8px !important;
    inset: 82px 12px auto !important;
    padding: 14px !important;
    position: fixed !important;
  }

  .site-menu.is-open {
    display: flex !important;
  }

  .site-menu a,
  .theme-switch {
    justify-content: center;
    text-align: center !important;
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-services {
    white-space: normal;
  }

  .footer-grid p {
    justify-self: start;
    text-align: left;
  }
}

/* Final visual tuning: compact header, balanced heroes, polished content density */
.site-header {
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(16, 36, 45, 0.05);
}

.nav-shell {
  gap: 22px;
  min-height: 76px;
}

.brand img {
  height: 46px;
  width: 46px;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  font-size: 11px;
  max-width: 270px;
}

.site-menu {
  border-radius: 999px;
}

.site-menu a,
.theme-switch {
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  padding: 10px 13px;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-menu a.active {
  background: #e9f8fb;
  color: var(--cyan-2);
}

.site-menu .nav-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border: 0;
  box-shadow: 0 14px 28px rgba(47, 183, 203, 0.22);
  color: #fff;
}

.site-menu .nav-cta:hover,
.site-menu .nav-cta:focus-visible,
.site-menu .nav-cta.active,
.btn.primary:hover,
.btn.primary:focus-visible {
  background: linear-gradient(135deg, #357f39, #20a8bf);
  color: #fff;
  transform: translateY(-1px);
}

.btn {
  border-radius: 999px;
  min-height: 42px;
  padding: 11px 18px;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 36, 45, 0.08);
}

.home-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(230, 197, 31, 0.18), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(47, 183, 203, 0.2), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #eefbfc 48%, #f7fbf1 100%);
}

.home-hero-inner {
  align-items: center;
  gap: clamp(30px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  min-height: auto;
  padding-bottom: clamp(58px, 7vw, 92px);
  padding-top: clamp(52px, 7vw, 86px);
}

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

.home-hero-copy h1 {
  font-size: clamp(42px, 4.2vw, 58px);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 12px 0 14px;
  max-width: 790px;
  text-wrap: balance;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.slogan-badge {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 36, 45, 0.06);
  color: var(--green-2);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 6px;
  padding: 7px 12px;
}

.hero-service-line {
  color: var(--cyan-2);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 900;
  margin: 0 0 18px;
}

.home-proof {
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
}

.home-proof span {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(16, 36, 45, 0.06);
  min-height: 86px;
  padding: 14px;
}

.home-dashboard {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(16, 36, 45, 0.14);
  justify-self: end;
  max-width: 470px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.home-dashboard::before {
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow));
  content: "";
  height: 5px;
  inset: 0 0 auto;
  position: absolute;
}

.dashboard-logo {
  border-bottom: 1px solid var(--line);
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.dashboard-logo strong {
  color: var(--cyan-2);
  font-size: 13px;
  text-transform: uppercase;
}

.dashboard-logo span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
}

.dashboard-grid {
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dash-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 128px;
  padding: 17px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dash-card:hover {
  box-shadow: 0 16px 32px rgba(16, 36, 45, 0.1);
  transform: translateY(-3px);
}

.dash-card strong {
  font-size: 15px;
}

.dash-card span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.section .section-inner {
  padding-bottom: clamp(50px, 6vw, 72px);
  padding-top: clamp(50px, 6vw, 72px);
}

.section-inner.intro-grid,
.section-inner.whatsapp-panel,
.section-inner.split-showcase,
.section-inner.cta-band {
  padding: clamp(28px, 4vw, 44px) !important;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.home-intro h2,
.whatsapp-panel h2,
.showcase-card h2,
.cta-band h2,
.page-hero h1 {
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: 0;
  line-height: 1.14;
  text-wrap: balance;
}

.home-intro .intro-grid {
  align-items: center;
  background: linear-gradient(135deg, rgba(47, 183, 203, 0.08), rgba(67, 141, 63, 0.08));
  border: 1px solid var(--line);
  border-radius: 18px;
  gap: 34px;
}

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

.home-service-card {
  border-radius: 14px;
  min-height: 218px;
  padding: 22px;
}

.home-service-card h3 {
  font-size: 20px;
  line-height: 1.22;
}

.home-service-card p {
  color: var(--ink-2);
  font-size: 14px;
}

.whatsapp-panel {
  align-items: center;
  background:
    radial-gradient(circle at 100% 0, rgba(230, 197, 31, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 249, 251, 0.95));
  border: 1px solid var(--line);
  border-radius: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  overflow: hidden;
}

.whatsapp-panel > div:first-child {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.whatsapp-panel p {
  max-width: 610px;
}

.whatsapp-list {
  align-content: center;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

.whatsapp-list span {
  border: 1px solid rgba(47, 183, 203, 0.16);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(16, 36, 45, 0.06);
  font-size: 14px;
  min-height: 58px;
  padding: 15px 16px;
}

.split-showcase {
  align-items: stretch;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.showcase-card {
  border-radius: 18px;
  min-height: auto;
  padding: clamp(26px, 4vw, 38px);
}

.showcase-card.accent {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.15), transparent 24%),
    linear-gradient(135deg, var(--mist), rgba(239, 248, 238, 0.78));
}

.compact-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-list a {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  padding: 14px 15px;
}

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

.process-row article {
  border-radius: 14px;
  padding: 20px;
}

.cta-band {
  align-items: center;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #f3fbf7);
  border-radius: 18px;
  gap: 24px;
  min-height: 210px;
  padding: clamp(28px, 5vw, 48px) !important;
}

.cta-band .btn {
  min-width: 170px;
  width: auto;
}

.page-hero {
  background:
    radial-gradient(circle at 8% 8%, rgba(230, 197, 31, 0.14), transparent 24%),
    radial-gradient(circle at 90% 0, rgba(47, 183, 203, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f2fbfc);
}

.page-hero .section-inner {
  min-height: auto;
  padding-bottom: clamp(52px, 7vw, 84px);
  padding-top: clamp(52px, 7vw, 84px);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
}

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

.feature-card {
  border-radius: 14px;
  min-height: 190px;
}

:root[data-theme="dark"] .site-menu a:hover,
:root[data-theme="dark"] .site-menu a:focus-visible,
:root[data-theme="dark"] .site-menu a.active {
  background: rgba(47, 183, 203, 0.16);
  color: var(--cyan-2);
}

:root[data-theme="dark"] .home-hero,
:root[data-theme="dark"] .page-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(230, 197, 31, 0.12), transparent 26%),
    radial-gradient(circle at 92% 10%, rgba(47, 183, 203, 0.16), transparent 29%),
    linear-gradient(135deg, #071419 0%, #0d252c 52%, #0c1f17 100%);
}

:root[data-theme="dark"] .home-dashboard,
:root[data-theme="dark"] .slogan-badge,
:root[data-theme="dark"] .home-proof span,
:root[data-theme="dark"] .btn.secondary,
:root[data-theme="dark"] .compact-list a {
  background: rgba(16, 36, 45, 0.86);
}

:root[data-theme="dark"] .whatsapp-panel,
:root[data-theme="dark"] .cta-band,
:root[data-theme="dark"] .home-intro .intro-grid,
:root[data-theme="dark"] .showcase-card.accent {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(16, 36, 45, 0.96), rgba(10, 28, 22, 0.92));
}

:root[data-theme="dark"] .dash-card span,
:root[data-theme="dark"] .home-service-card p {
  color: var(--ink-2);
}

@media (max-width: 1180px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-dashboard {
    justify-self: stretch;
    max-width: none;
  }

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

@media (max-width: 980px) {
  .home-service-grid,
  .feature-grid.three,
  .process-row,
  .whatsapp-panel,
  .split-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .nav-shell {
    min-height: 72px;
  }

  .site-menu {
    inset: 76px 12px auto !important;
  }
}

@media (max-width: 760px) {
  .brand img {
    height: 42px;
    width: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .home-hero-inner {
    padding-top: 34px;
  }

  .home-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-proof,
  .compact-list,
  .whatsapp-list {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-logo {
    display: block;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .dashboard-logo span {
    display: block;
    font-size: 16px;
    margin-top: 4px;
  }

  .dash-card {
    min-height: 112px;
    padding: 12px;
  }

  .dash-card strong {
    font-size: 13px;
  }

  .dash-card span {
    font-size: 11px;
  }

  .home-proof span {
    min-height: 74px;
  }

  .home-dashboard,
  .whatsapp-panel,
  .showcase-card,
  .cta-band,
  .home-intro .intro-grid {
    border-radius: 14px;
  }

  .section-heading h2,
  .home-intro h2,
  .whatsapp-panel h2,
  .showcase-card h2,
  .cta-band h2,
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }
}

/* Compact index hero pass requested by client */
.home-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 44%, rgba(238, 249, 251, 0.9) 100%),
    radial-gradient(circle at 96% 12%, rgba(47, 183, 203, 0.18), transparent 26%),
    radial-gradient(circle at 4% 80%, rgba(230, 197, 31, 0.12), transparent 24%);
}

.home-hero-inner {
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  padding-bottom: clamp(30px, 4vw, 42px);
  padding-top: clamp(30px, 4vw, 42px);
}

.home-hero-copy h1 {
  font-size: clamp(36px, 3.55vw, 48px);
  line-height: 1.08;
  margin: 8px 0 10px;
  max-width: 720px;
}

.home-hero-copy > p:not(.eyebrow):not(.slogan-badge) {
  font-size: 16px;
  line-height: 1.58;
  margin: 10px 0 0;
  max-width: 610px;
}

.slogan-badge {
  font-size: 12px;
  margin: 0 0 4px;
  padding: 6px 10px;
}

.hero-service-line {
  font-size: clamp(15px, 1.25vw, 18px);
  margin-bottom: 10px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 10px;
  max-width: 680px;
}

.hero-chips span {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 9px;
}

.hero-actions {
  margin-top: 16px;
}

.home-proof {
  margin-top: 12px;
  max-width: 560px;
}

.home-proof span {
  min-height: 56px;
  padding: 8px 10px;
}

.home-proof strong {
  font-size: 20px;
}

.home-dashboard {
  max-width: 430px;
  padding: 18px;
}

.dashboard-logo {
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.dashboard-logo span {
  font-size: 17px;
}

.dashboard-strip {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 12px;
}

.dashboard-strip span {
  background: var(--mint);
  border: 1px solid rgba(67, 141, 63, 0.15);
  border-radius: 10px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  min-height: 38px;
  padding: 7px;
}

.dashboard-grid {
  gap: 10px;
}

.dash-card {
  min-height: 94px;
  padding: 12px;
}

.dash-card strong {
  font-size: 14px;
  line-height: 1.22;
}

.dash-card span {
  font-size: 12px;
}

.home-intro .intro-grid {
  margin-top: 0;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .home-hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  }

  .home-dashboard {
    justify-self: end;
    max-width: 410px;
  }
}

@media (max-width: 980px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-dashboard {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .home-hero-inner {
    padding-bottom: 30px;
    padding-top: 28px;
  }

  .home-hero-copy h1 {
    font-size: clamp(31px, 8vw, 39px);
  }

  .hero-chips span {
    font-size: 11px;
    padding: 8px 9px;
  }

  .dashboard-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-strip span {
    min-height: 0;
  }

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

  .home-proof span {
    font-size: 11px;
    min-height: 58px;
  }

  .home-proof strong {
    font-size: 18px;
  }
}

/* Richer content arrangement pass */
.home-intro .intro-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  padding: clamp(28px, 4vw, 46px) !important;
}

.home-intro h2 {
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 1.14;
  max-width: 560px;
}

.home-intro p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.72;
}

.solution-paths {
  background: linear-gradient(180deg, #fff, rgba(238, 249, 251, 0.58));
}

.solution-paths .section-heading {
  display: grid;
  gap: 14px 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  margin-bottom: 28px;
}

.solution-paths .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.solution-paths .section-heading h2 {
  margin: 0;
}

.solution-paths .section-heading p:not(.eyebrow) {
  align-self: end;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.68;
  margin: 0;
}

.path-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(16, 36, 45, 0.06);
  min-height: 210px;
  padding: 20px;
}

.path-card span {
  background: var(--mist);
  border-radius: 999px;
  color: var(--cyan-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 7px 10px;
}

.path-card h3 {
  font-size: 20px;
  line-height: 1.24;
  margin: 0 0 10px;
}

.path-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  margin: 0;
}

.path-card:nth-child(2) span {
  background: var(--sun);
  color: var(--yellow-2);
}

.path-card:nth-child(3) span,
.path-card:nth-child(4) span {
  background: var(--mint);
  color: var(--green-2);
}

:root[data-theme="dark"] .solution-paths {
  background: linear-gradient(180deg, var(--cream), rgba(14, 48, 57, 0.38));
}

:root[data-theme="dark"] .path-card {
  background: rgba(16, 36, 45, 0.86);
}

@media (max-width: 980px) {
  .home-intro .intro-grid,
  .solution-paths .section-heading,
  .path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-intro h2 {
    font-size: clamp(28px, 7vw, 36px) !important;
  }

  .home-intro p {
    font-size: 15px;
  }

  .path-card {
    min-height: auto;
  }
}

.detail-split {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.detail-split h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.16;
  margin: 0 0 14px;
  text-wrap: balance;
}

.detail-split p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(16, 36, 45, 0.05);
  display: grid;
  gap: 6px;
  padding: 17px 18px;
}

.detail-list strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.detail-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.marketing-plan,
.ai-usecases,
.product-upgrade {
  background: linear-gradient(135deg, rgba(238, 249, 251, 0.7), rgba(239, 248, 238, 0.62));
}

:root[data-theme="dark"] .detail-list article {
  background: rgba(16, 36, 45, 0.86);
}

:root[data-theme="dark"] .marketing-plan,
:root[data-theme="dark"] .ai-usecases,
:root[data-theme="dark"] .product-upgrade {
  background: linear-gradient(135deg, rgba(14, 48, 57, 0.7), rgba(18, 50, 29, 0.52));
}

@media (max-width: 980px) {
  .detail-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .detail-split h2 {
    font-size: clamp(28px, 7vw, 36px);
  }
}

/* Client fix: remove large blank spaces and oversized landing sections */
main .section {
  margin: 0 !important;
}

main .section .section-inner {
  padding-bottom: 34px !important;
  padding-top: 34px !important;
}

.home-hero-inner {
  min-height: 0 !important;
  padding-bottom: 28px !important;
  padding-top: 28px !important;
}

.home-intro {
  background: #fff !important;
}

.home-intro .intro-grid {
  align-items: center !important;
  border-radius: 14px !important;
  gap: 28px !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  padding: 30px 36px !important;
}

.home-intro h2 {
  font-size: clamp(30px, 2.65vw, 38px) !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  max-width: 520px !important;
}

.home-intro p:not(.eyebrow) {
  font-size: 16px !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.solution-paths {
  background: #fff !important;
}

.solution-paths .section-heading {
  align-items: end !important;
  display: grid !important;
  gap: 12px 28px !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  margin-bottom: 18px !important;
}

.solution-paths .section-heading h2,
.home-services .section-heading h2,
.home-process .section-heading h2 {
  font-size: clamp(28px, 2.55vw, 38px) !important;
  line-height: 1.16 !important;
  margin: 0 !important;
  max-width: 620px !important;
}

.solution-paths .section-heading p:not(.eyebrow) {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.path-grid {
  gap: 12px !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.path-card {
  border-radius: 12px !important;
  min-height: 154px !important;
  padding: 16px !important;
}

.path-card span {
  margin-bottom: 10px !important;
}

.path-card h3 {
  font-size: 17px !important;
  margin-bottom: 8px !important;
}

.path-card p {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.home-service-card {
  min-height: 174px !important;
  padding: 18px !important;
}

.whatsapp-panel,
.split-showcase,
.cta-band {
  min-height: 0 !important;
}

.whatsapp-panel h2,
.showcase-card h2,
.cta-band h2 {
  font-size: clamp(28px, 2.65vw, 38px) !important;
}

.showcase-card {
  padding: 24px !important;
}

.process-row article {
  min-height: 0 !important;
}

@media (max-width: 980px) {
  .home-intro .intro-grid,
  .solution-paths .section-heading,
  .path-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  main .section .section-inner {
    padding-bottom: 26px !important;
    padding-top: 26px !important;
  }

  .home-intro .intro-grid {
    padding: 22px !important;
  }

  .home-intro h2,
  .solution-paths .section-heading h2,
  .home-services .section-heading h2,
  .home-process .section-heading h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .path-card,
  .home-service-card {
    min-height: 0 !important;
  }
}

/* Final density pass across all pages */
.page-hero .section-inner {
  min-height: 0 !important;
  padding-bottom: 36px !important;
  padding-top: 36px !important;
}

.page-hero h1 {
  font-size: clamp(34px, 3.4vw, 48px) !important;
  line-height: 1.12 !important;
  margin: 8px 0 12px !important;
  max-width: 900px !important;
}

.page-hero p:not(.eyebrow) {
  font-size: 16px !important;
  line-height: 1.62 !important;
  margin: 0 !important;
  max-width: 760px !important;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 9px 12px;
}

.section-heading {
  margin-bottom: 20px !important;
}

.section-heading h2,
.detail-split h2,
.service-band h2 {
  font-size: clamp(28px, 2.65vw, 40px) !important;
  line-height: 1.16 !important;
}

.feature-card {
  min-height: 0 !important;
  padding: 20px !important;
}

.feature-card h3 {
  font-size: 19px !important;
  line-height: 1.25 !important;
}

.feature-card p,
.feature-card li {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.feature-grid,
.product-list,
.detail-list,
.service-pills {
  gap: 14px !important;
}

.product-list article {
  min-height: 0 !important;
  padding: 18px !important;
}

.product-list h2 {
  font-size: 21px !important;
}

.detail-split {
  gap: 28px !important;
}

.detail-list article {
  padding: 15px 16px !important;
}

.contact-layout {
  align-items: start !important;
  gap: 22px !important;
}

.contact-info-card,
.contact-form {
  padding: 22px !important;
}

.site-footer {
  margin-top: 0 !important;
}

:root[data-theme="dark"] .hero-points span {
  background: rgba(16, 36, 45, 0.86);
}

@media (max-width: 760px) {
  .page-hero .section-inner {
    padding-bottom: 28px !important;
    padding-top: 28px !important;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8vw, 38px) !important;
  }

  .hero-points span {
    font-size: 12px;
    padding: 8px 10px;
  }
}

/* Index dark-mode premium polish */
:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 78% 4%, rgba(47, 183, 203, 0.16), transparent 34%),
    radial-gradient(circle at 14% 30%, rgba(67, 141, 63, 0.14), transparent 28%),
    #071419 !important;
}

:root[data-theme="dark"] .home-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 183, 203, 0.2), transparent 32%),
    radial-gradient(circle at 18% 76%, rgba(67, 141, 63, 0.18), transparent 28%),
    linear-gradient(135deg, #071419 0%, #0b2d34 54%, #0a231a 100%) !important;
  border-bottom: 1px solid rgba(114, 217, 232, 0.12);
}

:root[data-theme="dark"] .home-intro,
:root[data-theme="dark"] .solution-paths,
:root[data-theme="dark"] .home-services,
:root[data-theme="dark"] .whatsapp-spotlight,
:root[data-theme="dark"] .home-process,
:root[data-theme="dark"] main .section {
  background: transparent !important;
}

:root[data-theme="dark"] .home-intro .intro-grid {
  background:
    radial-gradient(circle at 100% 0%, rgba(67, 141, 63, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(16, 36, 45, 0.96), rgba(12, 35, 31, 0.96)) !important;
  border-color: rgba(114, 217, 232, 0.18) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

:root[data-theme="dark"] .solution-paths .section-heading h2,
:root[data-theme="dark"] .solution-paths .section-heading p,
:root[data-theme="dark"] .solution-paths .eyebrow,
:root[data-theme="dark"] .home-intro h2,
:root[data-theme="dark"] .home-intro p {
  color: var(--ink) !important;
}

:root[data-theme="dark"] .solution-paths .section-heading p:not(.eyebrow),
:root[data-theme="dark"] .home-intro p:not(.eyebrow) {
  color: #c7e2e8 !important;
}

:root[data-theme="dark"] .solution-paths .section-heading {
  background:
    linear-gradient(135deg, rgba(14, 48, 57, 0.72), rgba(18, 50, 29, 0.6));
  border: 1px solid rgba(114, 217, 232, 0.12);
  border-radius: 14px;
  padding: 22px !important;
}

:root[data-theme="dark"] .path-card,
:root[data-theme="dark"] .home-service-card,
:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .process-row article {
  background:
    linear-gradient(145deg, rgba(16, 36, 45, 0.95), rgba(13, 46, 52, 0.82)) !important;
  border-color: rgba(114, 217, 232, 0.16) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

:root[data-theme="dark"] .path-card h3,
:root[data-theme="dark"] .home-service-card h3,
:root[data-theme="dark"] .feature-card h3,
:root[data-theme="dark"] .process-row strong,
:root[data-theme="dark"] .path-card p,
:root[data-theme="dark"] .home-service-card p,
:root[data-theme="dark"] .process-row p {
  color: #eefbff !important;
}

:root[data-theme="dark"] .path-card p,
:root[data-theme="dark"] .home-service-card p,
:root[data-theme="dark"] .process-row p {
  color: #bdd6de !important;
}

:root[data-theme="dark"] .whatsapp-panel,
:root[data-theme="dark"] .split-showcase,
:root[data-theme="dark"] .cta-band {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(16, 36, 45, 0.96), rgba(10, 34, 25, 0.92)) !important;
  border-color: rgba(114, 217, 232, 0.16) !important;
}

:root[data-theme="dark"] .home-proof span,
:root[data-theme="dark"] .hero-chips span,
:root[data-theme="dark"] .dashboard-strip span {
  background: rgba(238, 251, 255, 0.08) !important;
  border-color: rgba(114, 217, 232, 0.16) !important;
  color: #dff8ff !important;
}

:root[data-theme="dark"] .home-dashboard {
  background: rgba(9, 28, 35, 0.94) !important;
  border-color: rgba(114, 217, 232, 0.18) !important;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

/* Index v2 complete landing redesign */
.index-v2 {
  background:
    radial-gradient(circle at 88% 6%, rgba(47, 183, 203, 0.16), transparent 30%),
    radial-gradient(circle at 8% 14%, rgba(230, 197, 31, 0.13), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfb 46%, #ffffff 100%);
}

.v2-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 34px);
  padding-right: clamp(18px, 4vw, 34px);
}

.v2-hero {
  overflow: hidden;
  position: relative;
}

.v2-hero::before {
  background:
    linear-gradient(90deg, rgba(67, 141, 63, 0.16), rgba(47, 183, 203, 0.16), rgba(230, 197, 31, 0.12));
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.v2-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  padding-bottom: clamp(56px, 7vw, 88px);
  padding-top: clamp(58px, 7vw, 90px);
}

.v2-kicker {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.v2-hero h1,
.v2-heading-row h2,
.v2-split h2,
.v2-product-copy h2,
.v2-cta h2 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

.v2-hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  max-width: 820px;
}

.v2-lead {
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.68;
  margin: 22px 0 0;
  max-width: 690px;
}

.v2-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.v2-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  max-width: 620px;
}

.v2-proof span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(16, 36, 45, 0.08);
  color: var(--ink-2);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 2px;
  min-height: 78px;
  padding: 14px;
}

.v2-proof strong {
  color: var(--cyan-2);
  font-size: 27px;
  line-height: 1;
}

.v2-console {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(16, 36, 45, 0.18);
  overflow: hidden;
  padding: 22px;
}

.console-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
}

.console-top span {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.console-top span:nth-child(1) { background: var(--green); }
.console-top span:nth-child(2) { background: var(--cyan); }
.console-top span:nth-child(3) { background: var(--yellow); }

.console-top strong {
  color: var(--ink);
  font-size: 14px;
  margin-left: auto;
}

.console-metric {
  background: linear-gradient(135deg, var(--mist), rgba(239, 248, 238, 0.86));
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 18px;
  padding: 18px;
}

.console-metric p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.console-metric strong {
  color: var(--ink);
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.console-metric div {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  height: 9px;
  margin-top: 16px;
  overflow: hidden;
}

.console-metric div span {
  background: linear-gradient(90deg, var(--green), var(--cyan));
  display: block;
  height: 100%;
}

.console-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.console-grid article,
.console-alert,
.v2-band-grid article,
.v2-service-grid a,
.v2-product-list a {
  border: 1px solid var(--line);
  border-radius: 16px;
}

.console-grid article {
  background: #fff;
  min-height: 116px;
  padding: 16px;
}

.console-grid span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
}

.console-grid strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  margin-top: 8px;
}

.console-grid p,
.console-alert p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 6px 0 0;
}

.console-alert {
  background: var(--sun);
  margin-top: 14px;
  padding: 16px;
}

.console-alert strong {
  color: var(--yellow-2);
}

.v2-band,
.v2-section {
  padding: 38px 0;
}

.v2-band-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-band-grid article {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(16, 36, 45, 0.07);
  min-height: 128px;
  padding: 18px;
}

.v2-band-grid strong,
.v2-service-grid strong,
.v2-product-list a {
  color: var(--ink);
}

.v2-band-grid span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 8px;
}

.v2-heading-row,
.v2-split,
.v2-product-grid,
.v2-cta {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.v2-heading-row {
  align-items: end;
  margin-bottom: 22px;
}

.v2-heading-row h2,
.v2-split h2,
.v2-product-copy h2,
.v2-cta h2 {
  font-size: clamp(32px, 3.35vw, 48px);
}

.v2-heading-row > p,
.v2-split p,
.v2-product-copy p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.v2-service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-service-grid a {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(16, 36, 45, 0.07);
  min-height: 162px;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.v2-service-grid a:hover {
  box-shadow: 0 24px 48px rgba(16, 36, 45, 0.12);
  transform: translateY(-4px);
}

.v2-service-grid span {
  color: var(--cyan-2);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 20px;
}

.v2-service-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

.v2-split-section {
  background:
    radial-gradient(circle at 100% 20%, rgba(67, 141, 63, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(238, 249, 251, 0.9), rgba(255, 247, 213, 0.45));
}

.v2-split {
  align-items: center;
}

.v2-chip-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-chip-wall span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 15px;
}

.v2-product-grid,
.v2-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(16, 36, 45, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.v2-product-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-product-list a {
  background: var(--mist);
  font-size: 14px;
  font-weight: 900;
  padding: 14px;
}

.v2-cta {
  grid-template-columns: minmax(0, 1fr) auto;
}

:root[data-theme="dark"] .index-v2 {
  background:
    radial-gradient(circle at 84% 8%, rgba(47, 183, 203, 0.18), transparent 34%),
    radial-gradient(circle at 10% 28%, rgba(67, 141, 63, 0.16), transparent 30%),
    linear-gradient(180deg, #071419 0%, #09252c 48%, #071419 100%);
}

:root[data-theme="dark"] .v2-hero h1,
:root[data-theme="dark"] .v2-heading-row h2,
:root[data-theme="dark"] .v2-split h2,
:root[data-theme="dark"] .v2-product-copy h2,
:root[data-theme="dark"] .v2-cta h2,
:root[data-theme="dark"] .console-top strong,
:root[data-theme="dark"] .console-metric strong,
:root[data-theme="dark"] .console-grid strong,
:root[data-theme="dark"] .v2-band-grid strong,
:root[data-theme="dark"] .v2-service-grid strong,
:root[data-theme="dark"] .v2-product-list a {
  color: #eefbff;
}

:root[data-theme="dark"] .v2-lead,
:root[data-theme="dark"] .v2-heading-row > p,
:root[data-theme="dark"] .v2-split p,
:root[data-theme="dark"] .v2-product-copy p,
:root[data-theme="dark"] .v2-band-grid span,
:root[data-theme="dark"] .console-grid p,
:root[data-theme="dark"] .console-alert p {
  color: #bdd6de;
}

:root[data-theme="dark"] .v2-console,
:root[data-theme="dark"] .v2-band-grid article,
:root[data-theme="dark"] .v2-service-grid a,
:root[data-theme="dark"] .v2-product-grid,
:root[data-theme="dark"] .v2-cta,
:root[data-theme="dark"] .console-grid article {
  background: rgba(12, 31, 38, 0.9);
  border-color: rgba(114, 217, 232, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .console-metric,
:root[data-theme="dark"] .console-alert,
:root[data-theme="dark"] .v2-product-list a,
:root[data-theme="dark"] .v2-chip-wall span {
  background: rgba(238, 251, 255, 0.08);
  border-color: rgba(114, 217, 232, 0.16);
}

:root[data-theme="dark"] .v2-chip-wall span,
:root[data-theme="dark"] .v2-kicker,
:root[data-theme="dark"] .v2-service-grid span,
:root[data-theme="dark"] .console-grid span {
  color: #72d9e8;
}

:root[data-theme="dark"] .v2-split-section {
  background:
    radial-gradient(circle at 100% 20%, rgba(67, 141, 63, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(12, 31, 38, 0.7), rgba(10, 34, 25, 0.55));
}

@media (max-width: 980px) {
  .v2-hero-grid,
  .v2-heading-row,
  .v2-split,
  .v2-product-grid,
  .v2-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .v2-hero-grid {
    padding-bottom: 38px;
    padding-top: 38px;
  }

  .v2-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .v2-proof,
  .console-grid,
  .v2-band-grid,
  .v2-service-grid,
  .v2-product-list {
    grid-template-columns: 1fr;
  }
}

/* Mitrah index full rebuild */
.mt-landing {
  background:
    radial-gradient(circle at 82% 8%, rgba(47, 183, 203, 0.18), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(230, 197, 31, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f2fbfb 44%, #ffffff 100%);
  color: var(--ink);
  overflow: hidden;
}

.mt-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: clamp(18px, 4vw, 34px);
  padding-right: clamp(18px, 4vw, 34px);
}

.mt-hero {
  position: relative;
}

.mt-hero::before {
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--yellow));
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.mt-hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 66px);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  padding-bottom: clamp(58px, 7vw, 92px);
  padding-top: clamp(58px, 7vw, 92px);
}

.mt-label {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.mt-hero h1,
.mt-section h2 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

.mt-hero h1 {
  font-size: clamp(44px, 5.2vw, 74px);
  max-width: 830px;
}

.mt-hero-content > p {
  color: var(--ink-2);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.68;
  margin: 22px 0 0;
  max-width: 680px;
}

.mt-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mt-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 650px;
}

.mt-stats span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(16, 36, 45, 0.08);
  color: var(--ink-2);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 5px;
  min-height: 82px;
  padding: 14px;
}

.mt-stats strong {
  color: var(--cyan-2);
  font-size: 28px;
  line-height: 1;
}

.mt-command {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(16, 36, 45, 0.18);
  padding: 22px;
}

.mt-command-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
}

.mt-command-head strong {
  color: var(--ink);
  font-size: 20px;
}

.mt-command-head span {
  background: var(--mint);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.mt-flow {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.mt-flow article {
  background: linear-gradient(145deg, #ffffff, var(--mist));
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 128px;
  padding: 16px;
}

.mt-flow small {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
}

.mt-flow strong {
  color: var(--ink);
  display: block;
  font-size: 21px;
  margin-top: 8px;
}

.mt-flow span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 5px;
}

.mt-command-footer {
  background: var(--sun);
  border: 1px solid rgba(230, 197, 31, 0.26);
  border-radius: 16px;
  margin-top: 14px;
  padding: 16px;
}

.mt-command-footer span {
  color: var(--yellow-2);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.mt-command-footer strong {
  color: var(--ink);
  font-size: 16px;
}

.mt-strip {
  padding: 22px 0;
}

.mt-strip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-strip-grid span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(16, 36, 45, 0.05);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
}

.mt-section {
  padding: clamp(44px, 6vw, 76px) 0;
}

.mt-section-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  margin-bottom: 24px;
}

.mt-section-head.compact {
  display: block;
}

.mt-section h2 {
  font-size: clamp(32px, 3.35vw, 48px);
}

.mt-section-head p,
.mt-feature p,
.mt-panel p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.mt-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mt-card,
.mt-panel,
.mt-process-grid article,
.mt-final-cta {
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mt-card {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(16, 36, 45, 0.07);
  min-height: 202px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mt-card:hover {
  box-shadow: 0 26px 56px rgba(16, 36, 45, 0.13);
  transform: translateY(-4px);
}

.mt-card.accent {
  background: linear-gradient(145deg, #ffffff, rgba(239, 248, 238, 0.95));
}

.mt-card span {
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
}

.mt-card h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  margin: 18px 0 10px;
}

.mt-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  margin: 0;
}

.mt-feature {
  background:
    radial-gradient(circle at 92% 0%, rgba(47, 183, 203, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(238, 249, 251, 0.92), rgba(255, 247, 213, 0.46));
}

.mt-feature-grid,
.mt-two-col,
.mt-final-cta {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 52px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.mt-feature .btn {
  margin-top: 24px;
}

.mt-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mt-pill-grid span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-2);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 15px;
}

.mt-panel {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(16, 36, 45, 0.08);
  min-height: 390px;
  padding: clamp(24px, 4vw, 38px);
}

.mt-panel.dark {
  background: linear-gradient(135deg, var(--mist), var(--mint));
}

.mt-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mt-list a {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  padding: 13px 14px;
}

.mt-process {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding-bottom: 32px;
  padding-top: 32px;
}

.mt-process-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.mt-process-grid article {
  background: #fff;
  padding: 20px;
}

.mt-process-grid span {
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
}

.mt-process-grid strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  margin-top: 10px;
}

.mt-process-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.mt-process-grid ul {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.mt-process-grid li {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  padding-left: 17px;
  position: relative;
}

.mt-process-grid li::before {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 7px;
}

:root[data-theme="dark"] .mt-process-grid li {
  color: #d7edf2;
}

.mt-final-cta {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f3fbf7);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(26px, 4vw, 44px);
}

:root[data-theme="dark"] .mt-landing {
  background:
    radial-gradient(circle at 84% 8%, rgba(47, 183, 203, 0.18), transparent 34%),
    radial-gradient(circle at 10% 28%, rgba(67, 141, 63, 0.16), transparent 30%),
    linear-gradient(180deg, #071419 0%, #09252c 48%, #071419 100%);
}

:root[data-theme="dark"] .mt-hero h1,
:root[data-theme="dark"] .mt-section h2,
:root[data-theme="dark"] .mt-command-head strong,
:root[data-theme="dark"] .mt-flow strong,
:root[data-theme="dark"] .mt-command-footer strong,
:root[data-theme="dark"] .mt-card h3,
:root[data-theme="dark"] .mt-list a,
:root[data-theme="dark"] .mt-process-grid strong {
  color: #eefbff;
}

:root[data-theme="dark"] .mt-hero-content > p,
:root[data-theme="dark"] .mt-section-head p,
:root[data-theme="dark"] .mt-feature p,
:root[data-theme="dark"] .mt-panel p,
:root[data-theme="dark"] .mt-card p,
:root[data-theme="dark"] .mt-flow span,
:root[data-theme="dark"] .mt-process-grid p {
  color: #bdd6de;
}

:root[data-theme="dark"] .mt-command,
:root[data-theme="dark"] .mt-card,
:root[data-theme="dark"] .mt-panel,
:root[data-theme="dark"] .mt-process,
:root[data-theme="dark"] .mt-process-grid article,
:root[data-theme="dark"] .mt-final-cta,
:root[data-theme="dark"] .mt-stats span {
  background: rgba(12, 31, 38, 0.9);
  border-color: rgba(114, 217, 232, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .mt-flow article,
:root[data-theme="dark"] .mt-command-footer,
:root[data-theme="dark"] .mt-strip-grid span,
:root[data-theme="dark"] .mt-pill-grid span,
:root[data-theme="dark"] .mt-list a,
:root[data-theme="dark"] .mt-panel.dark {
  background: rgba(238, 251, 255, 0.08);
  border-color: rgba(114, 217, 232, 0.16);
}

:root[data-theme="dark"] .mt-label,
:root[data-theme="dark"] .mt-card span,
:root[data-theme="dark"] .mt-flow small,
:root[data-theme="dark"] .mt-process-grid span,
:root[data-theme="dark"] .mt-pill-grid span {
  color: #72d9e8;
}

:root[data-theme="dark"] .mt-feature {
  background:
    radial-gradient(circle at 92% 0%, rgba(47, 183, 203, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(12, 31, 38, 0.76), rgba(10, 34, 25, 0.56));
}

@media (max-width: 980px) {
  .mt-hero-layout,
  .mt-section-head,
  .mt-feature-grid,
  .mt-two-col,
  .mt-final-cta {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .mt-hero-layout {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .mt-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .mt-stats,
  .mt-flow,
  .mt-card-grid,
  .mt-process-grid {
    grid-template-columns: 1fr;
  }

  .mt-panel {
    min-height: 0;
  }
}

/* Final hero replacement */
.mt-hero-new {
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 183, 203, 0.2), transparent 30%),
    radial-gradient(circle at 8% 12%, rgba(230, 197, 31, 0.16), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #eefbfc 54%, #f6fbef 100%);
  border-bottom: 1px solid var(--line);
}

.mt-hero-new-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 640px;
  padding-bottom: clamp(44px, 6vw, 72px);
  padding-top: clamp(44px, 6vw, 72px);
}

.mt-hero-new-copy h1 {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
  max-width: 860px;
  text-wrap: balance;
}

.mt-hero-new-copy p {
  color: var(--ink-2);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.64;
  margin: 22px 0 0;
  max-width: 690px;
}

.mt-hero-new-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.mt-hero-new-tags span {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 12px;
}

.mt-hero-new-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(16, 36, 45, 0.18);
  padding: 22px;
}

.mt-panel-main {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.16), transparent 34%),
    linear-gradient(135deg, var(--mist), rgba(239, 248, 238, 0.9));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.mt-panel-main span,
.mt-live-card span {
  color: var(--green-2);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.mt-panel-main strong {
  color: var(--ink);
  display: block;
  font-size: 32px;
  line-height: 1.12;
}

.mt-panel-main p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.58;
  margin: 14px 0 0;
}

.mt-mini-stack {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.mt-mini-stack article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.mt-mini-stack strong {
  color: var(--cyan-2);
  display: block;
  font-size: 26px;
  line-height: 1;
}

.mt-mini-stack span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 5px;
}

.mt-live-card {
  background: var(--sun);
  border: 1px solid rgba(230, 197, 31, 0.28);
  border-radius: 18px;
  margin-top: 12px;
  padding: 18px;
}

.mt-live-card strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

:root[data-theme="dark"] .mt-hero-new {
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 183, 203, 0.2), transparent 30%),
    radial-gradient(circle at 8% 12%, rgba(67, 141, 63, 0.18), transparent 26%),
    linear-gradient(135deg, #071419 0%, #0b2d34 54%, #0a231a 100%);
  border-color: rgba(114, 217, 232, 0.14);
}

:root[data-theme="dark"] .mt-hero-new-copy h1,
:root[data-theme="dark"] .mt-panel-main strong,
:root[data-theme="dark"] .mt-live-card strong {
  color: #eefbff;
}

:root[data-theme="dark"] .mt-hero-new-copy p,
:root[data-theme="dark"] .mt-panel-main p {
  color: #bdd6de;
}

:root[data-theme="dark"] .mt-hero-new-tags span,
:root[data-theme="dark"] .mt-hero-new-panel,
:root[data-theme="dark"] .mt-mini-stack article,
:root[data-theme="dark"] .mt-live-card {
  background: rgba(238, 251, 255, 0.08);
  border-color: rgba(114, 217, 232, 0.16);
}

:root[data-theme="dark"] .mt-panel-main {
  background:
    radial-gradient(circle at 100% 0, rgba(47, 183, 203, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(16, 36, 45, 0.96), rgba(10, 34, 25, 0.92));
  border-color: rgba(114, 217, 232, 0.16);
}

:root[data-theme="dark"] .mt-hero-new-tags span,
:root[data-theme="dark"] .mt-panel-main span,
:root[data-theme="dark"] .mt-live-card span,
:root[data-theme="dark"] .mt-mini-stack strong {
  color: #72d9e8;
}

@media (max-width: 980px) {
  .mt-hero-new-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .mt-hero-new-grid {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .mt-hero-new-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .mt-mini-stack {
    grid-template-columns: 1fr;
  }
}

.mt-card {
  align-content: start;
  display: grid;
  min-height: 252px;
}

.mt-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.mt-card li {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  padding-left: 18px;
  position: relative;
}

.mt-card li::before {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 7px;
}

.mt-whatsapp-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mt-whatsapp-cards article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 36, 45, 0.08);
  min-height: 142px;
  padding: 20px;
}

.mt-whatsapp-cards strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.mt-whatsapp-cards span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 9px;
}

.mt-section {
  padding-bottom: clamp(42px, 5vw, 68px);
  padding-top: clamp(42px, 5vw, 68px);
}

.mt-feature {
  min-height: auto;
}

:root[data-theme="dark"] .mt-card li {
  color: #c8e2e8;
}

:root[data-theme="dark"] .mt-whatsapp-cards article {
  background: rgba(238, 251, 255, 0.08);
  border-color: rgba(114, 217, 232, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

:root[data-theme="dark"] .mt-whatsapp-cards strong {
  color: #eefbff;
}

:root[data-theme="dark"] .mt-whatsapp-cards span {
  color: #c8e2e8;
}

@media (max-width: 760px) {
  .mt-card {
    min-height: 0;
  }

  .mt-whatsapp-cards {
    grid-template-columns: 1fr;
  }

  .mt-whatsapp-cards article {
    min-height: 0;
  }
}

.google-review-link {
  align-items: center;
  background: linear-gradient(135deg, #438d3f, #2fb7cb);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 6px;
  margin-left: 12px;
  padding: 9px 13px;
  text-decoration: none;
  white-space: nowrap;
}

.google-review-link::before {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: #4285f4;
  content: "G";
  display: inline-flex;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 1000;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.google-review-float {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 18px 45px rgba(16, 36, 45, 0.18);
  color: var(--ink);
  display: inline-flex;
  gap: 9px;
  left: 20px;
  padding: 11px 16px 11px 12px;
  position: fixed;
  text-decoration: none;
  z-index: 70;
}

.google-review-float span {
  align-items: center;
  background: #f1c91f;
  border-radius: 50%;
  color: #0f2630;
  display: inline-flex;
  font-size: 15px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.google-review-float strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

:root[data-theme="dark"] .google-review-float {
  background: rgba(12, 35, 42, 0.94);
  border-color: rgba(114, 217, 232, 0.2);
}

:root[data-theme="dark"] .google-review-float strong {
  color: #eefbff;
}

@media (max-width: 760px) {
  .google-review-link {
    margin-left: 0;
    margin-top: 10px;
  }

  .google-review-float {
    bottom: 14px;
    left: 14px;
    padding: 9px 12px 9px 9px;
  }
}

.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 10px;
  vertical-align: middle;
}

.footer-socials a {
  align-items: center;
  background: rgba(47, 183, 203, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
  text-decoration: none;
}

.footer-socials a::before {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 1000;
  height: 22px;
  justify-content: center;
  margin-right: 7px;
  width: 22px;
}

.footer-socials .social-facebook::before {
  background: #1877f2;
  content: "f";
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.footer-socials .social-instagram::before {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
  content: "";
  position: relative;
}

.footer-socials .social-instagram {
  position: relative;
}

.footer-socials .social-instagram::after {
  border: 2px solid #fff;
  border-radius: 6px;
  content: "";
  height: 10px;
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}

.quick-contact-float {
  bottom: 20px;
  display: grid;
  gap: 10px;
  position: fixed;
  right: 20px;
  z-index: 75;
}

.quick-contact-item {
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(16, 36, 45, 0.18);
  color: #fff;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-start;
  min-width: 142px;
  padding: 11px 16px 11px 12px;
  text-decoration: none;
}

.quick-contact-item span {
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  font-size: 12px;
  font-weight: 1000;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.quick-contact-item svg {
  fill: currentColor;
  height: 17px;
  width: 17px;
}

.quick-contact-item strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.quick-contact-item.whatsapp {
  background: linear-gradient(135deg, #1fa855, #25d366);
}

.quick-contact-item.call {
  background: linear-gradient(135deg, #2fb7cb, #438d3f);
}

:root[data-theme="dark"] .footer-socials a {
  background: rgba(238, 251, 255, 0.08);
  border-color: rgba(114, 217, 232, 0.18);
  color: #eefbff;
}

@media (max-width: 760px) {
  .footer-socials {
    justify-content: center;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .quick-contact-float {
    bottom: 14px;
    gap: 8px;
    right: 14px;
  }

  .quick-contact-item {
    min-width: 0;
    padding: 10px;
  }

  .quick-contact-item strong {
    display: none;
  }
}

/* Final footer layout */
.site-footer {
  background:
    radial-gradient(circle at 8% 20%, rgba(47, 183, 203, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #f4fbfb);
  border-top: 1px solid var(--line);
}

.site-footer .footer-inner.footer-grid {
  align-items: center;
  display: grid !important;
  gap: 20px;
  grid-template-columns: minmax(230px, 0.75fr) minmax(390px, 1.25fr) minmax(360px, 0.85fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 28px clamp(18px, 4vw, 34px);
  width: 100%;
}

.site-footer .brand {
  min-width: 0;
}

.site-footer .brand img {
  flex: 0 0 auto;
  height: 48px;
  width: 48px;
}

.site-footer .brand small {
  color: var(--muted);
  display: block;
}

.site-footer .footer-services {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  padding: 0 !important;
  white-space: normal;
}

.site-footer .footer-services > span:first-child {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan-2);
  padding: 9px 13px;
}

.site-footer .google-review-link,
.site-footer .footer-socials {
  margin: 0;
}

.site-footer .footer-grid p {
  color: var(--muted);
  font-size: 14px;
  justify-self: end;
  line-height: 1.55;
  margin: 0;
  max-width: none;
  text-align: right;
  white-space: nowrap;
}

:root[data-theme="dark"] .site-footer {
  background:
    radial-gradient(circle at 8% 20%, rgba(47, 183, 203, 0.12), transparent 28%),
    linear-gradient(135deg, #09171c, #0d242b);
}

:root[data-theme="dark"] .site-footer .footer-services > span:first-child {
  background: rgba(238, 251, 255, 0.08);
  border-color: rgba(114, 217, 232, 0.18);
  color: #72d9e8;
}

@media (max-width: 980px) {
  .site-footer .footer-inner.footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }

  .site-footer .footer-grid p {
    justify-self: center;
    max-width: none;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .site-footer .footer-inner.footer-grid {
    padding-bottom: 34px;
    padding-top: 26px;
  }

  .site-footer .footer-services,
  .site-footer .footer-socials {
    width: 100%;
  }

  .site-footer .google-review-link,
  .site-footer .footer-socials a,
  .site-footer .footer-services > span:first-child {
    justify-content: center;
    width: 100%;
  }

  .site-footer .footer-grid p {
    font-size: 12px;
  }
}

/* Final real social icons */
.footer-socials a::before,
.footer-socials .social-instagram::after {
  content: none !important;
  display: none !important;
}

.footer-socials a {
  gap: 8px;
  padding: 9px 13px 9px 10px;
}

.footer-socials .social-icon {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.footer-socials .social-facebook .social-icon {
  background: #1877f2;
}

.footer-socials .social-instagram .social-icon {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 78%, #515bd4 100%);
}

.footer-socials svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.footer-socials .social-facebook svg {
  height: 17px;
  width: 17px;
}

