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

:root {
  /* Colors from Stitch 'MyEstudio Modern UX Transformation' design system */
  --primary: #0f172a;           /* Deep Navy - Authority & Trust */
  --secondary: #2563eb;         /* Professional Blue - Focus, action & highlight */
  --tertiary: #f8fafc;          /* Cloud Gray - Modern workspace base background */
  
  /* Status Colors */
  --success: #10b981;           /* Growth / Success green */
  --success-light: #ecfdf5;
  --success-dark: #047857;
  --alert: #ef4444;             /* Alert red */
  
  /* Slate Scale - UI Elements */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --white: #ffffff;
  
  /* Typography */
  --font-title: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Elevations & Depth */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
  /* Tinted soft shadow for floating elements */
  --shadow-ambient: 0 12px 32px -4px rgba(37, 99, 235, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
  
  /* Corner Radii */
  --radius-sm: 4px;
  --radius-md: 8px;             /* Standard UI component roundedness (inputs, buttons) */
  --radius-lg: 12px;
  --radius-xl: 16px;            /* Container cards and featured containers */
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--slate-50);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

li {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 32px;
}

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

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

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Dynamic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(15, 23, 42, 0.15);
}

.btn-secondary:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(15, 23, 42, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--slate-200);
}

.btn-outline:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-300);
  transform: translateY(-2px);
}

/* Glassmorphism Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo img {
  border-radius: 50%;
  transition: var(--transition);
}

.logo:hover img {
  transform: rotate(10deg) scale(1.05);
}

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

@media (min-width: 992px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-weight: 500;
  color: var(--slate-600);
  font-size: 14.5px;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

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

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

/* Mobile Toggle Hamburger button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

@media (min-width: 992px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* Mobile Navigation Side Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 32px;
  gap: 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Sections Structure */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-tag.emerald {
  background-color: var(--success-light);
  color: var(--success-dark);
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.section-subtitle {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.7;
}

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

.center-text .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(37, 99, 235, 0.05) 0%, rgba(248, 250, 252, 0) 100%), var(--slate-50);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-tag span.badge {
  background-color: var(--secondary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
}

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

.hero-title span.gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--slate-600);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  width: 100%;
  max-width: 520px;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 30px 60px -15px rgba(15, 23, 42, 0.08);
  padding: 16px;
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.hero-card:hover .hero-image-wrap img {
  transform: scale(1.02);
}

.hero-stat-card {
  position: absolute;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-ambient);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--slate-100);
  transition: var(--transition);
}

.hero-stat-card:hover {
  transform: translateY(-4px);
}

.stat-1 {
  bottom: -20px;
  left: -20px;
}

.stat-2 {
  top: 40px;
  right: -25px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.stat-info p {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-info h5 {
  font-size: 14.5px;
  color: var(--primary);
  font-weight: 700;
}

/* Pain Points / Benefits */
.pain-points {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.pain-card {
  background-color: var(--tertiary);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-ambient);
  transform: translateY(-4px);
  background-color: var(--white);
}

.pain-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.pain-card p {
  color: var(--slate-600);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Modules Grid */
.features-tabs {
  background-color: var(--slate-50);
}

.module-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-ambient);
  transform: translateY(-4px);
}

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

.module-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.module-card.sueldos .module-icon-wrap {
  background-color: var(--success-light);
  color: var(--success);
}

.module-card.contable .module-icon-wrap {
  background-color: #f3e8ff;
  color: #a855f7;
}

.module-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.module-card p {
  color: var(--slate-600);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.module-features {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.module-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-600);
}

.module-feature-item i {
  color: var(--success);
  margin-top: 3px;
}

/* Trust & Collaboration (Problem vs Solution) */
.trust-collaboration {
  background-color: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.collaboration-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 20px 40px -10px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--slate-200);
}

.collaboration-visual img {
  width: 100%;
  display: block;
}

.collaboration-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Pricing Grid */
.pricing {
  background-color: var(--slate-50);
}

.pricing-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}

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

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--slate-300);
}

.pricing-card.recommended {
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-lg), 0 20px 40px -10px rgba(37, 99, 235, 0.08);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-card-header {
  margin-bottom: 28px;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13.5px;
  color: var(--slate-500);
  line-height: 1.5;
}

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

