/* ===================================
   GROWISEV - Sistema de Diseño v1.0
   Agencia de Crecimiento B2B
   =================================== */

/* ---- FONTS ---- */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---- VARIABLES CSS ---- */
:root {
  /* Colores marca */
  --color-primary: #1B5E3B;
  --color-primary-dark: #0F3D26;
  --color-primary-light: #2D8B5A;
  --color-secondary: #F59E0B;
  --color-secondary-dark: #D97706;
  --color-accent: #3B82F6;
  --color-accent-light: #60A5FA;
  --color-dark: #1F2937;
  --color-dark-lighter: #374151;
  --color-light: #F9FAFB;
  --color-light-gray: #F3F4F6;
  --color-border: #E5E7EB;
  --color-text: #111827;
  --color-text-secondary: #6B7280;
  --color-white: #FFFFFF;

  /* Tipografía */
  --font-headline: 'Satoshi', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Espaciado */
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  --container-max: 1200px;
  --container-padding: 24px;

  /* Bordes */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px 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-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.3);

  /* Transiciones */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-out;
  --transition-slow: 500ms ease-out;

  /* Z-index */
  --z-base: 1;
  --z-nav: 100;
  --z-sticky: 200;
  --z-modal: 300;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

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

.text-secondary {
  color: var(--color-secondary);
}

.text-accent {
  color: var(--color-accent);
}

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

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 64px; }

/* ---- BOTONES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-small {
  padding: 12px 24px;
  font-size: 14px;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes growWidth {
  from { width: 0; }
  to { width: 100%; }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.6); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar.scrolled .nav-logo-text,
.navbar.scrolled .nav-link {
  color: var(--color-text);
}

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

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

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-white);
  letter-spacing: -0.5px;
  transition: color var(--transition-base);
}

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

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.nav-cta {
  display: none;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #1B5E3B 0%, #0F3D26 50%, #1F2937 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

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

.hero-headline {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.8px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-headline span {
  color: var(--color-secondary);
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-trust {
  margin-top: 48px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-trust-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-logo {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.hero-image {
  position: relative;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}

.hero-image-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: linear-gradient(135deg, rgba(59,130,246,0.2) 0%, rgba(27,94,59,0.2) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-main svg {
  width: 60%;
  height: 60%;
  opacity: 0.9;
}

.hero-float-card {
  position: absolute;
  padding: 16px 20px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 50%;
  right: -12%;
  animation-delay: 1s;
}

.hero-float-card.card-3 {
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

.hero-float-card-value {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 24px;
  color: var(--color-primary);
}

.hero-float-card-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  animation: fadeIn 1s ease-out 1.2s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ---- SECCIONES GENERALES ---- */
.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--color-light);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(27, 94, 59, 0.1);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

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

/* ---- LOGO BAR ---- */
.logo-bar {
  padding: 40px 0;
  background: var(--color-light-gray);
  border-bottom: 1px solid var(--color-border);
}

.logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.logo-bar-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-bar-item {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark-lighter);
  letter-spacing: 0.5px;
}

/* ---- PROBLEM ---- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.problem-card {
  padding: 40px 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.problem-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-secondary);
}

.problem-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ---- SOLUTION ---- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-content {
  max-width: 480px;
}

.solution-title {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.solution-text {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-stats {
  display: flex;
  gap: 40px;
}

.solution-stat {
  display: flex;
  flex-direction: column;
}

.solution-stat-value {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-primary);
}

.solution-stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

.solution-image {
  position: relative;
}

.solution-image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(27,94,59,0.05) 0%, rgba(59,130,246,0.05) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.solution-image-wrapper svg {
  width: 50%;
  height: 50%;
  opacity: 0.6;
}

/* ---- STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.step-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.step-connector {
  position: absolute;
  top: 72px;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--color-border), transparent);
}

/* ---- FEATURES (Bento) ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: transparent;
}

.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border: none;
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-text {
  color: var(--color-white);
}

.feature-card.featured .feature-text {
  opacity: 0.85;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 94, 59, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-card.featured .feature-icon {
  background: rgba(255,255,255,0.15);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.feature-card.featured .feature-icon svg {
  color: var(--color-white);
}

.feature-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27,94,59,0.08) 0%, rgba(59,130,246,0.08) 100%);
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.service-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ---- FOUNDER ---- */
.founder {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  color: var(--color-white);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.founder-image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2) 0%, rgba(27,94,59,0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.1);
}

.founder-image-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.6;
}

.founder-content {
  max-width: 480px;
}

.founder-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.founder-quote {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

.founder-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-name {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
}

.founder-role {
  font-size: 14px;
  color: var(--color-secondary);
  margin-top: 4px;
}

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

.testimonial-card {
  padding: 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-company {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 8px 0;
}

.faq-question-text {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

.faq-answer-text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ---- CTA ---- */
.cta-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.4px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.cta-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-white);
}

.footer-brand-text {
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 15px;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

/* ---- STICKY CTA (Mobile) ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 12px 16px;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--color-border);
}

.sticky-cta-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sticky-cta-text {
  flex: 1;
}

.sticky-cta-label {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.sticky-cta-value {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .hero-headline {
    font-size: 48px;
  }

  .solution-grid {
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-logo-text {
    font-size: 20px;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-subheadline {
    margin: 0 auto 32px;
    font-size: 18px;
  }

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

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

  .hero-image {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-float-card {
    display: none;
  }

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

  .problem-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solution-content {
    max-width: 100%;
  }

  .solution-stats {
    justify-content: center;
  }

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

  .feature-card.featured {
    grid-column: span 1;
  }

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

  .founder-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-content {
    max-width: 100%;
    order: -1;
  }

  .founder-quote {
    font-size: 24px;
  }

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

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .sticky-cta {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .step-connector {
    display: none;
  }
}
