@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-v20.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/outfit-latin-v15.woff2') format('woff2');
}

:root {
  /* Color Palette */
  --color-bg-dark: #f7faf7;
  --color-bg-darker: #edf4ef;
  --color-bg-card: rgba(255, 255, 255, 0.94);
  --color-bg-card-solid: #ffffff;
  --color-primary: #137a52;
  --color-primary-dim: rgba(19, 122, 82, 0.11);
  --color-primary-light: #72e2b1;
  --color-accent: #a84c1a;
  --color-accent-dim: rgba(168, 76, 26, 0.11);
  --color-text: #14231d;
  --color-text-muted: #586962;
  --color-text-dark: #0b1d16;
  --color-brand-dark: #0b2019;
  --color-brand-darker: #06130f;
  --color-on-dark: #f7fbf8;
  --color-on-dark-muted: #b9c8c1;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-hover: #ffffff;
  --glass-border: rgba(0, 0, 0, 0.1);
  --glass-blur: blur(10px);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #157c54 0%, #1d9266 100%);
  --gradient-accent: linear-gradient(135deg, #c66a32 0%, #a84c1a 100%);
  --gradient-glow: radial-gradient(circle, var(--color-primary-dim) 0%, transparent 70%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', var(--font-primary);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow-primary: 0 8px 24px rgba(19, 122, 82, 0.2);
  --shadow-glow-accent: 0 8px 24px rgba(168, 76, 26, 0.16);
  --shadow-card: 0 16px 40px rgba(24, 52, 41, 0.12);
  --shadow-surface: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(24, 52, 41, 0.08);
  --shadow-surface-hover: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 18px 42px rgba(24, 52, 41, 0.13);
  --shadow-lg: 0 12px 32px rgba(9, 33, 24, 0.2);
  --whatsapp-green: #087a45;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: var(--space-lg);
}

html[data-theme='dark'] {
  color-scheme: dark;
  --color-bg-dark: #07110f;
  --color-bg-darker: #040a09;
  --color-bg-card: rgba(14, 30, 25, 0.88);
  --color-bg-card-solid: #0e1e19;
  --color-primary: #65e8ad;
  --color-primary-dim: rgba(101, 232, 173, 0.16);
  --color-primary-light: #72edb8;
  --color-accent: #ffb56f;
  --color-accent-dim: rgba(255, 181, 111, 0.15);
  --color-text: #ffffff;
  --color-text-muted: #aebbb7;
  --color-text-dark: #07110f;
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.11);
  --gradient-primary: linear-gradient(135deg, #72edb8 0%, #37c993 100%);
  --gradient-accent: linear-gradient(135deg, #ffbd7d 0%, #ed925f 100%);
  --shadow-glow-primary: 0 8px 28px rgba(55, 201, 147, 0.2);
  --shadow-glow-accent: 0 8px 28px rgba(237, 146, 95, 0.18);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-surface: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 36px rgba(0, 0, 0, 0.2);
  --shadow-surface-hover: 0 0 0 1px rgba(255, 255, 255, 0.13), 0 16px 44px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--space-4xl) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), background-color var(--transition-base),
    color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.96);
}

.btn:focus-visible,
.nav-link:focus-visible,
.lang-toggle button:focus-visible,
.mobile-menu-btn:focus-visible,
.faq-question:focus-visible,
.contact-option:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(19, 122, 82, 0.27);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--color-text);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-dark);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-glow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--color-accent-dim), 0 0 60px var(--color-accent-dim);
}

