/* ─────────── RESET & BASE ─────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.938rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-600);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

.btn--amber {
  background: var(--amber-500);
  color: var(--white);
}
.btn--amber:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn--outline {
  border-color: var(--gray-300);
  color: var(--gray-700);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--green-600);
  color: var(--green-600);
}

.btn--ghost {
  color: var(--gray-700);
  background: transparent;
  border: 2px solid var(--gray-200);
}
.btn--ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn--white {
  background: var(--white);
  color: var(--green-700);
}
.btn--white:hover {
  background: var(--green-50);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.btn--outline-white {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─────────── NAVBAR ─────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.navbar--scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--gray-900);
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Logo is white on transparent — darken it for the light navbar */
.navbar .navbar__logo-img {
  filter: brightness(0);
}

/* Keep it white in the dark footer */
.footer .navbar__logo-img {
  filter: none;
}

.navbar__links {
  display: flex;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}

.navbar__links a:hover {
  color: var(--green-600);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width 0.2s;
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  gap: 12px;
}

.navbar__actions .btn {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__mobile {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-100);
}

.navbar__mobile.active {
  display: block;
}

.navbar__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navbar__mobile a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-700);
}

.navbar__mobile a:hover {
  background: var(--gray-50);
  color: var(--green-600);
}

.navbar__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* ─────────── HERO ─────────── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 50%, #fffbeb 100%);
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(22, 163, 74, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero__title--accent {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.hero__stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-600);
}

.hero__stat-label {
  font-size: 0.813rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Hero visual (right side) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.hero__image {
  width: 140%;
  max-width: none;
  height: auto;
  display: block;
  animation: float 6s ease-in-out infinite;
}

.hero__globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__globe-center {
  width: 80px;
  height: 80px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__globe-ring {
  position: absolute;
  border: 1.5px solid var(--green-200);
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.hero__globe-ring--1 {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  animation: pulse-ring 3s ease-in-out infinite;
}

.hero__globe-ring--2 {
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  animation: pulse-ring 3s ease-in-out 1s infinite;
  border-color: var(--green-100);
}

.hero__globe-ring--3 {
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  animation: pulse-ring 3s ease-in-out 2s infinite;
  border-color: rgba(22,163,74,0.05);
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--gray-100);
}

.hero__card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-900);
}

.hero__card small {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero__card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__card--1 {
  top: 30px;
  right: 40px;
  animation-delay: 0s;
}

.hero__card--2 {
  top: 180px;
  left: 0;
  animation-delay: 2s;
}

.hero__card--3 {
  bottom: 40px;
  right: 60px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─────────── TRUST BAR ─────────── */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__label {
  text-align: center;
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.trust-bar__logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
}

/* ─────────── SECTIONS ─────────── */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--gray-900);
}

