/* =========================================================
   SST Global — Design System
   Brand: #194f95 | Accent: #449519 | Light theme
   ========================================================= */

:root {
  --brand: #194f95;
  --brand-dark: #123a6e;
  --brand-soft: #e8f0f9;
  --accent: #449519;
  --accent-dark: #347412;
  --accent-soft: #eaf5e4;
  --ink: #1a2332;
  --ink-muted: #4a5568;
  --ink-faint: #718096;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --surface-tint: #eef4fb;
  --line: #d5e0ec;
  --line-soft: #e8eef5;
  --shadow-sm: 0 2px 8px rgba(25, 79, 149, 0.06);
  --shadow-md: 0 8px 28px rgba(25, 79, 149, 0.1);
  --shadow-lg: 0 18px 48px rgba(25, 79, 149, 0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --header-h: 82px;
  --container: 1140px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--tint {
  background: var(--surface-tint);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 1rem;
  max-width: 20ch;
}

.section__title--wide {
  max-width: 28ch;
}

.section__lead {
  color: var(--ink-muted);
  font-size: 1.125rem;
  max-width: 58ch;
  margin-bottom: 2.5rem;
}

.section__head {
  margin-bottom: 2.75rem;
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__title,
.section__head--center .section__lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(25, 79, 149, 0.25);
}

.btn--primary:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(68, 149, 25, 0.25);
}

.btn--accent:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

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

.btn--outline-brand {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

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

.btn--ghost {
  background: var(--brand-soft);
  color: var(--brand);
}

.btn--ghost:hover {
  background: var(--brand);
  color: #fff;
}

.btn--sm {
  padding: 0.7rem 1.15rem;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.brand--footer .brand__logo {
  height: 52px;
  max-width: 260px;
  filter: brightness(0) invert(1);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand);
}

.brand__tag {
  font-size: 0.68rem;
  color: var(--ink-faint);
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--brand);
  background: var(--brand-soft);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.05);
  animation: heroZoom 26s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(8, 28, 58, 0.94) 0%,
      rgba(25, 79, 149, 0.78) 36%,
      rgba(25, 79, 149, 0.35) 58%,
      rgba(10, 35, 70, 0.18) 100%
    ),
    linear-gradient(to top, rgba(6, 20, 44, 0.5) 0%, transparent 40%);
  z-index: 1;
}

.hero__accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent) 0%, #7bc94a 40%, var(--brand) 100%);
  z-index: 3;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  padding: calc(var(--header-h) + 3.5rem) 0 5rem;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c5e89a;
  margin-bottom: 1.15rem;
  animation: fadeUp 0.9s var(--ease) 0.06s both;
}

.hero__eyebrow span {
  display: inline-flex;
  align-items: center;
}

.hero__eyebrow span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 13ch;
  animation: fadeUp 0.9s var(--ease) 0.12s both;
}

.hero__headline em {
  font-style: normal;
  color: #b8e87a;
}

.hero__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: 2.1rem;
  animation: fadeUp 0.9s var(--ease) 0.18s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: fadeUp 0.9s var(--ease) 0.24s both;
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ---------- Photo background sections ---------- */
.section--photo {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.section--photo .section__eyebrow {
  color: #c5e89a;
}

.section--photo .section__title,
.section--photo h2,
.section--photo h3,
.section--photo h4 {
  color: #fff;
}

.section--photo .section__lead {
  color: rgba(255, 255, 255, 0.88);
}

.section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.02);
}

.section--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(12, 40, 78, 0.92) 0%, rgba(25, 79, 149, 0.88) 55%, rgba(36, 90, 40, 0.78) 100%);
}

.section--photo-why::before {
  background-image: url("../images/bg-why.jpg");
}

.section--photo-partners::before {
  background-image: url("../images/bg-partners.jpg");
}

.section--photo-contact::before {
  background-image: url("../images/bg-contact.jpg");
}

.section--photo .why-item {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.section--photo .why-item__text {
  color: #fff;
}

.section--photo .why-item__icon {
  background: rgba(159, 216, 106, 0.2);
  color: #c5e89a;
}

.section--photo .partner-area {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.section--photo .partner-area:hover {
  border-color: rgba(197, 232, 154, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.section--photo .partner-area i,
.section--photo .partner-area h4 {
  color: #fff;
}

.section--photo .partners-intro {
  color: rgba(255, 255, 255, 0.88);
}

.section--photo .contact-info > p,
.section--photo .contact-detail__value,
.section--photo .contact-detail__value a {
  color: rgba(255, 255, 255, 0.92);
}

.section--photo .contact-info h3 {
  color: #fff;
}

.section--photo .contact-detail__label {
  color: rgba(255, 255, 255, 0.65);
}

.section--photo .contact-detail__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #c5e89a;
}

.section--photo .contact-form-wrap {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
}

.section--photo .contact-form-wrap h4 {
  color: var(--ink);
}

.section--photo .contact-form-wrap > p {
  color: var(--ink-muted);
}

.section--photo .map-embed {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.97);
}

.section--photo .map-embed__link a {
  color: var(--brand);
}


/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Fallback: keep content visible if JS fails to load */
noscript .reveal,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Who We Are ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split__badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 1;
}

.split__badge i {
  color: var(--accent);
}

.split__body p {
  color: var(--ink-muted);
  margin-bottom: 1.15rem;
}

.split__body p:last-of-type {
  margin-bottom: 0;
}

.quote-bar {
  margin-top: 1.75rem;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Focus Areas ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.focus-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(25, 79, 149, 0.25);
}

.focus-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: background 0.25s, color 0.25s;
}