.plan-price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-right: 2px;
}

.plan-price-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.plan-details-list {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
  border-top: 1px solid var(--slate-100);
  padding-top: 24px;
}

.plan-details-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--slate-600);
}

.plan-details-item i {
  color: var(--secondary);
  margin-top: 3px;
}

.plan-details-item.disabled {
  color: var(--slate-300);
  text-decoration: line-through;
}

/* Pricing Interactive Simulator styles */
.calc-toggle-box {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.calc-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  background-color: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.calc-toggle-btn:hover {
  background-color: var(--slate-200);
}

/* Simulator grid inside collapsible */
.collapsible-calculator {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.collapsible-calculator.open {
  margin-top: 40px;
  border-top: 1px solid var(--slate-100);
  padding-top: 40px;
}

.pricing-card-wrapper {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .pricing-card-wrapper { grid-template-columns: 1.1fr 1fr; }
}

.pricing-selector-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selector-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.selector-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

.custom-select-wrapper {
  position: relative;
}

.custom-select {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--slate-800);
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}

.custom-select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.custom-select-wrapper::after {
  content: '▼';
  font-size: 10px;
  color: var(--slate-500);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Pricing switcher tabs */
.period-tabs {
  display: flex;
  background-color: var(--slate-100);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.period-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--slate-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.period-tab.active {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.discount-badge {
  font-size: 9px;
  background-color: var(--success);
  color: var(--white);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  margin-top: 2px;
}

/* Simulator results card */
.pricing-result-side {
  background: radial-gradient(100% 100% at 0% 0%, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.98) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.pricing-plan-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.price-display {
  margin-bottom: 28px;
}

.price-val {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}

.price-val .price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-right: 4px;
}

.price-val #outPrice {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
}

.price-val .price-period {
  font-size: 16px;
  color: var(--slate-300);
  margin-left: 6px;
}

.price-avg-desc {
  font-size: 12.5px;
  color: var(--slate-300);
}

.plan-features-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features-list .plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--slate-200);
}

.plan-features-list .plan-feature-item i {
  color: #34d399;
}

/* Payment gateway logotypes styles */
.payment-methods {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.payment-methods-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--slate-300);
  margin-bottom: 12px;
}

.payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.payment-logos img {
  height: 20px;
  filter: brightness(0) invert(1) opacity(0.8);
}

.bank-details {
  font-size: 11px;
  color: var(--slate-300);
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: var(--radius-md);
}

/* Social Proof / Testimonials */
.testimonials {
  background-color: var(--white);
}

.testimonial-card {
  background-color: var(--tertiary);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  background-color: var(--white);
  box-shadow: var(--shadow-ambient);
}

.testimonial-quote {
  font-size: 14.5px;
  color: var(--slate-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-title);
}

.testimonial-info h5 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 12px;
  color: var(--slate-500);
}

/* Accordion FAQs */
.faq {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--slate-300);
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-sm);
}

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

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.faq-icon {
  font-size: 12px;
  color: var(--slate-500);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-content {
  padding: 0 32px 28px;
  color: var(--slate-600);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Creator Corner */
.creator-section {
  background-color: var(--white);
}

.creator-visual-wrap {
  text-align: center;
}

.creator-avatar-container {
  display: inline-block;
  padding: 16px;
  background-color: var(--slate-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.creator-avatar-container img {
  border-radius: var(--radius-lg);
  max-width: 200px;
}

/* final CTA Banner styles */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(100% 100% at 50% 100%, rgba(37, 99, 235, 0.08) 0%, rgba(248, 250, 252, 0) 100%), #0f172a;
  color: var(--white);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-title {
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.cta-desc {
  color: var(--slate-300);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Footer style details */
footer {
  background-color: #090d16;
  padding: 80px 0 40px;
  color: var(--slate-300);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); }
}

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

.footer-desc {
  font-size: 13.5px;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 13.5px;
  color: var(--slate-400);
}

.footer-link:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--slate-500);
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

/* Animations */
.animate-fade-up {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
  transform: translateY(0);
  opacity: 1;
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
