/* ===== UZIMA - Premium Medical Platform Stylesheet ===== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  /* Colors */
  --gold: #C8A85C;
  --gold-light: #E8D5A0;
  --gold-dark: #9A7D3A;
  --teal: #1B9E8C;
  --teal-light: #2ED4BC;
  --teal-dark: #14756A;
  --bg-primary: #0A0A0F;
  --bg-secondary: #111118;
  --bg-card: #16161F;
  --bg-card-hover: #1C1C28;
  --text-primary: #F0EDE6;
  --text-secondary: #9B97A0;
  --text-muted: #6B6772;
  --border-color: rgba(200, 168, 92, 0.12);
  --border-hover: rgba(200, 168, 92, 0.3);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #C8A85C, #E8D5A0);
  --gradient-teal: linear-gradient(135deg, #1B9E8C, #2ED4BC);
  --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0) 0%, rgba(10,10,15,0.8) 50%, #0A0A0F 100%);
  --gradient-card: linear-gradient(145deg, rgba(200,168,92,0.05) 0%, rgba(27,158,140,0.05) 100%);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(200,168,92,0.15);
  --shadow-teal: 0 8px 32px rgba(27,158,140,0.15);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  background: rgba(200, 168, 92, 0.08);
  border: 1px solid rgba(200, 168, 92, 0.2);
  color: var(--gold);
}

.section-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.section-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Animated Background Elements ===== */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--gold {
  width: 500px;
  height: 500px;
  background: rgba(200, 168, 92, 0.06);
  top: -200px;
  right: -200px;
  animation: float-glow 15s ease-in-out infinite;
}

.bg-glow--teal {
  width: 400px;
  height: 400px;
  background: rgba(27, 158, 140, 0.05);
  bottom: 20%;
  left: -150px;
  animation: float-glow 20s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-base);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

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

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

.navbar__logo img {
  height: 42px;
  width: auto;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-base);
  border-radius: 2px;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-gold);
  color: #0A0A0F;
}

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

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

.btn--primary:hover::before {
  left: 100%;
}

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

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 92, 0.05);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 16px;
}

.btn--ghost:hover {
  color: var(--gold-light);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn svg, .btn i {
  font-size: 1.1em;
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-base);
  border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 800px 600px at 70% 30%, rgba(200, 168, 92, 0.08), transparent),
    radial-gradient(ellipse 600px 500px at 30% 70%, rgba(27, 158, 140, 0.06), transparent);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(200, 168, 92, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 92, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  background: rgba(27, 158, 140, 0.1);
  border: 1px solid rgba(27, 158, 140, 0.25);
  color: var(--teal-light);
  animation: fadeInUp 0.8s ease;
}

.hero__badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse-dot 1.5s infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero__title .gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title .teal-text {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero__stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero__stat {
  position: relative;
  padding-left: 16px;
}

.hero__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: var(--gradient-gold);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s backwards;
}

.hero__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(200,168,92,0.3), transparent 50%, rgba(27,158,140,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

.hero__image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.hero__floating-card {
  position: absolute;
  background: rgba(22, 22, 31, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.hero__floating-card--top {
  top: -20px;
  right: -10px;
}

.hero__floating-card--bottom {
  bottom: 30px;
  left: -30px;
  animation-delay: -3s;
}

.hero__floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero__floating-icon--gold {
  background: rgba(200, 168, 92, 0.15);
  color: var(--gold);
}

.hero__floating-icon--teal {
  background: rgba(27, 158, 140, 0.15);
  color: var(--teal-light);
}

.hero__floating-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__floating-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

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

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

/* ===== Features Section ===== */
.features {
  padding: var(--section-padding);
  position: relative;
}

.features__header {
  text-align: center;
  margin-bottom: 80px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  position: relative;
}

.feature-card__icon--prevention {
  background: rgba(27, 158, 140, 0.12);
  color: var(--teal-light);
}

.feature-card__icon--detection {
  background: rgba(200, 168, 92, 0.12);
  color: var(--gold);
}

.feature-card__icon--alert {
  background: rgba(232, 106, 106, 0.12);
  color: #E86A6A;
}

.feature-card__icon--care {
  background: rgba(106, 140, 232, 0.12);
  color: #6A8CE8;
}

.feature-card__image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.feature-card:hover .feature-card__image img {
  transform: scale(1.05);
}

.feature-card__title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card__description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-card__tag {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(200, 168, 92, 0.06);
  border: 1px solid rgba(200, 168, 92, 0.1);
  color: var(--text-muted);
}

/* ===== How It Works Section ===== */
.how-it-works {
  padding: var(--section-padding);
  position: relative;
  background: var(--bg-secondary);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 80px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
  opacity: 0.2;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.step:nth-child(1) .step__number {
  background: rgba(27, 158, 140, 0.1);
  border: 2px solid rgba(27, 158, 140, 0.3);
  color: var(--teal-light);
}

.step:nth-child(2) .step__number {
  background: rgba(200, 168, 92, 0.1);
  border: 2px solid rgba(200, 168, 92, 0.3);
  color: var(--gold);
}

.step:nth-child(3) .step__number {
  background: rgba(232, 106, 106, 0.1);
  border: 2px solid rgba(232, 106, 106, 0.3);
  color: #E86A6A;
}

.step:nth-child(4) .step__number {
  background: rgba(106, 140, 232, 0.1);
  border: 2px solid rgba(106, 140, 232, 0.3);
  color: #6A8CE8;
}

.step:hover .step__number {
  transform: scale(1.1);
}

.step__icon {
  font-size: 1.5rem;
}

.step__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Stats Section ===== */
.stats {
  padding: var(--section-padding);
  position: relative;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: var(--transition-base);
}

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

.stat-card:hover::after {
  opacity: 1;
}

.stat-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== Audience Section (Pour qui?) ===== */
.audience {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.audience__header {
  text-align: center;
  margin-bottom: 80px;
}

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

.audience-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 48px 36px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition-base);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

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

.audience-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.audience-card:nth-child(1) .audience-card__icon {
  background: rgba(27, 158, 140, 0.12);
  color: var(--teal-light);
}

.audience-card:nth-child(2) .audience-card__icon {
  background: rgba(200, 168, 92, 0.12);
  color: var(--gold);
}

.audience-card:nth-child(3) .audience-card__icon {
  background: rgba(106, 140, 232, 0.12);
  color: #6A8CE8;
}

.audience-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.audience-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: var(--section-padding);
  position: relative;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 80px;
}

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

.testimonial-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0A0A0F;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== CTA Section ===== */
.cta {
  padding: var(--section-padding);
  position: relative;
}

.cta__card {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 0%, rgba(200, 168, 92, 0.08), transparent),
    radial-gradient(ellipse 500px 300px at 70% 100%, rgba(27, 158, 140, 0.06), transparent);
}

.cta__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

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

.footer__brand {
  max-width: 320px;
}

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

.footer__logo img {
  height: 38px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition-base);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer__copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__content { max-width: 100%; }
  
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  
  .hero__visual { max-width: 600px; margin: 0 auto; }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps::before { display: none; }
  
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .audience__grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }
  
  .navbar__links { display: none; }
  .navbar__cta .btn--ghost { display: none; }
  .navbar__toggle { display: flex; }
  
  /* Mobile menu */
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    gap: 16px;
  }
  
  .hero__title {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .stats__grid {
    grid-template-columns: 1fr;
  }
  
  .cta__card {
    padding: 48px 24px;
  }
  
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .feature-card {
    padding: 28px;
  }
  
  .hero__floating-card { display: none; }
}
