/* ============================================
   TashMetrics — Landing Page Styles
   ============================================ */

:root {
  --blue-50:  #eef3ff;
  --blue-100: #dbe6ff;
  --blue-500: #799eff;
  --blue-600: #0d3284;
  --blue-700: #0a2566;

  --gold-400: #ffde73;
  --gold-500: #ffbc4c;
  --gold-600: #e8a030;

  --green-500: #10B981;
  --red-500:   #EF4444;

  --ink-900: #0d3284;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;

  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow-md: 0 4px 12px rgba(15,23,42,.08);
  --shadow-lg: 0 12px 32px rgba(15,23,42,.10);
  --shadow-xl: 0 24px 64px rgba(15,23,42,.14);

  --container: 1200px;
  --container-narrow: 900px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-700); }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  padding: 8px 16px;
  background: var(--ink-900);
  color: white;
  z-index: 9999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

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

.btn-primary {
  background: var(--blue-600);
  color: white;
  box-shadow: 0 4px 14px rgba(13,50,132,.3);
}
.btn-primary:hover {
  background: var(--blue-700);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13,50,132,.38);
}

.btn-outline {
  background: white;
  color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn-outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-700);
}
.btn-ghost:hover {
  background: var(--ink-100);
  color: var(--ink-900);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--ink-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
  position: relative;
}

.nav-desktop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-desktop .nav-list {
  display: flex;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover { color: var(--blue-600); }

.header-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-800);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--ink-200);
  background: white;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile a {
  display: block;
  padding: 12px 0;
  color: var(--ink-800);
  font-weight: 500;
  border-bottom: 1px solid var(--ink-100);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  padding: 14px;
}

@media (max-width: 960px) {
  .nav-desktop, .header-ctas { display: none; }
  .nav-toggle { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse at top right, rgba(121,158,255,0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(255,222,115,0.22), transparent 60%),
    linear-gradient(180deg, var(--ink-50) 0%, #fff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(120deg, var(--blue-600), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-600);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-600);
}

.hero-bullets svg { color: var(--green-500); }

/* HERO VISUAL / DASHBOARD MOCK */
.hero-visual {
  position: relative;
}

.dashboard-mock {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 600ms ease;
}

.dashboard-mock:hover { transform: rotate(0); }

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-200);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }

.dashboard-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-500);
  font-weight: 500;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 380px;
}

.mock-sidebar {
  background: var(--ink-900);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), var(--gold-500));
  margin-bottom: 16px;
}

.mock-nav-item {
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
}
.mock-nav-item.active {
  background: var(--blue-500);
}

.mock-main {
  padding: 24px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-stat {
  padding: 14px;
  background: var(--ink-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-100);
}

.mock-stat-label {
  font-size: 0.7rem;
  color: var(--ink-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mock-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-top: 4px;
}
.mock-stat-trend {
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 4px;
}
.mock-stat-trend.up { color: var(--green-500); }

.mock-chart {
  background: var(--ink-50);
  border-radius: var(--radius-md);
  padding: 12px;
  height: 120px;
}

.mock-chart svg {
  width: 100%;
  height: 100%;
}

.mock-chats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-100);
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  flex-shrink: 0;
}

.mock-chat-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mock-chat-name { height: 8px; width: 60%; background: var(--ink-200); border-radius: 4px; }
.mock-chat-msg { height: 6px; width: 80%; background: var(--ink-100); border-radius: 4px; }
.mock-chat-msg.short { width: 40%; }

.mock-badge {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
}
.mock-badge.badge-gold { background: #FEF3C7; color: #92400E; }
.mock-badge.badge-green { background: #D1FAE5; color: #065F46; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.card-notif {
  top: 10%;
  left: -4%;
  animation-delay: 0s;
}

.card-metric {
  bottom: 10%;
  right: -4%;
  animation-delay: 1.5s;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.notif-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.notif-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-900);
}
.notif-sub {
  font-size: 0.75rem;
  color: var(--ink-500);
}

.metric-label {
  font-size: 0.7rem;
  color: var(--ink-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-500);
}

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

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: 48px 0 80px; }
  .floating-card { display: none; }
  .dashboard-mock { transform: none; }
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--ink-600);
  margin: 0;
}

