:root {
  --bg: #0A1A12;
  --surface: #0F2318;
  --surface-2: #152E1F;
  --primary: #4ADE80;
  --primary-hover: #86EFAC;
  --secondary: #A3E635;
  --accent: #34D399;
  --text: #F0FDF4;
  --text-secondary: #A7C4B5;
  --text-muted: #6B8F7B;
  --border: rgba(74, 222, 128, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(10, 26, 18, 0.5);
  --shadow-green: 0 4px 32px rgba(74, 222, 128, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 1rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 1rem;
}

.btn-secondary:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(74, 222, 128, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  backdrop-filter: blur(20px);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}

.cookie-banner__accept:hover {
  background: var(--primary-hover);
}

.cookie-banner__decline {
  padding: 10px 24px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}

.cookie-banner__decline:hover {
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 26, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
}

.navbar__logo svg {
  width: 36px;
  height: 36px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--bg) !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all var(--transition);
}

.navbar__cta::after {
  display: none !important;
}

.navbar__cta:hover {
  background: var(--primary-hover) !important;
  color: var(--bg) !important;
  transform: translateY(-1px);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero__tag svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-green);
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: min(540px, 68vh);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--border);
  border-radius: 50%;
  opacity: 0.5;
}

.hero__image-decoration--2 {
  top: auto;
  right: auto;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
}

/* ===== STATS BAR ===== */
.stats {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 16px;
}

.stats__number {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stats__label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow-green);
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about__image-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 222, 128, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__image-badge-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.about__image-badge-text span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: var(--primary);
}

.about__image-badge-text small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.about__content .section-desc {
  margin-bottom: 24px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about__feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about__feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.about__feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== SEO STRATEGY ===== */
.seo {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.seo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seo__content {
  order: 2;
}

.seo__image {
  order: 1;
  position: relative;
}

.seo__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-green);
}

.seo__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.seo__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.seo__card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.seo__card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.seo__card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.seo__card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider--flip {
  transform: rotate(180deg);
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
}

.benefits__header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits__header .section-desc {
  margin: 0 auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(74, 222, 128, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 32px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
}

.marquee__item .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__header .section-desc {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works__header .section-desc {
  margin: 0 auto;
}

.stepper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
}

.stepper__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stepper__dot {
  width: 72px;
  height: 72px;
  background: var(--surface-2);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  transition: all var(--transition);
}

.stepper__step:hover .stepper__dot {
  background: var(--primary);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.3);
}

.stepper__step h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.stepper__step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 200px;
  line-height: 1.6;
}

/* ===== SOCIAL MEDIA ===== */
.social {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.social__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.social__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-green);
  aspect-ratio: 16 / 10;
  width: 100%;
  max-height: min(480px, 58vh);
}

.social__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.social__platforms {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.social__platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social__platform:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social__platform svg {
  width: 18px;
  height: 18px;
}

.social__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.social__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.social__feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__header .section-desc {
  margin: 0 auto;
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card__inner {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.testimonial-card__quote {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg);
}

.testimonial-card__info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-card__info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__header .section-desc {
  margin: 0 auto;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item--open {
  border-color: rgba(74, 222, 128, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.faq__question:hover {
  color: var(--primary);
}

.faq__question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq__item--open .faq__question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--surface);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact__info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact__info-item p,
.contact__info-item a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact__info-item a:hover {
  color: var(--primary);
}

.contact__form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--primary);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__input.error,
.form__textarea.error {
  border-color: #ef4444;
}

.form__error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form__error.visible {
  display: block;
}

.form__submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.form__submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.form__success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--primary);
  font-weight: 500;
}

.form__success.visible {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text);
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--primary);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--primary);
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 16px;
}

.legal-page ul li {
  margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner,
  .about__inner,
  .seo__inner,
  .social__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seo__content { order: 1; }
  .seo__image { order: 2; }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stepper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .stepper::before {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .stepper__step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    width: 100%;
    max-width: 500px;
  }

  .stepper__dot {
    margin-bottom: 0;
    min-width: 72px;
  }

  .stepper__step p {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    border-left: 1px solid var(--border);
    transition: right var(--transition);
    z-index: 8999;
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
    z-index: 9001;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero__image {
    max-height: min(360px, 52vh);
    aspect-ratio: 16 / 11;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__image img,
  .seo__image img {
    height: 300px;
  }

  .social__image {
    max-height: min(320px, 48vh);
    aspect-ratio: 16 / 10;
  }

  .testimonial-card__inner {
    padding: 32px 24px;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .social__features {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
