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

:root {
  --text-primary: #0a0a0a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #9ca3af;
  --primary: #036141;
  --accent: #01754a;
  --accent-muted: #e8f5f0;
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f5f5f5;
  --border: #e5e5e5;
  --success: #10b981;
  --max-width: 1200px;
}

@font-face {
  font-family: "Outfit";
  font-weight: 600;
  font-display: swap;
  src: url("font/outfit-v15-latin-600.woff2") format("woff2");
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter",
    sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
.hero h1,
.section h2,
.plan-name,
.addon-name,
.pricing-hero h1 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  animation: fadeInUp 0.6s ease-out;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 60px;
}

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

.nav-items a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

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

.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-cta-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-cta-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--text-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #0a0a0a;
  margin: 2px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-4px, -4px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  margin-right: 16px;
}

.lang-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: inherit;
}

.lang-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-button .globe-icon {
  font-size: 18px;
  color: #000;
}

.lang-button .arrow {
  font-size: 12px;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

.lang-button.active .arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 180px;
  display: none;
  z-index: 1000;
}

.lang-menu.active {
  display: block;
  animation: slideDown 0.2s ease-out;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 14px;
  font-weight: 500;
}

.lang-menu a:hover {
  background: #f5f5f5;
}

.lang-menu a .flag {
  font-size: 20px;
  width: 24px;
  display: flex;
  justify-content: center;
}

.lang-menu a .lang-code {
  font-size: 12px;
  color: #666;
  margin-left: auto;
  font-weight: 400;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 180px 40px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  opacity: 0.9;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--text-primary);
  color: white !important;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.cta-primary:hover::before {
  transform: translateX(100%);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 16px 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

/* Orbital Animation */
.hero-animation {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.center-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parent-rotator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  z-index: 50;
}

.orbital-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  z-index: 100;
}

.orbital-element img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.orbital-element:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-160px) rotate(0deg);
  animation: counter-rotate-0 25s linear infinite;
}

.orbital-element:nth-child(2) {
  transform: translate(-50%, -50%) rotate(72deg) translateY(-160px)
    rotate(-72deg);
  animation: counter-rotate-72 25s linear infinite;
}

.orbital-element:nth-child(3) {
  transform: translate(-50%, -50%) rotate(144deg) translateY(-160px)
    rotate(-144deg);
  animation: counter-rotate-144 25s linear infinite;
}

.orbital-element:nth-child(4) {
  transform: translate(-50%, -50%) rotate(216deg) translateY(-160px)
    rotate(-216deg);
  animation: counter-rotate-216 25s linear infinite;
}

.orbital-element:nth-child(5) {
  transform: translate(-50%, -50%) rotate(288deg) translateY(-160px)
    rotate(-288deg);
  animation: counter-rotate-288 25s linear infinite;
}

@keyframes counter-rotate-0 {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-160px)
      rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-160px)
      rotate(-360deg);
  }
}