/* ============ PROBLEM/SOLUTION ============ */
.problem-solution {
  padding: 80px 0;
  background: var(--ink-50);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.ps-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
}

.ps-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.ps-problem::before { background: linear-gradient(90deg, #EF4444, #F97316); }
.ps-solution::before { background: linear-gradient(90deg, #10B981, #0d3284); }

.ps-card h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 1.75rem;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.ps-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ps-tag-red { background: #FEE2E2; color: #991B1B; }
.ps-tag-green { background: #D1FAE5; color: #065F46; }

.ps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  color: var(--ink-700);
}

.ps-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ps-title {
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1rem;
  line-height: 1.3;
}

.ps-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-600);
}

.ps-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ps-icon-x { background: #FEE2E2; color: var(--red-500); }
.ps-icon-check { background: #D1FAE5; color: var(--green-500); }

@media (max-width: 820px) {
  .ps-grid { grid-template-columns: 1fr; }
  .ps-card { padding: 2rem 1.5rem; }
  .ps-card h2 { font-size: 1.35rem; }
}

/* ============ FEATURES ============ */
.features {
  padding: 56px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all var(--transition);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: white;
}

.icon-blue   { background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); }
.icon-gold   { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--blue-700); }
.icon-navy   { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); }
.icon-amber  { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); }
.icon-sky    { background: linear-gradient(135deg, var(--blue-500), var(--gold-500)); }
.icon-cream  { background: linear-gradient(135deg, var(--gold-400), var(--blue-500)); color: var(--blue-700); }

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card > p { color: var(--ink-600); margin-bottom: 1rem; }

.feature-bullets li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============ STATS STRIP ============ */
.stats-strip {
  padding: 44px 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

@media (max-width: 820px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 56px 0;
  background: var(--ink-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold-500);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-800);
  flex: 1;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-name { font-weight: 600; color: var(--ink-900); }
.author-role { font-size: 0.85rem; color: var(--ink-500); }

@media (max-width: 820px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============ PRICING ============ */
.pricing {
  padding: 56px 0;
  background: var(--ink-50);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-option {
  font-weight: 600;
  color: var(--ink-500);
  cursor: pointer;
  transition: color var(--transition);
}
.toggle-option.active { color: var(--ink-900); }
.toggle-option em {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--green-500);
  color: white;
  font-style: normal;
  font-size: 0.7rem;
  border-radius: 999px;
  font-weight: 700;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--ink-300);
  border-radius: 999px;
  position: relative;
  transition: background var(--transition);
  padding: 0;
}

.toggle-switch.active { background: var(--blue-500); }

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-knob { transform: translateX(24px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--ink-100);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover { border-color: var(--ink-300); }

.pricing-featured {
  border-color: var(--blue-500);
  box-shadow: 0 20px 50px rgba(13,50,132,0.16);
  transform: scale(1.02);
}
.pricing-featured:hover { border-color: var(--blue-600); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.plan-name { margin-bottom: 0.5rem; font-size: 1.4rem; }
.plan-desc { color: var(--ink-600); font-size: 0.9rem; min-height: 2.5rem; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 1rem 0 1.5rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.price-period {
  color: var(--ink-500);
  font-weight: 500;
}

.plan-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.plan-features li {
  padding: 4px 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink-600);
}

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
}

/* ============ FAQ ============ */
.faq {
  padding: 56px 0;
  background: white;
}

.faq-wrap { max-width: var(--container-narrow); }

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

.faq-item {
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  background: white;
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-500);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px 20px;
  color: var(--ink-600);
  line-height: 1.6;
}
.faq-answer p { margin: 0; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 56px 0;
  background: var(--ink-50);
}

.cta-box {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: white;
  border-radius: var(--radius-2xl);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,188,76,0.22), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,222,115,0.14), transparent 40%);
  pointer-events: none;
}

.cta-box > * { position: relative; }

.cta-box h2 {
  color: white;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-box p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-box .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.3);
}
.cta-box .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.92;
}
.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-trust svg {
  color: var(--gold-400);
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 40px 0;
  background: var(--ink-800);
  color: var(--ink-400);
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 54px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--ink-400);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .footer-simple {
    justify-content: center;
    text-align: center;
  }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-card { animation: none; }
  html { scroll-behavior: auto; }
}
