/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button,
input,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #12715b;
  --primary-dark: #0e5a49;
  --primary-light: #e7f1ef;
  --primary-50: #f3f8f7;
  --text: #1a1a2e;
  --text-light: #555;
  --text-muted: #888;
  --bg: #fff;
  --bg-alt: #f8fafb;
  --border: #e5e7eb;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --max-w: 1140px;
  --transition: 0.2s ease;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 48px 0;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.flex {
  display: flex;
  align-items: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.text-center {
  text-align: center;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  color: var(--text-light);
  line-height: 1.7;
}
.lead {
  font-size: 1.125rem;
  color: var(--text-light);
}
.small {
  font-size: 0.875rem;
}
.muted {
  color: var(--text-muted);
}
.text-primary {
  color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(18, 113, 91, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 12px 16px;
}
.btn-ghost:hover {
  background: var(--primary-light);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  padding: 8px 0;
  text-align: center;
}
.topbar a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar .container {
  height: 64px;
}
.logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-right {
  gap: 12px;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 50;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.dropdown-wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dropdown-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 14px 4px;
  letter-spacing: 0.5px;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  z-index: 99;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero .grid-2 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.hero h1 {
  margin-bottom: 16px;
}
.hero p {
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding-right: 20px;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-left: -60px;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.h-shape {
  position: absolute;
}
.hs-1 {
  top: 10%;
  left: 2%;
  animation: heroFloat 6s ease-in-out infinite;
}
.hs-2 {
  top: 5%;
  right: 42%;
  animation: heroFloat 8s ease-in-out infinite 0.5s;
}
.hs-3 {
  bottom: 8%;
  left: 4%;
  animation: heroFloat 7s ease-in-out infinite 1s;
}
.hs-4 {
  top: 40%;
  left: 0%;
  animation: heroFloat 5s ease-in-out infinite 1.5s;
}
.hs-5 {
  bottom: 15%;
  left: 38%;
  animation: heroSpin 25s linear infinite;
}
.hs-6 {
  top: 60%;
  right: 42%;
  animation: heroFloat 9s ease-in-out infinite 2s;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes heroSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Hero Chart */
.hero-chart {
  width: 520px;
  max-width: none;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.06));
}
.hero-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s ease forwards 0.3s;
}
.hero-area {
  opacity: 0;
  animation: fadeArea 0.8s ease forwards 1.8s;
}
.hero-dot {
  opacity: 0;
}
.dot-1 {
  animation: popDot 0.4s ease forwards 0.6s;
}
.dot-2 {
  animation: popDot 0.4s ease forwards 0.9s;
}
.dot-3 {
  animation: popDot 0.4s ease forwards 1.2s;
}
.dot-4 {
  animation: popDot 0.4s ease forwards 1.5s;
}
.dot-5 {
  animation: popDot 0.4s ease forwards 1.8s;
}
.dot-6 {
  animation: popDot 0.5s ease forwards 2.1s;
}
.hero-bar {
  opacity: 0;
}
.bar-1 {
  animation: growBar 0.5s ease forwards 0.2s;
}
.bar-2 {
  animation: growBar 0.5s ease forwards 0.35s;
}
.bar-3 {
  animation: growBar 0.5s ease forwards 0.5s;
}
.bar-4 {
  animation: growBar 0.5s ease forwards 0.65s;
}
.bar-5 {
  animation: growBar 0.5s ease forwards 0.8s;
}
.bar-6 {
  animation: growBar 0.5s ease forwards 0.95s;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeArea {
  to {
    opacity: 1;
  }
}
@keyframes popDot {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes growBar {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* ===== HOW SECTIONS ===== */
.how-section {
  overflow: visible;
}
.how-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.how-row-reverse .how-image {
  order: 2;
}
.how-row-reverse .int-visual {
  order: 2;
}
.how-row-reverse .how-content {
  order: 1;
}
.how-image {
  position: relative;
  overflow: visible;
}
.how-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.how-content {
  padding: 40px 48px;
}
.how-content h2 {
  margin-bottom: 16px;
}
.how-content .lead {
  margin-bottom: 24px;
}

/* How overlay cards */
.how-overlay {
  position: absolute;
  z-index: 2;
}
.how-overlay-bottom {
  bottom: 20px;
  left: 20px;
}
.how-overlay-right {
  bottom: 30px;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.how-svg-card {
  width: 220px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  border-radius: 16px;
}
.svg-card-price {
  width: 220px;
}
.svg-card-growth {
  width: 220px;
}

/* SVG bar animations */
.svg-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  transform-box: fill-box;
}
.how-section.in-view .svg-bar {
  animation: svgGrow 0.6s ease forwards;
}
.how-section.in-view .sb-1 {
  animation-delay: 0.1s;
}
.how-section.in-view .sb-2 {
  animation-delay: 0.2s;
}
.how-section.in-view .sb-3 {
  animation-delay: 0.3s;
}
.how-section.in-view .sb-4 {
  animation-delay: 0.4s;
}
.how-section.in-view .sb-5 {
  animation-delay: 0.5s;
}
.how-section.in-view .sb-6 {
  animation-delay: 0.6s;
}
.how-section.in-view .sb-7 {
  animation-delay: 0.7s;
}
.how-section.in-view .sb-8 {
  animation-delay: 0.8s;
}
@keyframes svgGrow {
  to {
    transform: scaleY(1);
  }
}
.svg-progress,
.svg-progress-sm {
  transition: none;
  width: 0;
}
.how-section.in-view .svg-progress {
  animation: svgWidth 1.5s ease forwards 0.5s;
}
.how-section.in-view .svg-progress-sm {
  animation: svgWidthSm 1.5s ease forwards 0.8s;
}
@keyframes svgWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}
@keyframes svgWidthSm {
  from {
    width: 0;
  }
  to {
    width: 30px;
  }
}
.how-overlay {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.how-section.in-view .how-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* How accordion */
.how-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  margin-bottom: 8px;
}
.how-acc-q {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  text-align: left;
}
.how-acc-q:hover {
  background: var(--primary-50);
}
.how-acc-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: auto;
  line-height: 1;
}
.how-acc-item.active .how-acc-q::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.how-acc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.how-acc-item.active .how-acc-a {
  max-height: 400px;
}
.how-acc-a-inner {
  padding: 0 20px 16px 68px;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* How mini cards */
.how-mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.how-mini-card h4 {
  font-size: 1rem;
  margin: 0;
}
.how-mini-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== INTEGRATION PAGE ===== */
.int-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.int-svg {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.12));
}
.int-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.int-logo {
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}
.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-light);
}
.feature-bullets li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2312715b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.int-num {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.int-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
}
.int-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}
/* Horizontal bar grow */
.svg-hbar {
  transform-origin: left;
  transform: scaleX(0);
  transform-box: fill-box;
}
.how-section.in-view .svg-hbar {
  animation: svgGrowH 0.8s ease forwards;
}
.how-section.in-view .hb-1 {
  animation-delay: 0.2s;
}
.how-section.in-view .hb-2 {
  animation-delay: 0.45s;
}
.how-section.in-view .hb-3 {
  animation-delay: 0.7s;
}
.how-section.in-view .hb-4 {
  animation-delay: 0.9s;
}
@keyframes svgGrowH {
  to {
    transform: scaleX(1);
  }
}
/* Pulsing status dot */
.int-pulse {
  animation: intPulse 2s ease-in-out infinite;
}
@keyframes intPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
/* Line draw */
.svg-line-draw {
  stroke-dashoffset: 500;
  stroke-dasharray: 500;
}
.how-section.in-view .svg-line-draw {
  animation: drawSvgLine 1.4s ease forwards 0.7s;
}
@keyframes drawSvgLine {
  to {
    stroke-dashoffset: 0;
  }
}
/* Fade in */
.svg-fade-in {
  opacity: 0;
}
.how-section.in-view .svg-fade-in {
  animation: svgFadeIn 0.5s ease forwards;
}
.how-section.in-view .fi-1 {
  animation-delay: 0.5s;
}
.how-section.in-view .fi-2 {
  animation-delay: 0.9s;
}
.how-section.in-view .fi-3 {
  animation-delay: 1.3s;
}
.how-section.in-view .fi-4 {
  animation-delay: 1.6s;
}
@keyframes svgFadeIn {
  to {
    opacity: 1;
  }
}
/* Ring progress */
.svg-ring {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
}
.how-section.in-view .svg-ring {
  animation: drawRing 1.6s ease forwards 0.5s;
}
@keyframes drawRing {
  to {
    stroke-dashoffset: 6;
  }
}
/* Count-up number */
.svg-count {
  opacity: 0;
}
.how-section.in-view .svg-count {
  animation: svgFadeIn 0.6s ease forwards 1s;
}
/* Platform logo card (pazaryeri logo-only) */
.int-platform-card {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
}
.int-logo-lg {
  width: 100%; /* max-width:360px; */ /* max-height:200px; */
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
}

