/*
Theme Name: Fork IT
Theme URI: https://forkit.dev
Author: Fork IT
Author URI: https://forkit.dev
Description: Fork IT — Web + SEO que funciona. Minimal landing page theme for SMEs.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: forkit
Tags: one-page, custom-menu, translation-ready
*/

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg-deep: #0c0c0f;
  --bg-base: #12121a;
  --bg-elevated: #1a1a25;
  --bg-card: #16161f;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(163,230,53,0.3);
  --text-primary: #f0f0f5;
  --text-secondary: #a1a1b5;
  --text-muted: #52526b;
  --accent-lime: #a3e635;
  --accent-cyan: #22d3ee;
  --accent-yellow: #facc15;
  --accent-lime-dim: rgba(163,230,53,0.12);
  --accent-cyan-dim: rgba(34,211,238,0.12);
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --font-code: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(163,230,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163,230,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-attachment: fixed;
}

/* ---- ANIMATIONS ---- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.rotating-text {
  display: inline-block;
  color: var(--accent-lime);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotating-text.fade-out {
  opacity: 0;
  transform: translateY(-12px) scale(0.95);
}

/* Scroll reveal — cards scale in with micro-rotation */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Alternate cards slide from sides */
.feature-card.reveal:nth-child(odd) { transform: translateY(50px) translateX(-20px) scale(0.97); }
.feature-card.reveal:nth-child(even) { transform: translateY(50px) translateX(20px) scale(0.97); }
.feature-card.reveal.visible { transform: translateY(0) translateX(0) scale(1); }

.pain-card.reveal:nth-child(odd) { transform: translateY(50px) translateX(-20px) scale(0.97); }
.pain-card.reveal:nth-child(even) { transform: translateY(50px) translateX(20px) scale(0.97); }
.pain-card.reveal.visible { transform: translateY(0) translateX(0) scale(1); }

/* Typewriter cursor for section labels */
.type-cursor {
  display: inline;
  color: var(--accent-lime);
  animation: blink 0.7s step-end infinite;
  font-weight: 400;
  margin-left: 1px;
}

