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

:root {
  --bg: #FAFBFC;
  --bg-white: #FFFFFF;
  --bg-green-subtle: #F0F9E8;
  --bg-orange-subtle: #FFF7ED;
  --bg-gray: #F3F4F6;
  --border: rgba(0,0,0,0.06);
  --border-hover: rgba(0,0,0,0.12);
  --text: #1A1A2E;
  --text-dim: #6B7280;
  --text-bright: #0F0F1A;
  --orange: #F5921B;
  --orange-glow: rgba(245,146,27,0.15);
  --orange-soft: rgba(245,146,27,0.08);
  --green: #5FAD2D;
  --green-dark: #4A9122;
  --green-glow: rgba(95,173,45,0.15);
  --green-soft: rgba(95,173,45,0.06);
  --green-vibrant: #8DC63F;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --shadow-green: 0 8px 32px rgba(95,173,45,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--text-bright); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-bright); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; line-height: 1.3; color: var(--text-bright); }
p { color: var(--text-dim); font-size: 1rem; }

.highlight { color: var(--orange); }
.highlight-green { color: var(--green); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green); margin-bottom: 16px;
  background: var(--green-soft); padding: 6px 16px; border-radius: 100px;
}
.section-subtitle { color: var(--text-dim); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 560px; margin-top: 12px; }

/* ── Card ── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  padding: 14px 32px; border-radius: 100px;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn--primary {
  background: var(--green); color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 40px rgba(95,173,45,0.25);
  transform: translateY(-2px);
}
.btn--orange {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 32px var(--orange-glow);
}
.btn--orange:hover {
  background: #e0830f;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn--ghost:hover {
  border-color: var(--green); color: var(--green); background: var(--green-soft);
}
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-soft); color: var(--green);
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(95,173,45,0.12);
}

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Animations ── */
.js-ready .fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Animated Backgrounds ── */
.bg-mesh {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.bg-mesh__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}
.bg-mesh__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(141,198,63,0.2) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation-delay: 0s;
}
.bg-mesh__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,146,27,0.12) 0%, transparent 70%);
  bottom: -10%; left: -5%;
  animation-delay: -7s;
}
.bg-mesh__orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(95,173,45,0.15) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 40px) scale(0.95); }
  75% { transform: translate(30px, 20px) scale(1.03); }
}

/* Grid pattern */
.bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

/* Dot pattern */
.bg-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(95,173,45,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
}

/* Floating particles */
.particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(250,251,252,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(255,255,255,0.9);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { height: 34px; }
.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__link { font-size: 0.9rem; font-weight: 500; color: var(--text-dim); text-decoration: none; transition: var(--transition); }
.nav__link:hover { color: var(--green); }
.nav .btn { padding: 10px 24px; font-size: 0.9rem; }

/* ── Language Switcher ── */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-gray); border-radius: 100px;
  padding: 3px;
}
.lang-switch__btn {
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  text-decoration: none; color: var(--text-dim);
  transition: var(--transition); border: none;
  background: transparent; cursor: pointer;
  font-family: inherit;
}
.lang-switch__btn:hover { color: var(--text); }
.lang-switch__btn.is-active {
  background: var(--bg-white); color: var(--text-bright);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.lang-switch--3 .lang-switch__btn { padding: 5px 10px; }

/* ── Integration Marquee ── */
.integrations-section {
  padding: 50px 0;
  overflow: hidden;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.integrations-section .marquee-label { margin-bottom: 8px; }
.integrations-section .marquee-sublabel {
  text-align: center; font-size: 0.85rem;
  color: var(--text-dim); margin-bottom: 24px;
}
.integrations-track {
  display: flex; width: max-content;
  animation: marqueeScroll 20s linear infinite;
}
.integrations-track:hover { animation-play-state: paused; }
.integrations-set {
  display: flex; align-items: center;
  gap: 80px; padding: 0 40px;
}
.integrations-set img {
  height: 40px; width: auto; object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: var(--transition);
}
.integrations-set img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--bg-green-subtle) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero__content { display: flex; flex-direction: column; gap: 24px; }
.hero__title { max-width: 560px; }
.hero__title .line-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-vibrant) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub { font-size: 1.15rem; color: var(--text-dim); max-width: 480px; line-height: 1.7; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { font-size: 0.85rem; color: var(--text-dim); display: flex; align-items: center; gap: 16px; }
.hero__note span { display: flex; align-items: center; gap: 5px; }
.hero__note .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* Phone mockup */
.phone {
  width: 100%; max-width: 340px; margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--green-vibrant); opacity: 0.08;
  filter: blur(40px);
}
.phone__notch {
  width: 100px; height: 24px; margin: 0 auto 10px;
  background: var(--bg-gray); border-radius: 20px;
}
.phone__header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.phone__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-vibrant) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #fff;
}
.phone__name { font-size: 0.82rem; font-weight: 600; color: var(--text-bright); }
.phone__status { font-size: 0.68rem; color: var(--green); font-weight: 500; }

