/* ==============================================
   LUSTRE LANDING PAGE — styles.css
   www.simplylustre.com
   ============================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1E293B;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Screen-reader only ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden { display: none !important; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366F1;
  margin-bottom: 12px;
}
.section-label.light { color: #A5B4FC; }

.section-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-headline.light { color: #fff; }

.section-sub {
  font-size: 1.0625rem;
  color: #475569;
  max-width: 600px;
  line-height: 1.7;
}
.section-sub.light { color: #CBD5E1; max-width: 560px; }
.section-sub a { color: #6366F1; text-decoration: underline; }
.section-sub a:hover { color: #4F46E5; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #4F46E5;
  color: #fff;
  border: 2px solid transparent;
}
.btn-primary:hover { background: #4338CA; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #4F46E5;
  border: 2px solid #C7D2FE;
}
.btn-outline:hover { border-color: #4F46E5; background: #EEF2FF; }

.btn-ghost {
  background: transparent;
  color: #475569;
  border: 2px solid transparent;
}
.btn-ghost:hover { background: #F1F5F9; color: #1E293B; }

.btn-white {
  background: #fff;
  color: #4F46E5;
  border: 2px solid transparent;
}
.btn-white:hover { background: #EEF2FF; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,255,255,0.25); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }


/* =============================================
   NAVIGATION
   ============================================= */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark { color: #4F46E5; font-size: 1.1em; }
.logo-text { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  border-radius: 6px;
  transition: all 0.12s;
}
.nav-links a:hover { color: #0F172A; background: #F8FAFC; }

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

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: all 0.2s;
}


/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 80px 0 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #fff 60%);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #EEF2FF;
  border: 1px solid #C7D2FE;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4F46E5;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #4F46E5;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-headline {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: #475569;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.hero-small-print {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-bottom: 56px;
}

/* ---- Mockup ---- */
.hero-mockup { width: 100%; max-width: 960px; }