/* Cards */
.card {
  background: var(--glass-bg);
  border: 0;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-surface);
  transition: transform var(--transition-base), background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-surface-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-dim);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.card-icon.accent {
  background: var(--color-accent-dim);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  color: var(--color-on-dark);
  background: rgba(11, 32, 25, 0.94);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 30px rgba(6, 19, 15, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text span {
  color: var(--color-primary);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-on-dark-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-on-dark);
}

.nav-link.active {
  color: var(--color-primary-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--color-on-dark-muted);
}

.lang-toggle button {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--color-on-dark-muted);
  min-width: 36px;
  min-height: 36px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.lang-toggle button.active {
  background: var(--color-primary-light);
  color: var(--color-text-dark);
}

.lang-toggle button:hover:not(.active) {
  color: var(--color-on-dark);
}

.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-on-dark-muted);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform var(--transition-fast), background-color var(--transition-fast),
    color var(--transition-fast), box-shadow var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--color-on-dark);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-icon {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 220ms cubic-bezier(0.2, 0, 0, 1),
    transform 220ms cubic-bezier(0.2, 0, 0, 1), filter 220ms cubic-bezier(0.2, 0, 0, 1);
}

.theme-icon-moon {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.theme-icon-sun {
  opacity: 0;
  transform: scale(0.25);
  filter: blur(4px);
}

[data-theme='dark'] .theme-icon-moon {
  opacity: 0;
  transform: scale(0.25);
  filter: blur(4px);
}

[data-theme='dark'] .theme-icon-sun {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.theme-toggle-mobile {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-on-dark);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  display: none;
}

.header .btn-primary {
  background: var(--color-primary-light);
  color: var(--color-text-dark);
  box-shadow: 0 8px 24px rgba(114, 226, 177, 0.16);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--color-on-dark);
  background: var(--color-brand-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.active ~ .contact-hub {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--color-on-dark-muted);
}

.mobile-menu .nav-link:hover {
  color: var(--color-on-dark);
}

.header .btn:focus-visible,
.header .nav-link:focus-visible,
.header .lang-toggle button:focus-visible,
.header .theme-toggle:focus-visible,
.header .mobile-menu-btn:focus-visible,
.mobile-menu .nav-link:focus-visible,
.mobile-menu .theme-toggle:focus-visible,
.footer .btn:focus-visible,
.footer .footer-link:focus-visible,
.footer .footer-phone:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 4px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(60px + var(--space-3xl));
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(46, 170, 116, 0.13) 0%, transparent 62%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(205, 119, 64, 0.09) 0%, transparent 62%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  border: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(24, 52, 41, 0.06);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.hero-description {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-size: 1.0625rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.hero-cta-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 460px;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

.hero-reassurance li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-reassurance li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
}

.hero-cta .btn {
  white-space: normal;
  text-align: center;
}

.hero-visual {
  margin-top: var(--space-3xl);
  position: relative;
  width: 100%;
  max-width: 620px;
  padding-bottom: 4.75rem;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 0.25rem);
  background: var(--color-bg-card-solid);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 28px 70px rgba(24, 52, 41, 0.18);
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 10, 9, 0.46) 100%);
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-disclosure {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 1;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(4, 10, 9, 0.76);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.6875rem;
  font-weight: 600;
}

.hero-flow-card {
  position: absolute;
  z-index: 2;
  right: var(--space-lg);
  bottom: 0;
  width: min(88%, 430px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(248, 252, 250, 0.97);
  color: var(--color-text-dark);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 18px 45px rgba(24, 52, 41, 0.18);
}

.flow-card-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: #49615a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-card-label > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fb87f;
  box-shadow: 0 0 0 5px rgba(47, 184, 127, 0.13);
}

.flow-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(7, 17, 15, 0.09);
  font-size: 0.8125rem;
}

.flow-card-row + .flow-card-row {
  margin-top: 0.7rem;
}

.flow-card-row > span {
  color: #61736d;
}

.flow-card-row strong {
  color: #173f32;
  font-size: 0.8125rem;
  text-align: right;
}

/* Trust commitments */
.proof-bar {
  padding: var(--space-xl) 0;
  background: #ffffff;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 10px 24px rgba(24, 52, 41, 0.05);
}

.proof-icon {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-dim);
  color: var(--color-primary);
  font-weight: 700;
}

.proof-item h2 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.proof-item p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* Agitation Section */
.agitation {
  background: var(--color-bg-darker);
  text-align: center;
}

.agitation-header {
  margin-bottom: var(--space-3xl);
}

.agitation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.agitation-card {
  text-align: center;
  padding: var(--space-xl);
}