/* ===== FEATURES ===== */
.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: #fff;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  margin-bottom: 8px;
}

/* ===== BRANDS / LOGOS ===== */
.brands {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-track {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(1);
}
.brands-track:hover {
  opacity: 0.8;
  filter: grayscale(0);
}

/* ===== PRICING ===== */
.pricing-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow:
    0 0 0 2px var(--primary),
    var(--shadow-lg);
}
.pricing-card.popular .price {
  color: var(--primary);
}
.pricing-card.popular .currency {
  color: var(--primary);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.pricing-price .price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
}
.pricing-price .currency {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  align-self: flex-start;
  padding-top: 4px;
}
.pricing-price .period {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}
.pricing-features {
  margin: 24px 0;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2312715b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}
.pricing-features li.disabled::before {
  background: #f0f0f0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18'/%3E%3Cpath d='M6 6l12 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  margin-top: 32px;
  font-size: 0.875rem;
}
.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.faq-item + .faq-item {
  margin-top: 8px;
}
.faq-q {
  width: 100%;
  padding: 16px 20px;
  background: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.faq-q:hover {
  background: var(--primary-50);
}
.faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.active .faq-q::after {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 20px 16px;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.cta .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.cta .btn:hover {
  background: var(--primary-50);
  transform: translateY(-1px);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.9375rem;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 113, 91, 0.1);
}
.form-input::placeholder {
  color: var(--text-muted);
}
textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
.form-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 4px;
}