.focus-card:hover .focus-card__icon {
  background: var(--brand);
  color: #fff;
}

.focus-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}

.why-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.why-item__text {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  padding-top: 0.35rem;
}

/* ---------- About / Vision ---------- */
.about-hero-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.about-hero-band__media {
  min-height: 320px;
  position: relative;
}

.about-hero-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-band__body {
  background: var(--brand);
  color: #fff;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-band__body h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-hero-band__body p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vm-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
}

.vm-card--mission::before {
  background: var(--accent);
}

.vm-card__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vm-card--mission .vm-card__label {
  color: var(--accent);
}

.vm-card p {
  color: var(--ink-muted);
}

.vm-card ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.vm-card li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.vm-card li i {
  color: var(--accent);
  margin-top: 0.35rem;
  font-size: 0.75rem;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
}

.value-chip i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ---------- Services / What We Do ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft));
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.service-card__desc {
  color: var(--ink-muted);
  font-size: 0.975rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.service-card__list {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.service-card__list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.service-card__list i {
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 0.4rem;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}

.service-card__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand);
}

.service-card__amount small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-faint);
}

/* ---------- Pricing strip ---------- */
.pricing-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.925rem;
}

.pricing-note a {
  font-weight: 600;
}

/* ---------- Language product cards ---------- */
.product-stack {
  display: grid;
  gap: 2rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-card__top {
  padding: 1.75rem 1.75rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 55%, var(--accent-soft) 140%);
  border-bottom: 1px solid var(--line-soft);
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 0.85rem;
}

.product-card__badge--de {
  color: var(--accent-dark);
}

.product-card__title {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin-bottom: 0.4rem;
}

.product-card__tagline {
  color: var(--ink-muted);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

.product-card__body {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 0;
}

.product-card__copy {
  padding: 1.75rem;
}

.product-card__copy > p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.product-card__subtitle {
  font-size: 1rem;
  margin: 1.25rem 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
}

.product-card__features {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.product-card__features li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink-muted);
}