.chat { display: flex; flex-direction: column; gap: 8px; padding: 0 4px; }
.chat__msg {
  max-width: 82%; padding: 10px 14px;
  font-size: 0.78rem; line-height: 1.45;
  border-radius: 18px;
}
.chat__msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-vibrant) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat__msg--bot {
  align-self: flex-start;
  background: var(--bg-gray); color: var(--text);
  border-bottom-left-radius: 4px;
}

/* ════════════════════════════════════════
   PAIN
════════════════════════════════════════ */
.pain-card {
  display: flex; gap: 16px; align-items: flex-start;
}
.pain-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-orange-subtle); border-radius: var(--radius-sm);
  font-size: 1.2rem;
}
.pain-card h3 { margin-bottom: 4px; font-size: 1rem; }
.pain-card__text { font-size: 0.9rem; color: var(--text-dim); line-height: 1.5; }

/* ════════════════════════════════════════
   SOLUTION
════════════════════════════════════════ */
.solution-card { text-align: center; padding: 40px 28px; }
.solution-card__icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; font-size: 1.5rem;
}
.solution-card__icon--green { background: var(--bg-green-subtle); }
.solution-card__icon--orange { background: var(--bg-orange-subtle); }
.solution-card h3 { margin-bottom: 8px; }
.solution-card p { font-size: 0.9rem; }

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process__timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.process__timeline::before {
  content: '';
  position: absolute; left: 39px; top: 48px; bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-vibrant), var(--orange));
  border-radius: 2px; z-index: 1;
}
.process__step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 16px 0;
}
.process__num {
  flex-shrink: 0; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800;
  color: var(--bg-white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-vibrant) 100%);
  border-radius: 20px;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-green);
}
.process__num--alt {
  background: linear-gradient(135deg, var(--orange) 0%, #FDB94D 100%);
  box-shadow: 0 8px 32px var(--orange-glow);
}
.process__card { flex: 1; }
.process__card h3 { margin-bottom: 4px; }
.process__card p { font-size: 0.9rem; }

/* ════════════════════════════════════════
   RESULTS
════════════════════════════════════════ */
.result-card { text-align: center; padding: 36px 20px; }
.result-card__icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-green-subtle); border-radius: 16px;
  font-size: 1.4rem;
}
.result-card h3 { margin-bottom: 6px; font-size: 0.95rem; }
.result-card p { font-size: 0.85rem; }

/* ════════════════════════════════════════
   DIALOG
════════════════════════════════════════ */
.dialog-section { text-align: center; }
.dialog-phone { max-width: 400px; margin: 40px auto 0; }

/* ════════════════════════════════════════
   CASE STUDY
════════════════════════════════════════ */
.stats-dashboard {
  padding: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.stats-dashboard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-vibrant), var(--orange));
}
.stat { text-align: center; }
.stat__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--text-bright); line-height: 1;
}
.stat__value--green { color: var(--green); }
.stat__value--orange { color: var(--orange); }
.stat__label { font-size: 0.85rem; color: var(--text-dim); margin-top: 8px; }
.stats-divider { height: 1px; background: var(--border); margin: 36px 0; }

