/* ===== VARIABLES ===== */
:root {
  --primary: #24119A;
  --primary-dark: #1a0b75;
  --primary-light: #3d2cbf;
  --gradient: linear-gradient(133deg, #24009A 0%, #ec684c 100%);
  --gradient-vibrant: linear-gradient(133deg, #24009A 0%, #ec684c 100%);
  --bg: #FEFDFF;
  --bg-card: #F8F7FA;
  --bg-dark: #0F0235;
  --text-primary: #0F0235;
  --text-secondary: #67666E;
  --text-light: #FEFDFF;
  --border-light: #E9E9E9;
  --white: #ffffff;
  --shadow-soft: rgba(0, 0, 0, 0.06) 0px 24px 44px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.15) 0px 4px 20px 0px;
  --shadow-layered: rgba(0, 0, 0, 0.118) 0px 0.6px 0.4px -1px, rgba(0, 0, 0, 0.11) 0px 2.3px 1.6px -2px, rgba(0, 0, 0, 0.08) 0px 10px 7px -3px;
  --radius-pill: 9999px;
  --radius-xl: 52px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 6px;
}

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

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

body {
  font-family: 'Inter', 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; cursor: pointer; }
a:hover { opacity: 0.85; }
ul { list-style: none; }
br.mobile-only { display: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Geist', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
h1 { font-size: 56px; letter-spacing: -0.03em; }
h2 { font-size: 42px; letter-spacing: -0.025em; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; font-weight: 500; }

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

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

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-vibrant);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  border-radius: inherit;
}
.btn-primary:hover { color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-medium); }
.btn-primary:hover::before { background: rgba(255,255,255,0.1); }

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-layered);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.btn-dark:hover { color: var(--white); transform: translateY(-1px); opacity: 0.9; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(36, 17, 154, 0.06);
  border: 1px solid rgba(36, 17, 154, 0.12);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-vibrant);
  flex-shrink: 0;
}

/* ===== HEADER ===== */
.header-spacer { height: 80px; }

.header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  z-index: 100;
  background: rgba(254, 253, 255, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(233, 233, 233, 0.6);
  box-shadow: var(--shadow-layered);
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand a { display: flex; align-items: center; }
.navbar-brand img { height: 44px; width: auto; }

.navbar-nav {
  display: none;
  width: 100%;
  text-align: center;
  padding: 16px 0 8px;
}
.navbar-nav.active { display: block; }

@media (min-width: 992px) {
  .navbar-nav {
    display: flex !important;
    width: auto;
    flex: 1;
    justify-content: center;
    padding: 0;
    gap: 4px;
  }
}

.nav-item { margin: 0; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  border-radius: var(--radius-sm);
}
.nav-link:hover { color: var(--text-primary); background: rgba(36, 17, 154, 0.04); }
.nav-link.active { color: var(--primary); }
.nav-icon { width: 15px; height: 15px; stroke-width: 2; opacity: 0.7; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
  width: 40px; height: 40px;
}
@media (min-width: 992px) { .nav-toggle { display: none; } }

.nav-btn-wrapper { display: none; }
@media (min-width: 992px) {
  .nav-btn-wrapper { display: flex; align-items: center; }
  .nav-btn-wrapper .btn { padding: 10px 20px; font-size: 14px; }
}

/* ===== HERO / BANNER ===== */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero-content { text-align: center; max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge { margin-bottom: 28px; }
.hero-title { margin-bottom: 24px; line-height: 1.1; }
.hero-title .gradient-text {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-image {
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
.hero-image-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 2px;
}
.hero-image-wrapper img { border-radius: calc(var(--radius-xl) - 2px); width: 100%; }

/* Hero background decoration */
.hero-bg-grid {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 140%;
  height: 500px;
  opacity: 0.04;
  z-index: 0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 70%);
}

/* Gradient glow orb */
.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(36, 17, 154, 0.08) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ===== BRANDS ===== */
.brands-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.brands-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 32px;
  opacity: 0.6;
}
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-item {
  height: 32px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
  cursor: pointer;
  filter: grayscale(1);
}
.brand-item:hover { opacity: 0.7; filter: grayscale(0); }
.brand-item img { height: 100%; width: auto; object-fit: contain; }

/* ===== FEATURE SECTION ===== */
.feature-section { position: relative; }
.feature-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.feature-header .badge { margin-bottom: 20px; }
.feature-header h2 { margin-bottom: 16px; }
.feature-header p { font-size: 17px; line-height: 1.7; }
.feature-icons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  padding: 28px 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.feature-icons-row img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .feature-icons-row { gap: 24px; padding: 20px; }
  .feature-icons-row img { width: 36px; height: 36px; }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .features-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-vibrant);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(36, 17, 154, 0.15);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-layered);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h4 { margin-bottom: 12px; font-size: 20px; }