/* Auth pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  padding: 20px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.auth-card.wide {
  max-width: 560px;
}
.auth-card .logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.auth-card h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}
.auth-card .lead {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.9375rem;
}
.auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.auth-links a {
  color: var(--primary);
  font-weight: 600;
}
.auth-links a:hover {
  text-decoration: underline;
}

/* Auth Split Layout */
.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.auth-visual {
  background: linear-gradient(160deg, #0e5a49 0%, #12715b 40%, #1a9e7a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  overflow: hidden;
}
.auth-visual-logo {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
}
.auth-visual-logo img {
  filter: brightness(0) invert(1);
  height: 28px;
  width: auto;
}
.auth-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.auth-shape {
  position: absolute;
}
.shape-1 {
  top: 12%;
  left: 8%;
  animation: authFloat 6s ease-in-out infinite;
}
.shape-2 {
  top: 8%;
  right: 15%;
  animation: authFloat 8s ease-in-out infinite 0.5s;
}
.shape-3 {
  bottom: 20%;
  left: 12%;
  animation: authFloat 7s ease-in-out infinite 1s;
}
.shape-4 {
  top: 40%;
  right: 8%;
  animation: authFloat 5s ease-in-out infinite 1.5s;
}
.shape-5 {
  bottom: 10%;
  right: 10%;
  animation: authSpin 20s linear infinite;
}
.shape-6 {
  top: 65%;
  left: 35%;
  animation: authFloat 9s ease-in-out infinite 2s;
}
@keyframes authFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}
@keyframes authSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.auth-visual-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  animation: authFloat 6s ease-in-out infinite 0.3s;
}
.auth-visual-quote {
  position: relative;
  z-index: 1;
  max-width: 380px;
  text-align: left;
}
.auth-visual-quote p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.auth-visual-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.auth-visual-author strong {
  color: #fff;
  font-size: 0.9rem;
}
.auth-visual-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: var(--bg-alt);
  overflow-y: auto;
}
.auth-form-inner {
  width: 100%;
  max-width: 480px;
}
.auth-form-inner h1 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}
.auth-form-inner .form-input {
  background: #fff;
  border: 1px solid var(--border);
  height: 48px;
}
.auth-form-inner textarea.form-input {
  height: auto;
  min-height: 80px;
}
.auth-form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.auth-form-link {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.auth-form-link a {
  color: var(--primary);
  font-weight: 600;
}
.auth-form-link a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  display: block;
  padding: 4px 0;
  transition: var(--transition);
}
.footer a:hover {
  color: #fff;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ===== PAGES ===== */
.page-header {
  padding: 60px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  margin-bottom: 8px;
}

/* Contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== ALERT ===== */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== UTILITIES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.pt-0 {
  padding-top: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .dropdown-wide {
    min-width: 360px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .nav-links,
  .nav-right .btn,
  .nav-right .btn-ghost {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero {
    padding: 48px 0 40px;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .flex {
    justify-content: center;
  }
  .hero-visual {
    margin-left: 0;
    justify-content: center;
  }
  .hero-chart {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .h-shape {
    transform: scale(0.6);
  }
  .how-row,
  .how-row-reverse {
    grid-template-columns: 1fr;
  }
  .how-row-reverse .how-image {
    order: 1;
  }
  .how-row-reverse .int-visual {
    order: 1;
  }
  .how-row-reverse .how-content {
    order: 2;
  }
  .how-content {
    padding: 32px 0;
  }
  .how-overlay-bottom {
    bottom: 10px;
    left: 10px;
  }
  .how-overlay-right {
    bottom: 10px;
    right: 10px;
  }
  .how-svg-card,
  .svg-card-price,
  .svg-card-growth {
    width: 180px;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta {
    padding: 40px 24px;
  }
  .auth-card {
    padding: 28px 20px;
  }
  .dropdown-wide {
    grid-template-columns: 1fr;
  }
  .page-header {
    padding: 40px 0 28px;
  }
  .auth-split {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    display: none;
  }
  .auth-form-panel {
    padding: 32px 20px;
    min-height: 100vh;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .footer .grid-4 {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 24px;
  }
}