@keyframes counter-rotate-72 {
  from {
    transform: translate(-50%, -50%) rotate(72deg) translateY(-160px)
      rotate(-72deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(432deg) translateY(-160px)
      rotate(-432deg);
  }
}

@keyframes counter-rotate-144 {
  from {
    transform: translate(-50%, -50%) rotate(144deg) translateY(-160px)
      rotate(-144deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(504deg) translateY(-160px)
      rotate(-504deg);
  }
}

@keyframes counter-rotate-216 {
  from {
    transform: translate(-50%, -50%) rotate(216deg) translateY(-160px)
      rotate(-216deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(576deg) translateY(-160px)
      rotate(-576deg);
  }
}

@keyframes counter-rotate-288 {
  from {
    transform: translate(-50%, -50%) rotate(288deg) translateY(-160px)
      rotate(-288deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(648deg) translateY(-160px)
      rotate(-648deg);
  }
}

.orbital-element:hover {
  transform: scale(1.1);
  z-index: 200;
}

/* ========== SECTIONS ========== */
.section {
  padding: 48px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.section.centered .section-header {
  margin: 0 auto;
}

.section-header {
  max-width: 800px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Feature Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: white;
  border-color: var(--border);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-metric {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: var(--bg-tertiary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border-radius: 24px;
  padding: 60px;
  margin: 80px 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-content {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
}

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

/* ========== PROCESS STEPS ========== */
.process {
  margin: 80px 0;
}

.process-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.process-step:hover {
  padding-left: 20px;
}

.step-number {
  font-size: 48px;
  font-weight: 200;
  color: var(--accent);
  opacity: 0.3;
  min-width: 80px;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing-hero {
  padding: 140px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.pricing-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.pricing-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
  align-items: start;
  animation: fadeInUp 0.6s ease-out;
}

.plan-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 4px 0 12px;
}

.plan-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.plan-card.featured {
  border-color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.plan-card.featured:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.plan-description {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.4;
  min-height: 36px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
}

.plan-price .currency {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-right: 4px;
}

.plan-price .amount {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.plan-price .period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  margin: 0 0 24px;
}

.plan-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-cta {
  width: 100%;
  padding: 12px 24px;
  background: var(--text-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

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

.plan-cta-outline {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.plan-cta-outline:hover {
  background: var(--bg-secondary);
}

/* Add-ons */
.addons-container {
  max-width: 900px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.addon-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.addon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: var(--text-primary);
}

.addon-badge {
  display: inline-block;
  background: var(--accent-muted);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.addon-icon {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.addon-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.addon-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.addon-pricing {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.addon-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
}

.addon-price .currency {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-right: 3px;
}

.addon-price .amount {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
}

.addon-price .period {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 3px;
}

.addon-includes-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.addon-note {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.4;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ========== TOOLTIPS ========== */
.tooltip-trigger {
  font-size: 14px;
  color: var(--text-tertiary);
  cursor: help;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.tooltip-trigger:hover {
  color: var(--text-primary);
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  right: 0;
  transform: translateY(-8px);
  background: var(--text-primary);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  width: 240px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 100;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 12px;
  border: 6px solid transparent;
  border-top-color: var(--text-primary);
}

.tooltip-trigger:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(-4px);
}

/* ========== FAQ ========== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 20px 24px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left !important;
}

.faq-item.active {
  background: white;
  border-left: 3px solid var(--accent);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-icon {
  font-size: 20px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-weight: 600;
}

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

/* ========== GUARANTEE ========== */
.guarantee {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f2 100%);
  border-left: 4px solid var(--success);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
}

.guarantee-title {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== FOOTER ========== */
.footer {
  padding: 80px 40px 40px;
  margin-top: 120px;
  background: var(--bg-secondary);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 auto 40px;
  max-width: 600px;
}

.footer-meta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

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

.copyright {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* ========== CAROUSEL ========== */
.carousel-container {
  width: 100%;
  height: 160px;
  background: white;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.carousel-track {
  display: flex;
  align-items: center;
  height: 100%;
  animation: scroll 20s linear infinite;
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

.carrossel-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
  flex-shrink: 0;
}

.carrossel-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carrossel-logo:hover {
  transform: scale(1.15) rotate(10deg);
}

.carrossel-logo:nth-child(1) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.carrossel-logo:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.carrossel-logo:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.carrossel-logo:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.carrossel-logo:nth-child(5) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.carrossel-logo:nth-child(6) {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}
.carrossel-logo:nth-child(7) {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
.carrossel-logo:nth-child(8) {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}
.carrossel-logo:nth-child(9) {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}
.carrossel-logo:nth-child(10) {
  background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%);
}

.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(90deg, white 0%, transparent 100%);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, white 100%);
}

/* ========== IMPORT GRID ========== */
.import-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

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

.import-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: white;
}

.import-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.import-icon {
  font-size: 32px;
}

.import-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.continuous-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

.manual-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #9ca3af;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.platform-tag {
  background: white;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.import-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ========== DASHBOARD PREVIEW ========== */
.dashboard-preview {
  margin: 0 auto;
  padding: 20px 0;
}

.dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.dashboard-image:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ========== ABOUT PAGE ========== */
.about-hero {
  padding: 140px 40px 0;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
}

.about-intro {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.founder-letter {
  background: white;
  border-radius: 8px;
  padding: 60px 50px;
  margin: 80px 0;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.founder-letter p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: none;
}

.founder-letter::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 12px;
  right: 12px;
  height: 100%;
  background: var(--bg-tertiary);
  border-radius: 8px;
  z-index: -1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.founder-letter::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 24px;
  right: 24px;
  height: 100%;
  background: var(--bg-secondary);
  border-radius: 8px;
  z-index: -2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.founder-letter ul {
  list-style: disc;
  padding-left: 24px;
  margin: 24px 0;
}

.founder-letter ul li {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.founder-signature {
  margin-top: 48px;
  padding-top: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.founder-signature-visual {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.founder-signature-image {
  max-width: 100px;
  height: auto;
  flex-shrink: 0;
}

.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.founder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.trust-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.trust-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trust-logos:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trust-logos span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .parent-rotator,
  .orbit-path {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    animation: none;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-container {
    padding: 20px;
    position: relative;
  }

  .nav-items {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: 60vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0;
    z-index: 1000;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .nav-items.active {
    display: flex;
  }

  .nav-items a {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
  }

  .nav-items a:last-child {
    border-bottom: none;
  }

  .nav-buttons {
    display: none;
    position: fixed;
    top: calc(90px + 180px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    padding: 20px 0;
  }

  .nav-buttons.active {
    display: flex;
  }

  .nav-buttons .nav-cta-outline,
  .nav-buttons .nav-cta {
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
  }

  .language-dropdown {
    margin-right: 0;
  }

  .lang-menu {
    right: auto;
    left: 0;
  }

  .hero {
    padding: 140px 20px 80px;
    grid-template-columns: 1fr;
    gap: 40px;
    animation: none;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    order: 1;
  }

  .orbit-path {
    width: 240px;
    height: 240px;
  }

  .center-content {
    width: 150px;
    height: 150px;
  }

  .parent-rotator {
    width: 240px;
    height: 240px;
  }

  .orbital-element {
    width: 45px;
    height: 45px;
  }

  .orbital-element img {
    width: 25px;
    height: 25px;
  }

  .orbital-element:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-120px)
      rotate(0deg);
  }

  .orbital-element:nth-child(2) {
    transform: translate(-50%, -50%) rotate(72deg) translateY(-120px)
      rotate(-72deg);
  }

  .orbital-element:nth-child(3) {
    transform: translate(-50%, -50%) rotate(144deg) translateY(-120px)
      rotate(-144deg);
  }

  .orbital-element:nth-child(4) {
    transform: translate(-50%, -50%) rotate(216deg) translateY(-120px)
      rotate(-216deg);
  }

  .orbital-element:nth-child(5) {
    transform: translate(-50%, -50%) rotate(288deg) translateY(-120px)
      rotate(-288deg);
  }

  @keyframes counter-rotate-0 {
    from {
      transform: translate(-50%, -50%) rotate(0deg) translateY(-120px)
        rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg) translateY(-120px)
        rotate(-360deg);
    }
  }

  @keyframes counter-rotate-72 {
    from {
      transform: translate(-50%, -50%) rotate(72deg) translateY(-120px)
        rotate(-72deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(432deg) translateY(-120px)
        rotate(-432deg);
    }
  }

  @keyframes counter-rotate-144 {
    from {
      transform: translate(-50%, -50%) rotate(144deg) translateY(-120px)
        rotate(-144deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(504deg) translateY(-120px)
        rotate(-504deg);
    }
  }

  @keyframes counter-rotate-216 {
    from {
      transform: translate(-50%, -50%) rotate(216deg) translateY(-120px)
        rotate(-216deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(576deg) translateY(-120px)
        rotate(-576deg);
    }
  }

  @keyframes counter-rotate-288 {
    from {
      transform: translate(-50%, -50%) rotate(288deg) translateY(-120px)
        rotate(-288deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(648deg) translateY(-120px)
        rotate(-648deg);
    }
  }

  .section {
    padding: 60px 20px;
  }

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

  .testimonial {
    padding: 40px 30px;
  }

  .process {
    margin: 40px 0;
  }

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

  .pricing-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .addons-container,
  .import-grid {
    grid-template-columns: 1fr;
  }

  .import-card {
    padding: 24px;
  }

  .footer-meta {
    flex-direction: column;
    text-align: center;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-question {
    align-items: flex-start;
    padding: 16px 20px;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px;
  }

  .dashboard-preview {
    padding: 20px 0;
  }

  .dashboard-image:hover {
    transform: scale(1.01);
  }

  .tooltip-content {
    width: 200px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .about-hero {
    padding: 120px 20px 60px;
  }

  .about-content {
    padding: 0 20px 60px;
  }

  .founder-letter {
    padding: 40px 30px;
  }

  .founder-signature-visual {
    flex-direction: column;
    gap: 16px;
  }
}