.agitation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agitation-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Question mark style from mockup */
.agitation-question-marks {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: none;
  letter-spacing: 0.1em;
}

.agitation-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.agitation-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* How It Works Section */
.how-it-works {
  text-align: center;
  background: #ffffff;
}

.how-it-works-header {
  margin-bottom: var(--space-3xl);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

.step {
  position: relative;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 0;
  box-shadow: var(--shadow-surface);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
}

.step-icon-wrapper img {
  width: 48px;
  height: 48px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
}

.step-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.step-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Features Section */
.features {
  background: linear-gradient(180deg, #f7faf7 0%, #f0f6f2 100%);
  overflow: visible;
  position: relative;
}

/* Green glow - positioned towards right side of section */
.features::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(19, 122, 82, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Pink glow - positioned bottom-left of phone area */
.features::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 76, 26, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-dim);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.feature-icon img {
  width: 30px;
  height: 30px;
}

.feature-icon.accent {
  background: var(--color-accent-dim);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.feature-badge {
  font-size: 1rem;
}

.feature-text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.features-layout {
  display: block;
  overflow: visible;
}

.features-side-image {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: var(--space-2xl);
}

.features-side-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 24px 60px rgba(24, 52, 41, 0.16);
}

.workflow-caption {
  position: relative;
  z-index: 2;
  width: calc(100% - 2rem);
  margin: -4.5rem auto 0;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 20px 45px rgba(24, 52, 41, 0.15);
}

.workflow-caption-label {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.workflow-caption h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.workflow-caption > p:not(.workflow-caption-label) {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.workflow-caption > span {
  display: block;
  margin-top: var(--space-md);
  color: #6b7b74;
  font-size: 0.6875rem;
}

.features-image {
  margin-top: var(--space-3xl);
  text-align: center;
}

.features-image img {
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* Industries Section */
.industries {
  background: var(--color-bg-darker);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.industries-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.industries-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.industry-card {
  min-width: 0;
  background: var(--glass-bg);
  border: 0;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-surface);
  transition: transform var(--transition-base), background-color var(--transition-base),
    box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.industry-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-surface-hover);
}

.industry-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.industry-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.industry-card span {
  font-weight: 500;
  color: var(--color-text);
  overflow-wrap: normal;
}

/* FAQ Section */
.faq {
  background: var(--color-bg-darker);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.faq-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.faq-subtitle {
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--glass-bg);
  border: 0;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  box-shadow: var(--shadow-surface);
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: 0 0 0 1px rgba(19, 122, 82, 0.42), 0 16px 34px rgba(24, 52, 41, 0.1);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  cursor: pointer;
  min-height: 56px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Responsive - Industries and FAQ */
@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Human control */
.control-section {
  color: var(--color-on-dark);
  background: var(--color-brand-dark);
}

.control-section .section-label {
  color: var(--color-primary-light);
}

.control-header {
  max-width: 760px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.control-header > p:last-child {
  margin-top: var(--space-md);
  color: var(--color-on-dark-muted);
  font-size: 1.0625rem;
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}

.control-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 44px rgba(0, 0, 0, 0.16);
}

.control-card-positive {
  background: linear-gradient(145deg, rgba(114, 226, 177, 0.12), rgba(255, 255, 255, 0.05));
}

.control-card-heading {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.control-card-heading > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(114, 226, 177, 0.13);
  color: var(--color-primary-light);
}

.control-card-heading h3 {
  font-size: 1.25rem;
}

.control-card ul {
  display: grid;
  gap: var(--space-md);
}

.control-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-on-dark-muted);
}

.control-card li::before {
  content: '';
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-light);
  box-shadow: 0 0 12px rgba(114, 226, 177, 0.16);
}

.control-note {
  max-width: 880px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--color-on-dark-muted);
}

/* CTA Section */
.cta-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-dark);
}