.feature-card p { font-size: 15px; line-height: 1.7; }

/* ===== SPECIALITY / SPLIT SECTIONS ===== */
.split-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .split-section { flex-direction: row; gap: 80px; }
  .split-content { flex: 0 0 45%; }
  .split-image { flex: 1; }
  .split-section.reverse { flex-direction: row-reverse; }
}
.split-content .badge { margin-bottom: 20px; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { font-size: 17px; line-height: 1.8; }
.split-content .feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.split-content .feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-list-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(36, 17, 154, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
.feature-list-check svg { width: 14px; height: 14px; }
.feature-list-item p { font-size: 15px; margin: 0; color: var(--text-secondary); }
.feature-list-item strong { color: var(--text-primary); }

.split-image-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.split-image-wrapper img { border-radius: calc(var(--radius-lg) - 2px); width: 100%; }

/* ===== STATS ===== */
.stats-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 64px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: left; }
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-number .gradient-text {
  background: linear-gradient(133deg, #24009A 0%, #ec684c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.testimonials-header .badge { margin-bottom: 20px; }
.testimonials-header h2 { margin-bottom: 16px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-info h6 { margin-bottom: 2px; color: var(--text-primary); }
.testimonial-author-info p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ===== CTA ===== */
.cta-section { padding-bottom: 120px; }
.cta-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(36, 17, 154, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 17, 154, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  z-index: 0;
}
.cta-glow {
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(36, 17, 154, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { font-size: 17px; line-height: 1.7; max-width: 480px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(254, 253, 255, 0.6);
  padding: 80px 0 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 64px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col h5 {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
  color: rgba(254, 253, 255, 0.5);
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--text-light); }
.footer-brand p {
  color: rgba(254, 253, 255, 0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); }

.footer-bottom {
  border-top: 1px solid rgba(254, 253, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(254, 253, 255, 0.35); margin: 0; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(254, 253, 255, 0.1);
  color: rgba(254, 253, 255, 0.5);
  transition: all 0.3s ease;
}
.social-icons a:hover { border-color: rgba(254, 253, 255, 0.3); color: var(--text-light); }
.social-icons a svg { width: 16px; height: 16px; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero .badge { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 16px; font-size: 48px; }
.page-hero p { font-size: 18px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.about-image-section { padding: 0 0 80px; }
.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
.about-image-wrapper img { width: 100%; }

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) { .works-grid { grid-template-columns: 1fr 1fr; } }

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s ease;
  cursor: default;
}
.work-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.work-card h4 { margin-bottom: 12px; font-size: 20px; }
.work-card p { font-size: 15px; line-height: 1.7; }

.office-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  margin-top: 32px;
}
.office-card img { width: 48px; height: auto; flex-shrink: 0; }
.office-card h5 { margin-bottom: 4px; }
.office-card p { font-size: 14px; margin: 0; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-layered);
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  color: var(--text-primary);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36, 17, 154, 0.08);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(36, 17, 154, 0.06);
  border: 1px solid rgba(36, 17, 154, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h5 { margin-bottom: 4px; font-size: 16px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* ===== FEATURE VISUAL CARDS (chart images) ===== */
.feature-cards-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .feature-cards-visual { grid-template-columns: 1fr 1fr 1fr; } }

.feature-visual-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0 0 32px;
  transition: all 0.3s ease;
  cursor: default;
  overflow: hidden;
}
.feature-visual-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.feature-visual-image {
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.feature-visual-image img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.feature-visual-card h4 { padding: 0 28px; margin-bottom: 8px; font-size: 20px; }
.feature-visual-card p { padding: 0 28px; font-size: 15px; line-height: 1.7; }

/* ===== FOOTER LIGHT (Framer style) ===== */
.footer-light {
  background: var(--white);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-light);
}
.footer-light-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-light-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-light-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer-light-col h6 {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}
.footer-light-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-light-col ul li a {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-light-col ul li a:hover { color: var(--primary); }

.footer-light-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-light-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-light-social > span {
  font-size: 14px;
  color: var(--text-secondary);
}
.social-icons-light {
  display: flex;
  gap: 8px;
}
.social-icons-light a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.3s;
}
.social-icons-light a:hover { background: var(--primary); color: var(--white); }
.social-icons-light a svg { width: 16px; height: 16px; }

.footer-light-contact {
  display: flex;
  gap: 24px;
}
.footer-light-contact a {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.footer-light-contact a:hover { color: var(--primary); }

/* ===== FEATURED TESTIMONIAL ===== */
.featured-testimonial {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .featured-testimonial { flex-direction: row; gap: 0; }
}
.featured-testimonial-image {
  flex: 0 0 40%;
  overflow: hidden;
}
.featured-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-testimonial-content {
  flex: 1;
  padding: 48px 48px 48px 56px;
}
@media (max-width: 991px) {
  .featured-testimonial-content { padding: 32px 24px 40px; }
}
.featured-testimonial-brand { margin-bottom: 28px; }
.featured-testimonial-quote {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}
@media (max-width: 767px) {
  .featured-testimonial-quote { font-size: 19px; }
}
.featured-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 36px;
}
.featured-testimonial-author strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.featured-testimonial-author span {
  font-size: 14px;
  color: var(--text-secondary);
}
.featured-testimonial-stats {
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.featured-stat { display: flex; align-items: center; gap: 14px; }
.featured-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.featured-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  transition: opacity 0.3s;
}
#yearlyLabel { opacity: 0.4; }
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-light);
  border-radius: 28px;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  left: 3px; bottom: 3px;
  background: var(--bg-dark);
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--border-light); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr; } }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  box-shadow: var(--shadow-soft);
}
.pricing-card.popular {
  border-color: rgba(36, 17, 154, 0.25);
  box-shadow: var(--shadow-soft);
}
.popular-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: linear-gradient(133deg, #24009A, #ec684c);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
}
.pricing-card-header { margin-bottom: 28px; }
.pricing-card-header h4 { margin-bottom: 8px; font-size: 22px; }
.pricing-card-header p { font-size: 14px; line-height: 1.6; min-height: 44px; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period { font-size: 16px; color: var(--text-secondary); }

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 32px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 400;
}
.pricing-features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: #ec684c;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { margin-top: 48px; margin-bottom: 16px; }
.legal-content h3 { margin-top: 32px; margin-bottom: 12px; font-size: 22px; }
.legal-content h4 { margin-top: 24px; margin-bottom: 8px; font-size: 18px; }
.legal-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}
.legal-content ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.legal-content hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 48px 0;
}
.legal-content a { color: var(--primary); text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 9999;
  padding: 20px 0;
  transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: 14px; margin: 0; flex: 1; min-width: 200px; }
