/* ==========================================================================
   RESET & VARIABLES (LIGHT THEME)
   ========================================================================== */
:root {
  --bg-absolute: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --bg-surface-glass: rgba(255, 255, 255, 0.75);
  
  --color-primary: #2563eb;
  --color-accent: #4f46e5;
  --color-accent-glow: #6366f1;
  --color-secondary: #9333ea;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --border-light: rgba(15, 23, 42, 0.08);
  --border-glass: rgba(15, 23, 42, 0.04);
  
  --font-title: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-absolute);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   PREMIUM UTILITIES
   ========================================================================== */
.gradient-text {
  background: linear-gradient(135deg, #0f172a 30%, #4f46e5 70%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pro-tag {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(147, 51, 234, 0.06));
  border: 1px solid rgba(147, 51, 234, 0.2);
  color: #7e22ce;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
}

/* Grid overlay background glows */
.grid-glow-left {
  position: absolute;
  top: 0;
  left: -10%;
  width: 60vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.grid-glow-right {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 60vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.35);
  background: linear-gradient(135deg, #4338ca, #3730a3);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 8px 16px;
  font-size: 13px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 8px;
}

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

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  display: flex;
  align-items: center;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #0f172a;
}

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

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

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

.mobile-menu-toggle {
  display: none;
  color: var(--text-secondary);
  padding: 4px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .btn-nav {
    display: none;
  }
}

/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 72px;
  background: #ffffff;
  z-index: 99;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.mobile-cta {
  width: 100%;
  margin-top: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.1);
  margin-bottom: 24px;
  animation: float 6s ease-in-out infinite;
}

.badge-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: #4f46e5;
  padding: 2px 8px;
  border-radius: 100px;
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  color: #4f46e5;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
  color: #0f172a;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 15px;
  }
}

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

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

/* Browser Frame Visual Mockup */
.hero-visual {
  width: 100%;
  max-width: 960px;
  perspective: 1000px;
}

.browser-frame {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.browser-frame:hover {
  transform: translateY(-8px) rotateX(1deg);
  border-color: rgba(79, 70, 229, 0.15);
}

.browser-bar {
  display: flex;
  align-items: center;
  height: 38px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-light);
  padding: 0 16px;
  position: relative;
}

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

.browser-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
}

.browser-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: monospace;
  font-size: 11px;
  color: var(--text-secondary);
  background: #ffffff;
  padding: 4px 24px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 560px) {
  .browser-address {
    display: none;
  }
}

.browser-content {
  background: #ffffff;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   LOGOS SECTION
   ========================================================================== */
.logos-section {
  padding-top: 32px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-light);
}

.logos-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
}

.logo-item {
  color: var(--text-muted);
  opacity: 0.65;
  transition: var(--transition-fast);
}

.logo-item:hover {
  opacity: 1;
  color: #0f172a;
}

/* ==========================================================================
   WORKFLOW SECTION
   ========================================================================== */
.workflow-section {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #0f172a;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 900px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.workflow-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.workflow-tab {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  transition: var(--transition-smooth);
}

.workflow-tab:hover {
  background: rgba(15, 23, 42, 0.015);
  border-color: var(--border-light);
}

.workflow-tab.active {
  background: rgba(79, 70, 229, 0.03);
  border-color: rgba(79, 70, 229, 0.12);
  box-shadow: 0 4px 30px rgba(79, 70, 229, 0.02);
}

.tab-number {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.workflow-tab.active .tab-number {
  color: var(--color-accent);
}

.tab-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.workflow-tab.active .tab-title {
  color: #0f172a;
}

.tab-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: var(--transition-smooth);
}

.workflow-tab.active .tab-desc {
  color: var(--text-secondary);
}

.workflow-visual-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-window {
  width: 100%;
  max-width: 420px;
  height: 290px;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.step-view.active {
  opacity: 1;
  pointer-events: auto;
}

.step-graphics {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

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

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.04);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-accent);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrap {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

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

/* ==========================================================================
   DEEP ELEMENTOR INTEGRATION SHOWCASE
   ========================================================================== */
.integration-section {
  padding: 100px 0;
}

.integration-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .integration-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.integration-text .sub-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: inline-block;
}

.integration-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.integration-text .section-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.integration-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.integration-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.integration-list span {
  font-size: 14px;
  color: var(--text-secondary);
}

.integration-list strong {
  color: #0f172a;
  font-weight: 600;
}

.integration-visual {
  width: 100%;
}

.integration-img {
  width: 100%;
  height: auto;
  border-radius: 0 0 11px 11px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  background: var(--bg-surface-elevated);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

.toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
}

.toggle-label.active {
  color: #0f172a;
}

.discount-badge {
  font-size: 10px;
  font-weight: 700;
  color: #15803d;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.pricing-toggle-btn {
  width: 44px;
  height: 24px;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  position: relative;
}

.toggle-slider {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
}

.pricing-toggle-btn.active .toggle-slider {
  transform: translateX(20px);
}

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

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.pricing-card.highlighted {
  border-color: rgba(79, 70, 229, 0.25);
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.02) 0%, rgba(255, 255, 255, 0) 100%), #ffffff;
  box-shadow: 0 10px 40px rgba(79, 70, 229, 0.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.card-header {
  margin-bottom: 24px;
}

.plan-name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.plan-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 36px;
}

.plan-price {
  display: flex;
  align-items: baseline;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 2px;
}

.price-val {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
}

.billing-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 4px;
}

.card-body {
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.pricing-card.highlighted .plan-features li::before {
  background: var(--color-accent);
}

.card-footer .btn {
  width: 100%;
}

.btn-card-secondary {
  background: rgba(15, 23, 42, 0.01);
  color: #0f172a;
  border: 1px solid var(--border-light);
}

.btn-card-secondary:hover {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.15);
}

.btn-card-primary {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-card-primary:hover {
  background: linear-gradient(135deg, #4338ca, #3730a3);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
  transform: translateY(-1px);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(15, 23, 42, 0.15);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  transition: var(--transition-fast);
}

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

.faq-arrow {
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

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

.faq-answer-content {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CTA BLOCK
   ========================================================================== */
.cta-section {
  padding-bottom: 100px;
}

.cta-container {
  max-width: 960px;
}

.cta-inner {
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

@media (max-width: 600px) {
  .cta-inner {
    padding: 48px 24px;
  }
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.01) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: #0f172a;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 32px;
  }
}

.cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

.cta-subtext {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-wrapper {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.footer-brand-side {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  color: #0f172a;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

.footer-col-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: #0f172a;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
  text-align: center;
}

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

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.ccfe-spin {
  animation: spin 0.6s linear infinite;
}