.mockup-browser {
  background: #fff;
  border-radius: 14px 14px 0 0;
  border: 1px solid #E2E8F0;
  border-bottom: none;
  box-shadow: 0 -8px 40px rgba(15,23,42,0.08), 0 0 0 1px rgba(15,23,42,0.04);
  overflow: hidden;
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.browser-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.browser-dot.red { background: #FC5F5A; }
.browser-dot.amber { background: #FDBC40; }
.browser-dot.green { background: #34C749; }
.browser-address {
  flex: 1;
  font-size: 0.75rem;
  color: #94A3B8;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 5px;
  padding: 3px 10px;
  margin-left: 4px;
}

.mockup-screen {
  display: flex;
  min-height: 380px;
}

.mockup-sidebar {
  width: 180px;
  flex-shrink: 0;
  background: #0F172A;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-logo {
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0 8px 16px;
  letter-spacing: -0.02em;
}
.sidebar-item {
  padding: 8px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94A3B8;
  border-radius: 6px;
  cursor: default;
  transition: background 0.1s;
}
.sidebar-item.active {
  background: #1E293B;
  color: #fff;
}

.mockup-content {
  flex: 1;
  padding: 20px 24px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.mockup-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-greeting {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
}
.mockup-date {
  font-size: 0.8rem;
  color: #94A3B8;
}

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.kpi-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 14px;
}
.kpi-label {
  font-size: 0.7rem;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.kpi-delta {
  font-size: 0.7rem;
  color: #94A3B8;
  margin-top: 2px;
}
.kpi-delta.positive { color: #10B981; }

.mockup-quotes {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}
.quotes-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0F172A;
  padding: 10px 14px;
  border-bottom: 1px solid #F1F5F9;
}
.quote-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid #F8FAFC;
  font-size: 0.8rem;
}
.quote-row:last-child { border-bottom: none; }
.quote-client { flex: 1; font-weight: 500; color: #1E293B; }
.quote-amount { color: #475569; white-space: nowrap; font-weight: 600; }
.quote-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}
.quote-badge.accepted { background: #DCFCE7; color: #15803D; }
.quote-badge.viewed { background: #FEF9C3; color: #854D0E; }
.quote-badge.sent { background: #EEF2FF; color: #4338CA; }


/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.social-proof-bar {
  background: #0F172A;
  padding: 36px 0;
}

.proof-label {
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 24px;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
  text-align: center;
}
.proof-stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-stat span {
  font-size: 0.8125rem;
  color: #64748B;
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: #1E293B;
  flex-shrink: 0;
}


/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem {
  padding: 100px 0;
  text-align: center;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 48px 0 56px;
  text-align: left;
}

.problem-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 28px;
}
.problem-icon { font-size: 1.75rem; margin-bottom: 14px; }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: #0F172A; margin-bottom: 10px; }
.problem-card p { font-size: 0.9rem; color: #64748B; line-height: 1.6; }

.problem-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.problem-cta-text {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F172A;
}


/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 100px 0;
  background: #F8FAFC;
}

.features .section-sub { margin-bottom: 56px; }

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

.feature-block-large { grid-column: span 1; }

.feature-block {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
}

.feature-block-large {
  padding: 36px;
}

.feature-block h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0F172A;
  margin: 16px 0 10px;
  line-height: 1.3;
}
.feature-block p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.65;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrapper.indigo { background: #EEF2FF; color: #4F46E5; }
.feature-icon-wrapper.cyan { background: #ECFEFF; color: #0891B2; }
.feature-icon-wrapper.violet { background: #F5F3FF; color: #7C3AED; }
.feature-icon-wrapper.green { background: #F0FDF4; color: #16A34A; }
.feature-icon-wrapper.amber { background: #FFFBEB; color: #D97706; }
.feature-icon-wrapper.slate { background: #F1F5F9; color: #475569; }

.feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 0.875rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓';
  color: #4F46E5;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* =============================================
   UK-NATIVE
   ============================================= */
.uk-native {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E40AF 100%);
  padding: 100px 0;
}

.uk-native-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.uk-native-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uk-native-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: #E2E8F0;
  font-weight: 500;
}
.uk-native-list li svg { color: #A5B4FC; flex-shrink: 0; }

.uk-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.uk-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 24px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  min-width: 200px;
}
.uk-badge-icon { font-size: 1.5rem; }


/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 56px 0 48px;
  text-align: left;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #4F46E5;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #EEF2FF;
}

.step-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}
.step-content p { font-size: 0.9rem; color: #64748B; line-height: 1.65; }

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #C7D2FE, #A5B4FC);
  align-self: flex-start;
  margin-top: 27px;
}

.how-cta { display: flex; justify-content: center; }


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: #F8FAFC;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card blockquote p {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}
.testimonial-card blockquote p::before {
  content: '\201C';
  font-size: 3rem;
  color: #E0E7FF;
  line-height: 0;
  position: relative;
  top: 16px;
  margin-right: 4px;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card figcaption strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0F172A;
}
.testimonial-card figcaption span {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 2px;
}


/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 100px 0;
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  background: #F1F5F9;
  border-radius: 10px;
  padding: 4px;
  margin: 32px 0 48px;
  gap: 4px;
}

.toggle-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  color: #64748B;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-btn.active { background: #fff; color: #0F172A; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.save-badge {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: box-shadow 0.15s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(15,23,42,0.08); }

.pricing-card-popular {
  border-color: #4F46E5;
  box-shadow: 0 0 0 1px #4F46E5, 0 8px 24px rgba(79,70,229,0.15);
}

.pricing-card-enterprise {
  background: linear-gradient(145deg, #F8FAFC, #F1F5F9);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4F46E5;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header { margin-bottom: 20px; }
.pricing-card-header h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}
.pricing-card-header p {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.price-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: #0F172A;
  letter-spacing: -0.04em;
}
.price-period { font-size: 0.9rem; color: #94A3B8; font-weight: 500; }

.pricing-billing {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-bottom: 20px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.9rem;
  padding: 10px 16px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pricing-features li {
  font-size: 0.8375rem;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.pricing-features li span { color: #4F46E5; font-weight: 700; flex-shrink: 0; }
.pricing-features li strong { font-weight: 600; color: #1E293B; }

.pricing-footer {
  margin-top: 32px;
  font-size: 0.875rem;
  color: #94A3B8;
}
.pricing-footer a { color: #4F46E5; text-decoration: underline; }


/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison {
  padding: 100px 0;
  background: #F8FAFC;
  text-align: center;
}

.comparison-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  background: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table thead {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.col-lustre { color: #4F46E5; }

.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  color: #475569;
  border-bottom: 1px solid #F1F5F9;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1E293B;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #FAFAFA; }

.comparison-table .col-lustre { background: #FAFBFF; }
.comparison-table thead .col-lustre { background: #EEF2FF; }

.check { color: #16A34A; font-size: 1.1rem; font-weight: 900; }
.cross { color: #DC2626; font-size: 1.1rem; font-weight: 900; }
.partial { color: #D97706; font-size: 1.1rem; font-weight: 900; }

.comparison-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #94A3B8;
}


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

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

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

.faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1E293B;
  text-align: left;
  gap: 16px;
  transition: color 0.1s;
}
.faq-question:hover { color: #4F46E5; }
.faq-question[aria-expanded="true"] { color: #4F46E5; }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.7;
}
.faq-answer a { color: #4F46E5; text-decoration: underline; }


/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E40AF 100%);
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner { max-width: 680px; margin: 0 auto; }

.final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.0625rem;
  color: #C7D2FE;
  line-height: 1.65;
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.final-cta-small {
  font-size: 0.8125rem;
  color: #6366F1;
  margin-bottom: 0;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0F172A;
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1E293B;
}

.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-mark { color: #6366F1; }

.footer-brand p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-legal {
  font-size: 0.8rem !important;
  color: #475569 !important;
  line-height: 1.5 !important;
}

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

.footer-nav-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  margin-bottom: 16px;
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a {
  font-size: 0.875rem;
  color: #94A3B8;
  transition: color 0.1s;
}
.footer-nav-col a:hover { color: #fff; }


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .uk-native-inner { grid-template-columns: 1fr; }
  .uk-badge-stack { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-ctas .btn-ghost { display: none; }
  .nav-mobile-toggle { display: flex; }

  /* Hero */
  .hero { padding: 60px 0 0; }
  .hero-headline { font-size: 2.25rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .mockup-sidebar { display: none; }
  .mockup-kpis { grid-template-columns: repeat(2, 1fr); }

  /* Sections */
  .features-grid { grid-template-columns: 1fr; }
  .feature-block-large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .comparison-table { min-width: 600px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, #C7D2FE, #A5B4FC); }
  .step { padding: 0; max-width: 400px; }

  /* Social proof */
  .proof-stats { gap: 20px; }
  .proof-stat { padding: 0 20px; }
  .proof-divider { display: none; }

  /* UK native */
  .uk-native-inner { gap: 40px; }

  /* Final CTA */
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .mockup-kpis { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   FOCUS STYLES (ACCESSIBILITY)
   ============================================= */
:focus-visible {
  outline: 2px solid #4F46E5;
  outline-offset: 3px;
  border-radius: 4px;
}