.cookie-content p a { color: var(--primary); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-buttons .btn { padding: 10px 20px; font-size: 13px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 2, 53, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-icon { color: #22c55e; margin-bottom: 20px; }
.modal-box h3 { margin-bottom: 12px; }
.modal-box p { margin-bottom: 28px; font-size: 15px; }

/* ===== LOGIN MODAL ===== */
.login-modal { text-align: left; max-width: 400px; }
.login-header { text-align: center; margin-bottom: 28px; }
.login-header h3 { margin-bottom: 6px; }
.login-header p { font-size: 14px; }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: var(--text-primary); }
.login-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.login-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
  outline: none;
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.login-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36,17,154,0.08);
}
.login-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Nav login btn on mobile */
@media (max-width: 991px) {
  .nav-btn-wrapper {
    display: flex !important;
    gap: 8px;
    padding: 12px 0 4px;
    width: 100%;
    justify-content: center;
  }
  .nav-btn-wrapper .btn { padding: 10px 18px; font-size: 14px; }
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  .section { padding: 72px 0; }
  .hero { padding: 60px 0 40px; }
  .stats-section { padding: 48px 24px; }
  .split-section { gap: 32px; }
}
@media (max-width: 767px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .header { width: calc(100% - 24px); top: 8px; }
  .hero-description br, .cta-content p br, .feature-header p br { display: none; }
  br.mobile-only { display: inline; }
  .stat-number { font-size: 36px; }
  .stats-section { padding: 36px 16px; }
  .cta-wrapper { padding: 48px 24px; }
  .footer { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