.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 16px; }
.bar-label { font-size: 0.85rem; color: var(--text-dim); width: 80px; flex-shrink: 0; text-align: right; font-weight: 500; }
.bar-track {
  flex: 1; height: 36px;
  background: var(--bg-gray); border-radius: 10px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 10px;
  display: flex; align-items: center; padding-left: 14px;
  font-size: 0.8rem; font-weight: 600; color: #fff;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bar-fill--before { background: linear-gradient(90deg, #FF6B6B, #ee5a24); width: 0; }
.bar-fill--after { background: linear-gradient(90deg, var(--green), var(--green-vibrant)); width: 0; }
.bar-fill--before.animate { width: 85%; }
.bar-fill--after.animate { width: 18%; }

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-green-subtle) 50%, var(--bg) 100%);
}
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 40px auto 0; }
.price-card { padding: 40px 32px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.price-card--featured {
  border-color: rgba(95,173,45,0.3);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(95,173,45,0.1);
}
.price-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-vibrant));
}
.price-card__badge {
  position: absolute; top: 20px; right: -32px;
  background: var(--green); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 40px; transform: rotate(45deg);
  letter-spacing: 0.05em;
}
.price-card__tag {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 8px;
}
.price-card__price {
  font-size: 2.8rem; font-weight: 900; color: var(--text-bright); line-height: 1;
}
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.price-card__period { font-size: 0.9rem; color: var(--text-dim); margin-top: 4px; }
.price-card__divider { height: 1px; background: var(--border); margin: 24px 0; }
.price-card__features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text);
}
.price-card__features li::before {
  content: ''; display: block;
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background: var(--bg-green-subtle); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235FAD2D' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 3.515a1 1 0 0 1 0 1.414l-7.07 7.07a1 1 0 0 1-1.415 0L1.515 8.515a1 1 0 1 1 1.414-1.414L6 10.172l6.071-6.071a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.price-card__features li.feat-new {
  font-weight: 600; color: var(--green);
}
.price-card .btn { margin-top: 24px; }

/* ════════════════════════════════════════
   FORM
════════════════════════════════════════ */
.form-section { text-align: center; }
.form-wrapper { max-width: 520px; margin: 40px auto 0; }
.form { display: flex; flex-direction: column; gap: 14px; }
.form__input {
  width: 100%; padding: 16px 20px;
  font-family: inherit; font-size: 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-bright);
  outline: none; transition: var(--transition);
}
.form__input::placeholder { color: #B0B0BE; }
.form__input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  background: var(--bg-white);
}
.form__success { display: none; text-align: center; padding: 40px; }
.form__success.is-active { display: block; }
.form__success h3 { color: var(--green); margin-bottom: 8px; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { overflow: hidden; }
.faq-item__q {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; color: var(--text-bright);
  font-family: inherit; font-size: 1rem; font-weight: 600;
  cursor: pointer; text-align: left;
}
.faq-item__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 300;
  color: var(--green);
  background: var(--bg-green-subtle); border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--green); color: #fff;
}
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-item__a { max-height: 200px; padding: 0 24px 20px; }
.faq-item__a p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* ════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-cta {
  text-align: center; padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-green-subtle) 0%, var(--bg-orange-subtle) 100%);
  position: relative; overflow: hidden;
}
.final-cta h2 { margin-bottom: 12px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__logo { height: 28px; margin-bottom: 12px; opacity: 0.5; }
.footer p { font-size: 0.8rem; color: var(--text-dim); }
.footer__links {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--green); }
.footer__sep { margin: 0 10px; opacity: 0.5; }

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 18px 22px;
  max-width: 920px;
  margin: 0 auto;
  animation: cookieSlideUp 0.4s ease-out;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__text a {
  color: var(--green);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}
