/*
 * MENDARIS — Landing Page Styles
 * Premium Design with Dark/Light Theme
 */

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: background 0.3s, border 0.3s;
}

[data-theme="dark"] .nav {
  background: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.8);
}

.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}

.brand-icon {
  color: var(--green);
  font-size: 20px;
}

.nav-center {
  display: flex;
  gap: 32px;
}

.nav-center a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-center a:hover {
  color: var(--fg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher in Landing Nav */
.lang-switcher-landing {
  display: flex;
  gap: 4px;
}

.lang-switcher-landing .lang-btn {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.lang-switcher-landing .lang-btn:hover {
  color: var(--fg);
  border-color: var(--fg-dim);
}

.lang-switcher-landing .lang-btn.active {
  color: var(--green);
  background: var(--green-dim);
  border-color: transparent;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--fg-muted);
  transition: all 0.2s;
}

.theme-toggle:hover {
  border-color: var(--border-strong);
  color: var(--fg);
}

[data-theme="dark"] .icon-sun {
  display: block;
}
[data-theme="dark"] .icon-moon {
  display: none;
}
[data-theme="light"] .icon-sun {
  display: none;
}
[data-theme="light"] .icon-moon {
  display: block;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background: var(--green);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

/* ============================================
   LANDING BUTTONS
   ============================================ */

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  background: var(--green);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--border-strong);
  background: var(--bg-alt);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 160px 32px 100px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* App Window */
.hero-visual {
  position: relative;
}

.app-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, border 0.3s;
}

[data-theme="light"] .app-window {
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.app-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.app-dots {
  display: flex;
  gap: 6px;
}

.app-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-strong);
}

.app-dots span:first-child {
  background: #ff5f57;
}
.app-dots span:nth-child(2) {
  background: #ffbd2e;
}
.app-dots span:last-child {
  background: #28c840;
}

.app-window-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

.app-window-body {
  padding: 24px;
}

.app-input {
  margin-bottom: 20px;
}

.app-input label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.input-field {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.input-field span {
  font-size: 14px;
}

.cursor {
  width: 2px;
  height: 18px;
  background: var(--green);
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.app-output {
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.output-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.output-confidence {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.output-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.output-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  width: 94%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #4ade80);
  border-radius: 2px;
}

.app-insights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
}

.insight-pro {
  background: var(--green-dim);
}
.insight-con {
  background: var(--red-dim);
}

.insight-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.insight-pro .insight-icon {
  background: var(--green);
  color: #000;
}

.insight-con .insight-icon {
  background: var(--red);
  color: #fff;
}

.insight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insight-text strong {
  font-size: 13px;
  font-weight: 600;
}

.insight-text span {
  font-size: 12px;
  color: var(--fg-muted);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

[data-theme="light"] .hero-glow {
  opacity: 0.5;
}

/* ============================================
   METRICS
   ============================================ */

.metrics {
  padding: 64px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border 0.3s;
}

.metrics-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
}

.metric {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--fg-muted);
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  padding: 120px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.problem-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.problem-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution {
  padding: 120px 0;
  background: var(--bg-alt);
  transition: background 0.3s;
}

.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 48px;
}

.step:last-child {
  padding-bottom: 0;
}

.step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-line {
  position: absolute;
  left: 23px;
  top: 56px;
  width: 2px;
  height: calc(100% - 56px);
  background: var(--border);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  padding: 120px 0;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block-reverse {
  direction: rtl;
}

.feature-block-reverse > * {
  direction: ltr;
}

.feature-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.feature-visual {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Visual Cards */
.visual-card {
  width: 220px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.3s, border 0.3s;
}

.visual-card-pro {
  transform: translateY(-16px);
}
.visual-card-con {
  transform: translateY(16px);
}

.card-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 16px;
}

.card-badge-pro {
  background: var(--green-dim);
  color: var(--green);
}

.card-badge-con {
  background: var(--red-dim);
  color: var(--red);
}

.card-list {
  list-style: none;
}

.card-list li {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.card-list li:last-child {
  border-bottom: none;
}

.card-list li.faded {
  opacity: 0.5;
}

/* Visual Chart */
.visual-chart {
  width: 100%;
  max-width: 380px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.3s, border 0.3s;
}

.chart-header {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 160px;
  gap: 12px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  height: var(--h);
  background: var(--border);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: background 0.3s;
}

.chart-bar span {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
}

.chart-bar-active {
  background: linear-gradient(to top, var(--green), #4ade80);
}

.chart-bar-active em {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  font-style: normal;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
}

.chart-position {
  color: var(--green);
  font-weight: 600;
}

/* Visual Speed */
.visual-speed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.speed-circle {
  position: relative;
  width: 160px;
  height: 160px;
}

.speed-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.speed-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 8;
}

.speed-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 50;
}

.speed-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.speed-num {
  display: block;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.speed-unit {
  font-size: 13px;
  color: var(--fg-muted);
}

.speed-compare {
  width: 100%;
  max-width: 240px;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 8px;
}

.compare-row:last-child {
  margin-bottom: 0;
}

.compare-slow {
  color: var(--red);
  font-weight: 600;
}
.compare-fast {
  color: var(--green);
  font-weight: 600;
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial {
  padding: 120px 0;
  background: var(--bg-alt);
  transition: background 0.3s;
}

.testimonial .section-inner {
  max-width: 800px;
  text-align: center;
}

.testimonial blockquote {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), #4ade80);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.pricing-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.pricing-card:hover {
  border-color: var(--border-strong);
}

.pricing-card-featured {
  border-color: var(--green);
}

[data-theme="dark"] .pricing-card-featured {
  background: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.08) 0%,
    var(--bg-card) 100%
  );
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing-header p {
  font-size: 14px;
  color: var(--fg-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-currency {
  font-size: 18px;
  color: var(--fg-muted);
}

.price-period {
  font-size: 15px;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
}

.pricing-features .check {
  color: var(--green);
  font-weight: 600;
}

/* ============================================
   CTA
   ============================================ */

.cta {
  padding: 160px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto 24px;
}

.cta-form input {
  flex: 1;
  padding: 16px 20px;
  font-size: 16px;
  font-family: inherit;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border 0.2s;
}

.cta-form input::placeholder {
  color: var(--fg-muted);
}

.cta-form input:focus {
  border-color: var(--green);
}

.cta-form button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  color: #000;
  background: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.cta-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.cta-note {
  font-size: 14px;
  color: var(--fg-muted);
}

.cta-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(34, 197, 94, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

[data-theme="light"] .cta-glow {
  opacity: 0.5;
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
  padding: 32px;
  border-top: 1px solid var(--border);
  transition: border 0.3s;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-block-reverse {
    direction: ltr;
  }

  .feature-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .metrics-inner {
    flex-direction: column;
    gap: 32px;
  }

  .metric-divider {
    width: 48px;
    height: 1px;
  }

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

  .visual-card {
    width: 100%;
    max-width: 280px;
    transform: none !important;
  }

  .cta-form {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s var(--ease) forwards;
  }

  .hero-badge {
    animation-delay: 0.1s;
  }
  .hero-title {
    animation-delay: 0.2s;
  }
  .hero-desc {
    animation-delay: 0.3s;
  }
  .hero-actions {
    animation-delay: 0.4s;
  }

  .hero-visual {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeUp 0.8s var(--ease) 0.5s forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
