@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   RESET & SYSTEM VARIABLES
   ========================================== */
:root {
  /* Colors */
  --primary-navy: #0f172a;
  --secondary-navy: #1e293b;
  --accent-cyan: #06b6d4;
  --accent-cyan-hover: #0891b2;
  --accent-green: #10b981;
  --accent-green-hover: #059669;
  --bg-light: #ffffff;
  --bg-slate: #f8fafc;
  --bg-slate-dark: #f1f5f9;
  --bg-dark-mesh: radial-gradient(at 0% 0%, rgba(15, 23, 42, 0.95) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
    #0f172a;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-gray-light: #64748b;
  --text-light: #f8fafc;
  --border-color: #e2e8f0;
  --border-focus: #06b6d4;

  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.25);
  --shadow-glow-green: 0 0 20px rgba(16, 185, 129, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ==========================================
   REUSABLE UTILITIES & BUTTONS
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-dark-mesh);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--accent-cyan);
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
}

.section-dark .section-desc {
  color: #94a3b8;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-family: var(--font-title);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  gap: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-cyan);
  color: var(--primary-navy);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.btn-success {
  background-color: var(--accent-green);
  color: var(--text-light);
  box-shadow: var(--shadow-glow-green);
}

.btn-success:hover {
  background-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header-scrolled {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 70px;
}

.header-scrolled .nav-link {
  color: #cbd5e1;
}

.header-scrolled .nav-link:hover {
  color: var(--accent-cyan);
}

.header-scrolled .logo-text {
  color: var(--text-light);
}

.header-scrolled .logo-sub {
  color: var(--accent-cyan);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
  border-radius: var(--radius-sm);
  color: var(--primary-navy);
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-title);
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.logo-sub {
  color: var(--accent-cyan);
  font-weight: 400;
  font-size: 14px;
  display: block;
  margin-top: -4px;
}

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

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary-navy);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-cta {
  display: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-navy);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.header-scrolled .mobile-toggle span {
  background-color: var(--text-light);
}

/* Open Mobile Menu State */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 100vh;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 20% 85%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    #f8fafc;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--accent-cyan-hover);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}

.hero-tag-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(6, 182, 212, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

.hero-title {
  font-size: 54px;
  margin-bottom: 24px;
  color: var(--primary-navy);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-bullets {
  margin-bottom: 40px;
  list-style: none;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-navy);
}

.hero-bullet-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero Art Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Trust Badge Overlay */
.trust-badge-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-stars {
  color: #fbbf24;
  font-size: 18px;
  display: flex;
  gap: 2px;
}

.trust-badge-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.trust-badge-highlight {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* ==========================================
   INTERACTIVE SIMULATOR (QUIZ)
   ========================================== */
.quiz-section {
  background-color: var(--bg-slate);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.quiz-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  max-width: 800px;
  margin: 0 auto;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.quiz-progress-bar {
  height: 4px;
  background-color: var(--bg-slate-dark);
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  width: 33.33%;
  transition: var(--transition-normal);
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.quiz-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.quiz-question {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--primary-navy);
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.quiz-option {
  background-color: var(--bg-slate);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--accent-cyan);
  background-color: rgba(6, 182, 212, 0.02);
  transform: translateY(-2px);
}

.quiz-option.selected {
  border-color: var(--accent-cyan);
  background-color: rgba(6, 182, 212, 0.05);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.quiz-option-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-navy);
  margin-bottom: 6px;
  display: block;
}

.quiz-option-desc {
  font-size: 13px;
  color: var(--text-gray-light);
  display: block;
}

.quiz-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.btn-quiz-prev {
  background-color: transparent;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-quiz-prev:hover {
  color: var(--primary-navy);
}

/* Result Box */
.quiz-result {
  text-align: center;
}

.quiz-result-badge {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 13px;
  display: inline-block;
  margin-bottom: 16px;
}

.quiz-result-title {
  font-size: 26px;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.quiz-result-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-result-card {
  background: var(--bg-slate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 450px;
  margin: 0 auto 24px auto;
  text-align: left;
}

.quiz-result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.quiz-result-card-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 18px;
}

.quiz-result-card-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent-cyan-hover);
}

.quiz-result-card-bullets {
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.quiz-result-card-bullets li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiz-result-card-bullets svg {
  color: var(--accent-green);
  width: 14px;
  height: 14px;
}

/* ==========================================
   BENEFITS / COMO FUNCIONA
   ========================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
  opacity: 0;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.15);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.benefit-card:hover .benefit-icon-wrapper {
  background-color: var(--accent-cyan);
  color: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
  transform: scale(1.05);
  transition: var(--transition-fast);
}

.benefit-title {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--primary-navy);
}

.benefit-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* ==========================================
   PRICING / PLANOS
   ========================================== */
.pricing-section {
  background-color: var(--bg-slate);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Featured Plan Style */
.plan-card-featured {
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  transform: scale(1.03);
}

.plan-card-featured:hover {
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.25);
  transform: scale(1.05) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-cyan);
  color: var(--primary-navy);
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 8px rgba(6, 182, 212, 0.2);
}

.plan-name {
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-price-wrapper {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.plan-price-sub {
  font-size: 13px;
  color: var(--text-gray-light);
  display: block;
}

.plan-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-navy);
  font-family: var(--font-title);
  line-height: 1;
}

.plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--secondary-navy);
}

.plan-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature-item.muted {
  color: var(--text-gray-light);
  text-decoration: line-through;
}

.plan-feature-item.muted svg {
  color: var(--text-gray-light);
}

.plan-btn {
  width: 100%;
}

/* ==========================================
   HOW IT WORKS (TIMELINE)
   ========================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border: 3px solid var(--accent-cyan);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 28px;
  color: var(--primary-navy);
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.timeline-step:hover .timeline-number {
  border-color: var(--accent-green);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
  color: var(--accent-green);
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================
   SECURITY SECTION
   ========================================== */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.security-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.security-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.security-card-item {
  display: flex;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
}

.security-card-icon {
  font-size: 22px;
  color: var(--accent-cyan);
  background-color: rgba(6, 182, 212, 0.1);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-card-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.security-card-desc {
  font-size: 14px;
  color: #94a3b8;
}

.security-seals {
  display: flex;
  gap: 24px;
  align-items: center;
}

.security-seal {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-seal svg {
  color: var(--accent-green);
  width: 20px;
  height: 20px;
}

/* Right-side shield box */
.security-shield-showcase {
  display: flex;
  justify-content: center;
  position: relative;
}

.security-shield-outer {
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateClockwise 20s linear infinite;
  position: relative;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.security-shield-inner {
  width: 240px;
  height: 240px;
  background-color: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  left: 40px;
  animation: floatShield 4s ease-in-out infinite;
}

@keyframes floatShield {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.security-shield-logo {
  font-size: 90px;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-section {
  background-color: var(--bg-slate);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-navy);
  font-family: var(--font-title);
  padding-right: 15px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan-hover);
  transition: var(--transition-normal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 30px 24px 30px;
  font-size: 15px;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

/* Active FAQ Item state */
.faq-item.active {
  border-color: var(--accent-cyan);
}

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


.faq-item.active .faq-content {
  border-top-color: var(--border-color);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(6, 182, 212, 0.08);
  color: var(--accent-cyan-hover);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 14px;
  color: var(--text-gray-light);
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 15px;
  color: var(--primary-navy);
  font-weight: 600;
}

/* Form Styling */
.contact-form-wrapper {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-normal);
}

.form-textarea {
  height: 120px;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

/* Floating Label Logic */
.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-gray-light);
  pointer-events: none;
  transition: var(--transition-fast);
  background-color: var(--bg-light);
  padding: 0 4px;
}

.form-group-textarea .form-label {
  top: 24px;
  transform: none;
}

/* Active Label States */
.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label,
.form-textarea:focus~.form-label,
.form-textarea:not(:placeholder-shown)~.form-label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  left: 12px;
  color: var(--accent-cyan-hover);
  font-weight: 600;
}

.form-btn {
  width: 100%;
}

.form-feedback {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-green-hover);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}

.form-feedback.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--primary-navy);
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-title {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-title);
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link-item a {
  font-size: 14px;
}

.footer-link-item a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-item {
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--accent-cyan);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Bottom elements, copyright and terms */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
}

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

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

/* ==========================================
   MODAL (INTERACTIVE CHECKOUT SIMULATOR)
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--text-gray-light);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-navy);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 12px;
  text-align: center;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.modal-summary-card {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-summary-name {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-navy);
}

.modal-summary-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 18px;
  color: var(--accent-green-hover);
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================== */

/* Tablet & Mobile Menu Toggle visibility */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }

  .hero-bullet-item {
    margin-bottom: 0;
  }

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

  .hero-img-wrapper {
    max-width: 400px;
  }

  .benefits-grid,
  .plans-grid,
  .timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    padding-bottom: 30px;
    border-bottom: 1px dashed var(--border-color);
  }

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

  .security-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .security-shield-showcase {
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 28px;
  }

  /* Nav Links in Mobile Sidebar Drawer */
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--text-light);
    font-size: 18px;
    width: 100%;
  }

  .nav-link:hover {
    color: var(--accent-cyan);
  }

  .nav-cta {
    display: none;
    /* Handled in menu or replaced */
  }

  .mobile-menu-cta {
    display: block;
    width: 100%;
    margin-top: 24px;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .quiz-card {
    padding: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .trust-badge-overlay {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}