/* Side ambient glows */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 0% 30%, rgba(163,230,53,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 60%, rgba(34,211,238,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 80%, rgba(34,211,238,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 15%, rgba(250,204,21,0.03) 0%, transparent 40%);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fork-icon {
  stroke: var(--accent-lime);
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent-lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  background: var(--accent-lime);
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: #bef264;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu .nav-cta {
  font-size: 16px;
  padding: 14px 32px;
}

/* ---- SECTIONS ---- */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HERO ---- */
.hero {
  padding-top: 160px;
  padding-bottom: 140px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(163,230,53,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 40%, rgba(34,211,238,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(250,204,21,0.04) 0%, transparent 40%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-terminal {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 48px;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 30px rgba(163,230,53,0.06), 0 0 60px rgba(34,211,238,0.03);
}

.hero-terminal .term-line {
  white-space: nowrap;
}

.hero-terminal .term-line + .term-output {
  margin-top: 6px;
}

.hero-terminal .term-output {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.8;
}

.hero-terminal .term-ok {
  color: var(--accent-lime);
  margin-right: 6px;
}

.hero-terminal .term-line:last-child {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.hero-terminal .cmd { color: var(--accent-lime); }
.hero-terminal .arg { color: var(--accent-cyan); }
.hero-terminal .flag { color: var(--accent-yellow); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 .highlight {
  color: var(--accent-lime);
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-sub .price {
  color: var(--text-primary);
  font-weight: 700;
}

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

.btn-primary {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  background: var(--accent-lime);
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #bef264;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(163,230,53,0.3);
}

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: border-color 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--accent-lime);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

/* ---- SECTION DIVIDERS ---- */
.problem::before,
.solution::before,
.pricing::before,
.how::before,
.faq::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(163,230,53,0.12) 30%, rgba(34,211,238,0.08) 70%, transparent 95%);
  margin-bottom: 100px;
}

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity 0.3s;
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ---- PROBLEM ---- */
.problem {
  padding-top: 0;
  padding-bottom: 120px;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-lime);
  margin-bottom: 16px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 56px;
  max-width: 650px;
}

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

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.08);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.pain-card h3 {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-primary);
}

/* ---- SOLUTION ---- */
.solution {
  padding-top: 0;
  padding-bottom: 120px;
  position: relative;
}

.solution .section-title .highlight {
  color: var(--accent-lime);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(163,230,53,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-lime-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-card--cyan:hover {
  border-color: rgba(34,211,238,0.3);
  box-shadow: 0 8px 30px rgba(34,211,238,0.08);
}

.feature-icon--cyan {
  background: var(--accent-cyan-dim);
}

.feature-card--yellow:hover {
  border-color: rgba(250,204,21,0.3);
  box-shadow: 0 8px 30px rgba(250,204,21,0.08);
}

.feature-icon--yellow {
  background: rgba(250,204,21,0.12);
}

/* ---- FORK WATERMARKS ---- */

.solution-footer {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: 32px;
  max-width: 600px;
}

.solution-footer strong {
  color: var(--text-primary);
}

/* ---- PRICING ---- */
.pricing {
  padding-top: 0;
  padding-bottom: 120px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px 36px;
  position: relative;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.price-card .btn-primary,
.price-card .btn-ghost {
  margin-top: auto;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(163,230,53,0.06);
}

.price-card.featured {
  border-color: var(--accent-lime);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(163,230,53,0.05) 100%);
  box-shadow: 0 0 40px rgba(163,230,53,0.06);
}

.price-card.featured:hover {
  border-color: var(--accent-lime);
  box-shadow: 0 0 50px rgba(163,230,53,0.1);
}

.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  background: var(--accent-lime);
  color: #0a0a0a;
  padding: 4px 14px;
  border-radius: 4px;
  text-transform: uppercase;
}

.price-name {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-setup {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 24px;
}

.price-amount .currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 2px;
}

.price-amount .period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.price-features li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-lime);
  font-weight: 700;
}

.price-card .btn-primary,
.price-card .btn-ghost {
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.pricing-note {
  text-align: center;
  margin-bottom: 6px;
}

.pricing-note p {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-note .strong {
  color: var(--accent-lime);
  font-weight: 700;
}


/* ---- HOW IT WORKS ---- */
.how {
  padding-top: 0;
  padding-bottom: 120px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-code);
  font-size: 13px;
  color: var(--accent-cyan);
  min-width: 100px;
  padding-top: 2px;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.step-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq {
  padding-top: 0;
  padding-bottom: 120px;
}

.faq-list {
  max-width: 700px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--accent-lime);
}

.faq-toggle {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent-lime);
  flex-shrink: 0;
  transition: transform 0.3s;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding-top: 60px;
  padding-bottom: 120px;
  text-align: center;
}

.final-cta-box {
  background: var(--bg-base);
  border: 1px solid rgba(163,230,53,0.15);
  border-radius: 16px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(163,230,53,0.04);
}

.final-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 50%, rgba(163,230,53,0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(34,211,238,0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
  position: relative;
}

.final-cta .terminal-deco {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  position: relative;
}

.final-cta .terminal-deco .cmd { color: var(--accent-lime); }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

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

.footer-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s;
}

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

.footer-contact {
  text-align: right;
}

.footer-contact a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-lime);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(32px, 8vw, 52px);
  }

  .step {
    flex-direction: column;
    gap: 8px;
  }

  .step-number {
    min-width: auto;
  }

  .final-cta-box {
    padding: 48px 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    text-align: center;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .price-amount {
    font-size: 42px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ---- DELAY CLASSES ---- */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.6s; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-code);
  font-size: 11px;
  margin-right: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  letter-spacing: 0.5px;
}
.lang-switch a {
  padding: 5px 10px;
  text-decoration: none;
  transition: all 0.25s;
}
.lang-active {
  color: var(--bg-deep);
  background: var(--accent-lime);
  font-weight: 700;
}
.lang-inactive {
  color: var(--text-muted);
}
.lang-inactive:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.lang-sep { display: none; }