.product-card__features i {
  color: var(--accent);
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.product-card__bonus {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.product-card__bonus i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.product-card__bonus p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.product-card__emi {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.product-card__cta-note {
  color: var(--ink-faint) !important;
  font-size: 0.95rem;
  margin-bottom: 0 !important;
}

.product-card__offer {
  padding: 1.75rem;
  background: var(--surface-alt);
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}

.product-card__offer-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.product-card__price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.product-card__offer-meta {
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.product-card__offer-points {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.product-card__offer-points li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.925rem;
  color: var(--ink-muted);
}

.product-card__offer-points i {
  color: var(--brand);
  width: 1rem;
  text-align: center;
}

.product-card__offer .btn {
  margin-top: auto;
}

/* ---------- Partners ---------- */
.partners-intro {
  max-width: 62ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--ink-muted);
}

.partner-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.partner-area {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.partner-area:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}

.partner-area i {
  font-size: 1.5rem;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.partner-area h4 {
  font-size: 0.975rem;
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.contact-info > p {
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-detail__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}

.contact-detail__value {
  color: var(--ink);
  font-weight: 500;
}

.contact-detail__value a {
  color: var(--ink);
}

.contact-detail__value a:hover {
  color: var(--brand);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h4 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.contact-form-wrap > p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.form-field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(25, 79, 149, 0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.form-status--err {
  background: #fde8e8;
  color: #9b1c1c;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.map-embed {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface, #fff);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.15);
}

.map-embed__link {
  margin: 0;
  padding: 0.75rem 1rem;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 0.925rem;
}

.map-embed__link a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.map-embed__link a:hover {
  text-decoration: underline;
}

.map-embed__link i {
  margin-right: 0.35rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0f2748;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand__name {
  color: #fff;
}

.footer-brand .brand__tag {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand .brand {
  margin-bottom: 1.15rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
  max-width: 32ch;
}

.footer-pillars {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: #9fd86a;
  font-weight: 500;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #9fd86a;
}

.footer-contact li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.925rem;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: #9fd86a;
  margin-top: 0.3rem;
  width: 1rem;
  text-align: center;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a:hover {
  color: #9fd86a;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: #fff;
}

.billing-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.billing-note strong {
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../images/hero.jpg") center/cover;
  z-index: -2;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 40, 78, 0.92) 0%, rgba(25, 79, 149, 0.86) 55%, rgba(36, 90, 40, 0.75) 100%);
  z-index: -1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 0.65rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: #fff;
}

.policy-content {
  max-width: 780px;
}

.policy-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--brand);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.55rem;
}

.policy-content p,
.policy-content li {
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.policy-content ul {
  margin: 0 0 1rem 1.25rem;
  list-style: disc;
}

.policy-content ul li {
  margin-bottom: 0.4rem;
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}

/* ---------- Checkout ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.checkout-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.checkout-summary {
  background: var(--surface-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}

.checkout-summary h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.975rem;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
}

.summary-total .amount {
  font-size: 1.65rem;
  color: var(--brand);
}

.biz-badge {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  background: var(--brand-soft);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.biz-badge strong {
  color: var(--brand);
  display: block;
  margin-bottom: 0.15rem;
}

.secure-pay {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.secure-pay i {
  color: var(--accent);
}

.service-select-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.service-option:hover {
  border-color: rgba(25, 79, 149, 0.4);
}

.service-option.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.service-option input {
  accent-color: var(--brand);
  width: 1.1rem;
  height: 1.1rem;
}

.service-option__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.975rem;
}

.service-option__meta {
  font-size: 0.825rem;
  color: var(--ink-faint);
}

.service-option__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-faint);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--surface-alt);
}

.step.is-active {
  background: var(--brand);
  color: #fff;
}

.step.is-done {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.step i {
  font-size: 0.75rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    box-shadow: var(--shadow-md);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.85rem 0.75rem;
  }

  .nav__cta {
    margin: 0.5rem 0 0;
  }

  .nav__cta .btn {
    width: 100%;
  }

  .split,
  .about-hero-band,
  .vm-grid,
  .contact-layout,
  .checkout-layout,
  .product-card__body {
    grid-template-columns: 1fr;
  }

  .product-card__offer {
    border-left: none;
    border-top: 1px solid var(--line-soft);
  }

  .split__media {
    min-height: 280px;
  }

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

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

  .hero {
    align-items: center;
    padding-bottom: 5rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__headline {
    max-width: 14ch;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .section {
    padding: 3.75rem 0;
  }

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

  .why-grid,
  .services-grid,
  .partner-areas,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .footer-brand p {
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col ul {
    justify-items: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .brand__logo {
    height: 36px;
    max-width: min(190px, 62vw);
  }

  .brand__tag {
    display: none;
  }

  .hero__headline {
    font-size: clamp(1.75rem, 8.5vw, 2.4rem);
  }

  .btn-group,
  .hero__actions {
    flex-direction: column;
  }

  .btn-group .btn,
  .hero__actions .btn {
    width: 100%;
  }

  .service-option {
    grid-template-columns: auto 1fr;
  }

  .service-option__price {
    grid-column: 2;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img,
  .reveal,
  .hero__content,
  .hero__scroll,
  .hero__glow {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Floating WhatsApp chat widget ---- */
.wa-float {
  --wa-fab-size: 3.5rem;
  --wa-gap: 0.75rem;
  position: fixed;
  z-index: 1200;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  width: min(22.5rem, calc(100vw - 2rem));
  pointer-events: none;
}

.wa-float__panel,
.wa-float__fab {
  pointer-events: auto;
}

.wa-float__panel {
  position: absolute;
  right: 0;
  bottom: calc(var(--wa-fab-size) + var(--wa-gap));
  width: 100%;
  max-height: min(26rem, 70vh);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 48px -8px rgba(7, 94, 84, 0.35), 0 24px 64px -24px rgba(25, 79, 149, 0.28);
  border: 1px solid rgba(7, 94, 84, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.6rem) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.wa-float.is-open .wa-float__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-float__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.75rem 1rem 1rem;
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  color: #fff;
}

.wa-float__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.wa-float__meta {
  flex: 1;
  min-width: 0;
}

.wa-float__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.wa-float__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  opacity: 0.92;
  margin-top: 0.15rem;
}

.wa-float__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #6cff94;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.wa-float__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.wa-float__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.wa-float__body {
  padding: 1rem;
  background: linear-gradient(180deg, #e8ebe4 0%, #e5ddd5 100%);
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-float__bubble {
  align-self: flex-start;
  max-width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.wa-float__bubble-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink);
}

.wa-float__bubble-meta {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: var(--ink-faint);
}

.wa-float__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  background: #25d366;
  box-shadow: 0 4px 14px -4px rgba(37, 211, 102, 0.65);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.wa-float__cta:hover {
  background: #20bd5a;
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(37, 211, 102, 0.55);
}

.wa-float__cta:active {
  transform: scale(0.98);
}

.wa-float__cta-icon,
.wa-float__fab-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.wa-float__fab {
  position: absolute;
  right: 0;
  bottom: 0;
  width: var(--wa-fab-size);
  height: var(--wa-fab-size);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: #25d366;
  box-shadow: 0 6px 24px -4px rgba(37, 211, 102, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.wa-float__fab:hover {
  box-shadow: 0 10px 28px -4px rgba(37, 211, 102, 0.85);
}

.wa-float__fab:active {
  transform: scale(0.96);
}

.wa-float__fab-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.wa-float.is-open .wa-float__fab {
  background: #128c7e;
}

@media (prefers-reduced-motion: reduce) {
  .wa-float__panel {
    transition: none;
  }
}