.cta-box {
  background: linear-gradient(135deg, #d9f3e5 0%, #b8e7d0 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(24, 52, 41, 0.12);
}

.cta-title {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.cta-eyebrow {
  margin-bottom: var(--space-md);
  color: rgba(10, 10, 15, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.cta-text {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  color: rgba(10, 10, 15, 0.78);
  font-size: 1.0625rem;
}

.cta-deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 860px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}

.cta-deliverable {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: 64px;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(7, 17, 15, 0.09);
  box-shadow: 0 0 0 1px rgba(7, 17, 15, 0.09);
}

.cta-deliverable > span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 17, 15, 0.9);
  color: #72edb8;
  font-size: 0.6875rem;
  font-weight: 700;
}

.cta-deliverable p {
  color: rgba(7, 17, 15, 0.82);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

.cta-btn {
  background: var(--color-brand-dark);
  color: var(--color-on-dark);
  padding: var(--space-md) var(--space-2xl);
}

.cta-btn:hover {
  background: var(--color-brand-darker);
  transform: translateY(-2px);
}

.cta-note {
  margin-top: var(--space-md);
  color: rgba(10, 10, 15, 0.66);
  font-size: 0.875rem;
}

/* About Section */
.about {
  background: #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.about-header {
  margin-bottom: var(--space-xl);
}

.about-text {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
}

.about-highlight {
  margin-top: var(--space-xl);
}

.about-highlight-title {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.about-highlight-text {
  color: var(--color-text-muted);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.about-badges span {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Footer */
.footer {
  color: var(--color-on-dark);
  background: var(--color-brand-darker);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-tagline {
  color: var(--color-on-dark-muted);
  font-size: 0.9375rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.footer-phone {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--color-on-dark-muted);
  font-size: 0.875rem;
  text-decoration: underline;
  text-decoration-color: rgba(174, 187, 183, 0.35);
  text-underline-offset: 0.2em;
}

.footer-phone:hover {
  color: var(--color-on-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--color-on-dark-muted);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  color: var(--color-on-dark-muted);
  font-size: 0.875rem;
}

.footer-disclaimer {
  color: var(--color-on-dark-muted);
  font-size: 0.8125rem;
}

.footer .btn-outline {
  color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}

.footer .btn-outline:hover {
  color: var(--color-text-dark);
  background: var(--color-primary-light);
}

.agitation-icon img,
.feature-icon img,
.step-icon-wrapper img,
.industry-icon img {
  filter: saturate(0.76) brightness(0.72);
}

/* Contact Hub - Floating buttons */
.contact-hub {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 999;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  min-width: 44px;
  min-height: 44px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.contact-option span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.3s ease, padding 0.3s ease;
}

.contact-option:hover span {
  max-width: 100px;
  padding-left: var(--space-xs);
}

.contact-option svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-option {
  background: var(--whatsapp-green);
  color: white;
}

.whatsapp-option:hover {
  background: #06673b;
  transform: scale(1.05);
}

.whatsapp-option svg {
  fill: white;
}

.animate-on-scroll {
  opacity: 1;
  transform: none;
}

.js .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }

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

  .hero .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3xl);
  }

  .hero-content {
    text-align: left;
    flex: 0 1 47%;
    max-width: 540px;
  }

  .hero-cta {
    align-items: flex-start;
  }

  .hero-reassurance {
    justify-content: flex-start;
  }

  .hero-visual {
    margin-top: 0;
    flex: 0 1 53%;
  }

  .agitation-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }

  /* Timeline connector for steps - positioned at step number level */
  .steps::before {
    content: '';
    position: absolute;
    top: 128px;
    /* icon height (80px) + margin (16px) + half of number (24px) + margin (8px) */
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 3px;
    background: linear-gradient(90deg, rgba(19, 122, 82, 0.28), rgba(19, 122, 82, 0.62));
    z-index: 1;
    border-radius: 2px;
  }

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cta-deliverables {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-3xl);
    align-items: start;
  }

  .about-header {
    margin-bottom: 0;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  :root {
    --container-padding: var(--space-2xl);
  }

  .hero {
    min-height: 100vh;
  }

  .nav {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

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

  .hero-content {
    max-width: none;
  }

  .hero-photo-frame {
    aspect-ratio: 1.16 / 1;
  }

  .hero-photo-frame img {
    object-position: 58% center;
  }

  .agitation-card {
    padding: var(--space-2xl);
  }

  .features-grid {
    gap: var(--space-xl);
  }

  .cta-box {
    padding: var(--space-4xl) var(--space-3xl);
  }

  /* Features with side image layout */
  .features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }

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

  .features-side-image {
    display: block;
    margin-top: 0;
  }

  .features-side-image img {
    max-width: 100%;
    border-radius: var(--radius-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: var(--space-md);
    --space-4xl: 4.5rem;
  }

  .hero {
    padding-top: calc(64px + var(--space-2xl));
    background:
      radial-gradient(circle at 100% 12%, rgba(19, 122, 82, 0.1), transparent 34%),
      radial-gradient(circle at 0% 62%, rgba(168, 76, 26, 0.06), transparent 30%);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-visual {
    padding-bottom: 5.25rem;
  }

  .hero-photo-frame {
    aspect-ratio: 1 / 1;
  }

  .hero-photo-frame img {
    object-position: 61% center;
  }

  .hero-flow-card {
    right: var(--space-sm);
    width: calc(100% - var(--space-md));
    padding: var(--space-md);
  }

  .flow-card-row {
    gap: var(--space-sm);
    font-size: 0.75rem;
  }

  .flow-card-row strong {
    font-size: 0.75rem;
  }

  .workflow-caption {
    width: calc(100% - var(--space-md));
    padding: var(--space-lg);
  }

  .hero-cta,
  .hero-cta .btn,
  .cta-btn {
    width: 100%;
  }

  .header-actions {
    gap: var(--space-sm);
  }

  .theme-toggle-header {
    display: none;
  }

  .theme-toggle-mobile {
    display: grid;
  }

  .contact-hub {
    right: var(--space-md);
    left: auto;
    bottom: var(--space-md);
  }

  .contact-option span {
    max-width: 100px;
    padding-left: var(--space-xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Responsive - Large Desktop */
@media (min-width: 1440px) {
  html {
    font-size: 18px;
  }

  :root {
    --container-max: 1320px;
  }
}

/* Optional dark theme */
[data-theme='dark'] .btn-primary,
[data-theme='dark'] .step-number {
  color: var(--color-text-dark);
}

[data-theme='dark'] .hero {
  background: var(--color-bg-dark);
}

[data-theme='dark'] .hero-badge {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.16);
}

[data-theme='dark'] .hero-photo-frame {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 28px 70px rgba(0, 0, 0, 0.42);
}

[data-theme='dark'] .proof-bar,
[data-theme='dark'] .agitation,
[data-theme='dark'] .industries,
[data-theme='dark'] .faq,
[data-theme='dark'] .about {
  background: var(--color-bg-darker);
}

[data-theme='dark'] .proof-item {
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

[data-theme='dark'] .how-it-works {
  background: var(--color-bg-dark);
}

[data-theme='dark'] .features {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
}

[data-theme='dark'] .features::before {
  background: radial-gradient(circle, rgba(101, 232, 173, 0.2) 0%, transparent 60%);
}

[data-theme='dark'] .features::after {
  background: radial-gradient(circle, rgba(255, 181, 111, 0.14) 0%, transparent 60%);
}

[data-theme='dark'] .feature-icon {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

[data-theme='dark'] .features-side-image img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.36);
}

[data-theme='dark'] .workflow-caption {
  background: rgba(11, 25, 21, 0.97);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 45px rgba(0, 0, 0, 0.38);
}

[data-theme='dark'] .workflow-caption > span {
  color: #82918c;
}

[data-theme='dark'] .faq-item:hover {
  box-shadow: 0 0 0 1px rgba(101, 232, 173, 0.5), 0 16px 34px rgba(0, 0, 0, 0.2);
}

[data-theme='dark'] .about-badges span {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .agitation-icon img,
[data-theme='dark'] .feature-icon img,
[data-theme='dark'] .step-icon-wrapper img,
[data-theme='dark'] .industry-icon img {
  filter: none;
}