.section--soft {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.813rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__tag--light {
  background: rgba(255,255,255,0.1);
  color: var(--green-400);
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section__title--light {
  color: var(--white);
}

.section__desc {
  font-size: 1.063rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.section__desc--light {
  color: var(--gray-400);
}

/* ─────────── ABOUT ─────────── */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s;
}

.about__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.about__card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about__card-icon--green  { background: var(--green-50); color: var(--green-600); }
.about__card-icon--amber  { background: #fffbeb; color: var(--amber-500); }
.about__card-icon--blue   { background: #eff6ff; color: #3b82f6; }

.about__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.about__card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─────────── FEATURES ─────────── */
.features__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.features__col {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.features__col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  font-size: 1.125rem;
}

.features__col-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.features__col-header--green {
  background: var(--green-50);
  color: var(--green-700);
  border-bottom: 2px solid var(--green-200);
}

.features__col-header--amber {
  background: #fffbeb;
  color: var(--amber-600);
  border-bottom: 2px solid #fde68a;
}

.features__list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.features__list svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Value-Added Services */
.vas__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 24px;
}

.vas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vas__item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.vas__item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.vas__item svg {
  flex-shrink: 0;
  color: var(--green-600);
  margin-top: 2px;
}

.vas__item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.vas__item p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ─────────── CONTACT EXTRAS ─────────── */
.contact__company {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.contact__gstin {
  font-weight: 500;
  color: var(--gray-500);
}

/* ─────────── FOOTER EXTRAS ─────────── */
.footer__address {
  font-size: 0.813rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 12px;
}

.footer__contact-info {
  font-size: 0.813rem;
  color: var(--gray-400);
  margin-top: 8px;
}

/* ─────────── HOW IT WORKS ─────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.step__icon {
  width: 64px;
  height: 64px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-600);
  transition: all 0.3s;
}

.step:hover .step__icon {
  background: var(--green-600);
  color: var(--white);
  transform: scale(1.1);
}

.step__title {
  font-size: 1.063rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.step__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-200), var(--green-100));
  margin-top: 48px;
  flex-shrink: 0;
}

/* ─────────── SERVICES GRID ─────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon--green  { background: rgba(22, 163, 74, 0.15); color: var(--green-400); }
.service-card__icon--blue   { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.service-card__icon--amber  { background: rgba(245, 158, 11, 0.15); color: var(--amber-400); }
.service-card__icon--purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }
.service-card__icon--rose   { background: rgba(244, 63, 94, 0.15); color: #fb7185; }
.service-card__icon--teal   { background: rgba(20, 184, 166, 0.15); color: #2dd4bf; }

.service-card h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─────────── MARKETPLACE CARDS ─────────── */
.marketplace__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.market-card {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.market-card:hover {
  transform: translateY(-4px);
}

.market-card--global {
  background: linear-gradient(135deg, var(--green-50), #ecfdf5);
  border: 2px solid var(--green-200);
}

.market-card--india {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 2px solid #fde68a;
}

.market-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.market-card__badge--amber {
  background: var(--amber-500);
}

.market-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.market-card__desc {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.market-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.market-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* ─────────── WHY SECTION ─────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__text {
  font-size: 1.063rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why__feature {
  display: flex;
  gap: 16px;
}

.why__feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__feature strong {
  display: block;
  font-size: 0.938rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.why__feature p {
  font-size: 0.813rem;
  color: var(--gray-500);
}

.why__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why__visual-card {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
}

.why__visual-stat {
  margin-bottom: 8px;
}

.why__visual-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
}

.why__visual-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.why__visual-card > p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 8px;
}

.why__visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why__visual-item {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.why__visual-item span {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
}

.why__visual-item small {
  font-size: 0.813rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ─────────── TESTIMONIALS ─────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-900);
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ─────────── CTA ─────────── */
.cta__inner {
  background: linear-gradient(135deg, var(--green-700), var(--green-600), #059669);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta__desc {
  font-size: 1.063rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  margin-bottom: 16px;
}

.cta__note {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

/* ─────────── FAQ ─────────── */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq__item[open] {
  border-color: var(--green-200);
  box-shadow: 0 0 0 3px var(--green-50);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gray-400);
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--green-600);
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─────────── CONTACT ─────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  font-size: 1.063rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  color: var(--gray-700);
  font-weight: 500;
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.2s;
}

.contact__social-link:hover {
  border-color: var(--green-600);
  color: var(--green-600);
  background: var(--green-50);
}

.contact__form {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-50);
}

.form__group textarea {
  resize: vertical;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--gray-900);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand .navbar__logo {
  margin-bottom: 16px;
}

.footer__brand .navbar__logo span {
  color: var(--white);
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.813rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__col li {
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--green-400);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.813rem;
  color: var(--gray-500);
}

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

.footer__apps span {
  font-size: 0.813rem;
  color: var(--gray-500);
}

.footer__app-badge {
  display: inline-block;
  transition: all 0.2s;
}

.footer__app-badge img {
  height: 40px;
  width: auto;
}

.footer__app-badge:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* ─────────── LEGAL PAGES ─────────── */
.legal-hero {
  padding: 130px 0 48px;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 60%, #fffbeb 100%);
  border-bottom: 1px solid var(--gray-100);
}

.legal-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.813rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.legal-hero__breadcrumb a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.legal-hero__breadcrumb a:hover {
  color: var(--green-600);
}

.legal-hero__breadcrumb span {
  color: var(--gray-700);
  font-weight: 500;
}

.legal-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.legal-hero__meta {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.legal-content {
  padding: 60px 0 100px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sidebar TOC */
.legal-toc {
  position: sticky;
  top: 96px;
}

.legal-toc h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-toc a {
  display: block;
  padding: 6px 12px;
  font-size: 0.813rem;
  color: var(--gray-500);
  border-radius: 6px;
  transition: all 0.2s;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

/* Article body */
.legal-body {
  max-width: 780px;
}

.legal-intro {
  font-size: 1.063rem;
  color: var(--gray-600);
  line-height: 1.8;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 40px;
}

.legal-body section {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
}

.legal-body h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 24px 0 12px;
}

.legal-body p {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body ul {
  margin: 12px 0 16px;
  padding-left: 0;
}

.legal-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.legal-body li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--green-400);
  border-radius: 50%;
}

.legal-body a {
  color: var(--green-600);
  font-weight: 500;
  transition: color 0.2s;
}

.legal-body a:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.legal-callout {
  background: var(--green-50);
  border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-callout strong {
  display: block;
  color: var(--green-800);
  margin-bottom: 4px;
}

.legal-contact-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 16px 0;
}

.legal-contact-box p {
  margin-bottom: 4px;
}

.legal-table {
  overflow-x: auto;
  margin: 16px 0;
}

.legal-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.legal-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-weight: 600;
  color: var(--gray-800);
}

.legal-table td {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  line-height: 1.5;
}

.legal-table tr:hover td {
  background: var(--gray-50);
}

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

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1024px) {
  .hero__title { font-size: 2.75rem; }
  .section__title { font-size: 2rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { gap: 48px; }
  .vas__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__actions {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image {
    width: 100%;
    max-width: 655px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__stats {
    gap: 24px;
  }

  .steps {
    flex-direction: column;
    gap: 24px;
  }

  .step__connector {
    width: 2px;
    height: 30px;
    margin: 0 auto;
  }

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

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

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

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

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

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

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .cta__inner {
    padding: 48px 24px;
  }

  .cta__title {
    font-size: 1.75rem;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section__header {
    margin-bottom: 40px;
  }

  .legal-hero__title {
    font-size: 2rem;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-toc {
    position: relative;
    top: 0;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 24px;
    margin-bottom: 32px;
  }

  .legal-toc ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .legal-toc a {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--gray-50);
    border-radius: 100px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.875rem; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .market-card { padding: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
}