@keyframes cookieSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 600px) {
  .cookie-banner { padding: 14px 16px; border-radius: 14px; }
  .cookie-banner__inner { gap: 12px; }
  .cookie-banner__text { font-size: 0.8rem; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ════════════════════════════════════════
   LEGAL PAGES (Privacy / Terms)
════════════════════════════════════════ */
.legal-page {
  padding: 120px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.legal-page .legal-meta {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  text-align: left;
}
.legal-page h3 {
  font-size: 1.05rem;
  margin: 26px 0 10px;
}
.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}
.legal-page th,
.legal-page td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
}
.legal-page th {
  background: var(--bg-gray);
  font-weight: 600;
}
.legal-page a { color: var(--green); }
.legal-back {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
}
.legal-back:hover { color: var(--green); }

/* ── Parallax Glass Element ── */
.parallax-glass {
  position: absolute; pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.parallax-glass img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(141,198,63,0.15));
  mix-blend-mode: multiply;
}
.parallax-glass--hero-main {
  right: -30px; top: -50px;
  width: 180px; height: 180px;
  opacity: 0.85;
  animation: glassFloat 12s ease-in-out infinite;
}
.parallax-glass--hero-sm {
  left: 60%; bottom: -20px;
  width: 80px; height: 80px;
  opacity: 0.5;
  animation: glassFloat 16s ease-in-out infinite reverse;
}
.parallax-glass--hero-sm img { transform: rotate(-20deg); }
.parallax-glass--cta-right {
  right: 40px; top: 20px;
  width: 120px; height: 120px;
  opacity: 0.6;
  animation: glassFloat 14s ease-in-out infinite;
}
.parallax-glass--cta-right img { transform: rotate(15deg); }
.parallax-glass--cta-left {
  left: 30px; bottom: 10px;
  width: 70px; height: 70px;
  opacity: 0.35;
  animation: glassFloat 18s ease-in-out infinite reverse;
}
.parallax-glass--cta-left img { transform: rotate(-35deg); }
.parallax-glass--process {
  right: -20px; top: 50%;
  width: 100px; height: 100px;
  opacity: 0.4;
  animation: glassFloat 20s ease-in-out infinite;
}
.parallax-glass--process img { transform: rotate(30deg); }

@keyframes glassFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(3deg); }
  66% { transform: translateY(8px) rotate(-2deg); }
}

/* ── Logo Marquee ── */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-gray);
}
.marquee-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-set {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
  flex-shrink: 0;
}
.marquee-set img {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}
.marquee-set img:hover {
  filter: grayscale(0%) opacity(1);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Contacts Section ── */
.contacts {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.contacts__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.contacts__col h3 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-dim);
  margin-bottom: 14px;
}
.contacts__col a {
  display: block; text-decoration: none;
  font-size: 1rem; color: var(--text); font-weight: 500;
  padding: 4px 0; transition: var(--transition);
}
.contacts__col a:hover { color: var(--green); }

/* ── Social Links ── */
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg-gray);
  color: var(--text-dim); transition: var(--transition);
  text-decoration: none;
}
.socials a:hover { background: var(--green); color: #fff; }
.socials a svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Green accent line ── */
.green-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-vibrant));
  border-radius: 4px; margin-bottom: 16px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .phone { max-width: 300px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav__link { display: none; }
  .parallax-glass--hero-main { width: 140px; height: 140px; right: -20px; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { padding: 120px 0 60px; }
  .hero__visual { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 420px; }
  .price-card--featured { transform: none; }
  .stats-dashboard { padding: 28px 20px; }
  .bar-label { width: 60px; font-size: 0.75rem; }
  .process__num { width: 60px; height: 60px; font-size: 1.3rem; border-radius: 16px; }
  .process__timeline::before { left: 29px; }
  .process__step { gap: 20px; }
  .dialog-phone { max-width: 100%; }
  .contacts__grid { grid-template-columns: 1fr; gap: 28px; }
  .parallax-glass--hero-main { width: 100px; height: 100px; opacity: 0.5; top: -20px; right: -10px; }
  .parallax-glass--hero-sm, .parallax-glass--cta-left, .parallax-glass--process { display: none; }
  .parallax-glass--cta-right { width: 80px; height: 80px; opacity: 0.4; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .btn--lg { padding: 16px 32px; }
  .card { padding: 24px; }
}