/* ============================================
   EDNIUS - SHARED STYLES
   ============================================ */

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

:root {
  /* Brand Colors */
  --red: #b92a28;
  --red-dark: #9a2321;
  --charcoal: #171717;
  --charcoal-light: #232323;

  /* Backgrounds */
  --cream: #fafaf8;
  --white: #ffffff;

  /* Text */
  --gray-600: #52525b;
  --gray-400: #a1a1aa;

  /* Utility */
  --border: #e4e4e7;
  --success: #16a34a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--red);
  color: white;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.container-narrow {
  max-width: 980px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 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;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--charcoal);
}

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

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

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
  transition: background 0.3s;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  left: 0;
  transition: all 0.3s;
}

.mobile-toggle span::before {
  top: -7px;
}
.mobile-toggle span::after {
  top: 7px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
}

.btn-ghost:hover {
  color: var(--charcoal);
  background: var(--white);
}

.btn-primary {
  background: var(--charcoal);
  color: white;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.2);
}

.btn-accent {
  background: var(--red);
  color: white;
}

.btn-accent:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 42, 40, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  box-shadow: inset 0 0 0 1.5px var(--border);
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 1.5px var(--charcoal);
  background: var(--charcoal);
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-light {
  background: white;
  color: var(--red);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost-light {
  background: transparent;
  color: white;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.25);
}

.btn-ghost-light:hover {
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost-dark {
  background: transparent;
  color: white;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.25);
}

.btn-ghost-dark:hover {
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--red);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand .nav-logo svg {
  height: 32px;
  width: auto;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-col a.active {
  color: var(--red);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--red);
  color: white;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

/* ============================================
   INDEX PAGE - HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(185, 42, 40, 0.06) 0%,
    transparent 60%
  );
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(
    90deg,
    var(--border) 1px,
    transparent 1px
  );
  background-size: 120px 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero-description {
  font-size: 19px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.hero-avatar:first-child {
  margin-left: 0;
}
.hero-avatar:nth-child(1) {
  background: var(--charcoal);
}
.hero-avatar:nth-child(2) {
  background: var(--red);
}
.hero-avatar:nth-child(3) {
  background: var(--gray-600);
}
.hero-avatar:nth-child(4) {
  background: var(--success);
}

.hero-proof-text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.5;
}

.hero-proof-text strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Hero Demo Card */
.hero-demo {
  position: relative;
  animation: fadeUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.demo-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 6px rgba(0, 0, 0, 0.02),
    0 24px 48px rgba(23, 23, 23, 0.08);
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--charcoal);
  color: white;
}

.demo-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.4;
}

.demo-dots span:first-child {
  background: #ff5f57;
  opacity: 0.8;
}
.demo-dots span:nth-child(2) {
  background: #febc2e;
  opacity: 0.8;
}
.demo-dots span:last-child {
  background: #28c840;
  opacity: 0.8;
}

.demo-title {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.demo-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.demo-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.demo-body {
  padding: 32px;
}

.demo-question {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  border-left: 3px solid var(--charcoal);
}

.demo-question-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.demo-question-text {
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}

.demo-answer {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.demo-answer-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.demo-answer-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
}

.demo-answer-text .highlight {
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(185, 42, 40, 0.15) 60%
  );
  padding: 0 2px;
}

.demo-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
  position: relative;
}

.demo-divider::after {
  content: 'AI Analysis';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.demo-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.demo-score {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.demo-score-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.demo-score-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.demo-feedback {
  background: linear-gradient(
    135deg,
    rgba(185, 42, 40, 0.06) 0%,
    transparent 100%
  );
  border-radius: 12px;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
}

.demo-feedback-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 6px;
}

.demo-feedback-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* Floating stats */
.demo-float {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(23, 23, 23, 0.12);
  border: 1px solid var(--border);
}

.demo-float-1 {
  top: 60px;
  right: -50px;
  animation: float 5s ease-in-out infinite;
}

.demo-float-2 {
  bottom: -10px;
  left: -50px;
  animation: float 5s ease-in-out infinite 1.5s;
}

.demo-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.demo-float-icon.green {
  background: rgba(45, 106, 79, 0.1);
  color: var(--success);
}

.demo-float-icon.burgundy {
  background: rgba(185, 42, 40, 0.1);
  color: var(--red);
}

.demo-float-icon svg {
  width: 18px;
  height: 18px;
}

.demo-float-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.demo-float-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ============================================
   INDEX PAGE - TRUST BAR
   ============================================ */
.trust {
  padding: 48px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(185, 42, 40, 0.1) 50%,
    transparent 100%
  );
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

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

.trust-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: white;
  line-height: 1;
}

.trust-value span {
  color: var(--red);
}

.trust-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   INDEX PAGE - PROBLEM SECTION
   ============================================ */
.problem {
  padding: 140px 0;
  position: relative;
}

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

.problem-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.problem-text p:last-of-type {
  margin-bottom: 0;
}

.problem-visual {
  position: relative;
}

.problem-cards {
  display: grid;
  gap: 16px;
}

.problem-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.problem-card:hover {
  transform: translateX(8px);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(185, 42, 40, 0.08);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.problem-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.problem-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.55;
}

/* ============================================
   INDEX PAGE - FEATURES SECTION
   ============================================ */
.features {
  padding: 140px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    transparent
  );
}

.features-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.features .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.features .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.3);
}

.section-title-features {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--white);
}

.section-title-features em {
  font-style: italic;
  color: var(--red);
}

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* Feature Showcase - Large asymmetric cards */
.feature-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

/* Disable animated border on colored cards */
.feature-card-red::before,
.feature-card-dark::before {
  display: none;
}

.feature-card-large {
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.feature-card-red {
  background: var(--red);
  color: white;
}

.feature-card-red .feature-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card-red .feature-description {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card-dark {
  background: var(--charcoal-light);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card-dark .feature-eyebrow {
  color: var(--gray-400);
}

.feature-card-dark .feature-description {
  color: var(--gray-400);
}

.feature-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.feature-card-red h3,
.feature-card-dark h3 {
  color: white;
}

.feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 400px;
}

/* Feature visual mockups */
.feature-visual {
  margin-top: auto;
  padding-top: 32px;
}

.feature-visual-feedback {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feedback-bubble {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  animation: slideIn 0.5s ease backwards;
}

.feedback-bubble:nth-child(1) {
  animation-delay: 0.1s;
}
.feedback-bubble:nth-child(2) {
  animation-delay: 0.2s;
  margin-left: 20px;
}
.feedback-bubble:nth-child(3) {
  animation-delay: 0.3s;
}

.feedback-bubble-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 4px;
}

.feature-visual-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.type-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

.feature-card-red .type-tag {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Feature grid row */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card-sm {
  padding: 36px;
  min-height: 280px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.feature-card-sm h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card-dark .feature-icon {
  background: rgba(255, 255, 255, 0.1);
}

.feature-card-dark .feature-icon svg {
  color: var(--red);
}

.feature-card-red .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-card-red .feature-icon svg {
  color: white;
}

/* ============================================
   INDEX PAGE - HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.how-it-works-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--border),
    var(--red)
  );
}

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

.step-number {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--border);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step:hover .step-number {
  border-color: var(--red);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(185, 42, 40, 0.15);
}

.step h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   INDEX PAGE - TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}

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

.testimonial-featured {
  background: var(--white);
  border-radius: 20px;
  padding: 56px;
  max-width: 900px;
  margin: 0 auto 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-featured::before {
  content: '"';
  position: absolute;
  top: 32px;
  left: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  line-height: 1;
  color: var(--white);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.testimonial-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 15px;
  color: var(--gray-400);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card .testimonial-quote {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 24px;
}

.testimonial-card .testimonial-avatar {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.testimonial-card .testimonial-avatar.v2 {
  background: var(--charcoal);
}
.testimonial-card .testimonial-avatar.v3 {
  background: var(--gray-600);
}

/* ============================================
   INDEX PAGE - PRIVACY SECTION
   ============================================ */
.privacy {
  padding: 180px 0 140px;
  background: var(--white);
  position: relative;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.privacy-content .section-title {
  font-size: clamp(32px, 4vw, 44px);
}

.privacy-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.privacy-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.privacy-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(185, 42, 40, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.privacy-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.privacy-feature p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Privacy visual - Shield illustration */
.privacy-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.privacy-shield {
  width: 200px;
  height: 240px;
  background: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--charcoal) 100%
  );
  border-radius: 100px 100px 120px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(23, 23, 23, 0.25);
  position: relative;
}

.privacy-shield svg {
  width: 80px;
  height: 80px;
  color: white;
}

/* Floating badges around shield */
.privacy-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 120px;
}

.privacy-badge-1 {
  top: 0;
  left: 0;
  animation: float 5s ease-in-out infinite;
}

.privacy-badge-2 {
  top: 20%;
  right: 0;
  animation: float 5s ease-in-out infinite 1s;
}

.privacy-badge-3 {
  bottom: 10%;
  left: 10%;
  animation: float 5s ease-in-out infinite 2s;
}

.privacy-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.privacy-badge-sub {
  font-size: 13px;
  color: var(--gray-400);
}

/* ============================================
   INDEX PAGE - FAQ
   ============================================ */
.faq {
  padding: 140px 0;
  background: var(--cream);
}

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

.faq-header {
  position: sticky;
  top: 120px;
}

.faq-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-list {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  padding-right: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--red);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  background: var(--red);
}

.faq-item.active .faq-icon svg {
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   INDEX PAGE - CTA SECTION
   ============================================ */
.cta {
  padding: 120px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta .cta-content h2 {
  font-size: clamp(36px, 5vw, 52px);
  color: white;
  margin-bottom: 20px;
}

.cta .cta-content h2 em {
  color: white;
  font-style: italic;
}

.cta .cta-content p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  padding: 150px 0 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 30%,
    rgba(185, 42, 40, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.about-hero-text {
  position: relative;
  z-index: 1;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}

.about-hero-eyebrow svg {
  width: 16px;
  height: 16px;
}

.about-hero h1 {
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--red);
}

.about-hero-description {
  font-size: 19px;
  line-height: 1.75;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 32px;
}

.about-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.about-stat-value span {
  color: var(--red);
}

.about-stat-label {
  font-size: 14px;
  color: var(--gray-400);
}

/* Hero Visual */
.about-hero-visual {
  position: relative;
}

.about-quote-card {
  background: var(--charcoal);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse at 100% 0%,
    rgba(185, 42, 40, 0.25) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.about-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--red);
  opacity: 0.5;
  position: absolute;
  top: 30px;
  left: 30px;
}

.about-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.about-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.about-quote-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.about-quote-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.about-quote-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.about-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-float-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-float-icon svg {
  width: 22px;
  height: 22px;
}

.about-float-text h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about-float-text p {
  font-size: 12px;
  color: var(--gray-400);
}

/* About - Problem Section */
.problem-section {
  padding: 120px 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--red);
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.problem-section .problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-section .problem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.problem-section .problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.problem-section .problem-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-section .problem-icon svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}

.problem-section .problem-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.problem-section .problem-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}

.problem-stat {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.problem-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
}

.problem-stat-label {
  font-size: 14px;
  color: var(--gray-400);
}

/* About - Origin Story */
.story-section {
  padding: 120px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.story-header {
  position: sticky;
  top: 120px;
}

.story-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 20px;
  line-height: 1.15;
}

.story-header h2 em {
  font-style: italic;
  color: var(--red);
}

.story-header-intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--gray-600);
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.story-block {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--border);
}

.story-block::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.story-block-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 12px;
}

.story-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.story-block p:last-child {
  margin-bottom: 0;
}

.story-block strong {
  color: var(--charcoal);
  font-weight: 600;
}

.story-highlight {
  background: linear-gradient(135deg, rgba(185, 42, 40, 0.06) 0%, rgba(185, 42, 40, 0.02) 100%);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 16px 0;
}

.story-highlight p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0;
}

/* About - Team Section */
.team-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(185, 42, 40, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.team-header .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.team-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: white;
  margin-bottom: 16px;
}

.team-header h2 em {
  font-style: italic;
  color: var(--red);
}

.team-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(185, 42, 40, 0.3);
  transform: translateY(-4px);
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.team-info h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-bio {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.team-credential {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 6px;
}

.team-quote {
  background: rgba(185, 42, 40, 0.12);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.team-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.team-links {
  display: flex;
  gap: 8px;
}

.team-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  text-decoration: none;
}

.team-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.team-link svg {
  width: 18px;
  height: 18px;
}

/* About - Principles */
.principles-section {
  padding: 120px 0;
  background: var(--cream);
}

.principles-list {
  max-width: 800px;
  margin: 0 auto;
}

.principle-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.principle-item:first-child {
  padding-top: 0;
}

.principle-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.principle-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  opacity: 0.25;
}

.principle-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.principle-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
}

.principle-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* About - Social Proof */
.proof-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-header {
  text-align: center;
  margin-bottom: 48px;
}

.proof-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.proof-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.proof-logo:hover {
  opacity: 0.8;
}

.proof-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--charcoal);
}

.proof-logo span {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

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

.proof-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-stat-value span {
  color: var(--red);
}

.proof-stat-label {
  font-size: 14px;
  color: var(--gray-400);
}

/* About - CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--cream);
}

.cta-card {
  background: var(--white);
  border-radius: 24px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--charcoal), var(--red));
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--red);
}

.cta-content p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ============================================
   PRIVACY PAGE STYLES
   ============================================ */
.privacy-hero {
  padding: 150px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 30%,
    rgba(185, 42, 40, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.privacy-hero-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}

.privacy-hero-text {
  position: relative;
  z-index: 1;
}

.privacy-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}

.privacy-hero-eyebrow svg {
  width: 16px;
  height: 16px;
}

.privacy-hero h1 {
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.privacy-hero h1 em {
  font-style: italic;
  color: var(--red);
}

.privacy-hero-description {
  font-size: 19px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 28px;
}

.privacy-meta {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.privacy-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.privacy-meta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.privacy-meta-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}

.privacy-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
  transition: all 0.2s;
}

.privacy-meta-link:hover {
  color: var(--red-dark);
}

.privacy-meta-link svg {
  width: 14px;
  height: 14px;
}

/* Trust Visual */
.privacy-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.trust-shield {
  width: 160px;
  height: 200px;
  background: linear-gradient(
    145deg,
    var(--charcoal) 0%,
    var(--charcoal-light) 100%
  );
  border-radius: 80px 80px 100px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 32px 64px rgba(23, 23, 23, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  z-index: 2;
}

.trust-shield svg {
  width: 52px;
  height: 52px;
  color: white;
  opacity: 0.9;
}

.trust-shield-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating compliance badges */
.compliance-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 6s ease-in-out infinite;
}

.compliance-badge-1 {
  top: 10px;
  left: -20px;
  animation-delay: 0s;
}

.compliance-badge-2 {
  top: 45%;
  right: -30px;
  animation-delay: 2s;
}

.compliance-badge-3 {
  bottom: 30px;
  left: 0;
  animation-delay: 4s;
}

.compliance-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-badge-icon.ferpa {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

.compliance-badge-icon.gdpr {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.compliance-badge-icon.soc {
  background: rgba(185, 42, 40, 0.1);
  color: var(--red);
}

.compliance-badge-icon svg {
  width: 18px;
  height: 18px;
}

.compliance-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.compliance-badge-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.compliance-badge-sub {
  font-size: 11px;
  color: var(--gray-400);
}

/* Table of Contents */
.toc-section {
  padding: 48px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.toc-item {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.toc-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--red);
}

.toc-number {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s;
}

.toc-item:hover .toc-number {
  background: var(--charcoal);
}

.toc-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.toc-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Privacy Content Sections */
.privacy-content {
  padding: 72px 0 80px;
}

.policy-section {
  margin-bottom: 64px;
  scroll-margin-top: 100px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section .section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.section-icon {
  width: 48px;
  height: 48px;
  background: rgba(185, 42, 40, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.section-header-text h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 4px;
}

.section-header-text p {
  font-size: 16px;
  color: var(--gray-400);
}

.policy-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-600);
}

.policy-text p {
  margin-bottom: 16px;
}

.policy-text p:last-child {
  margin-bottom: 0;
}

.policy-text strong {
  color: var(--charcoal);
  font-weight: 600;
}

.policy-text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-text a:hover {
  text-decoration: none;
}

/* Policy Cards Grid */
.policy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.policy-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.policy-card:hover {
  border-color: rgba(185, 42, 40, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.policy-card-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.policy-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--charcoal);
}

.policy-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.policy-card p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(185, 42, 40, 0.06) 0%,
    rgba(185, 42, 40, 0.02) 100%
  );
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box h4 svg {
  width: 18px;
  height: 18px;
}

.highlight-box p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* Data Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th,
.data-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--cream);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.data-table td {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(250, 250, 248, 0.5);
}

.table-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(185, 42, 40, 0.08);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}

/* Policy List */
.policy-list {
  list-style: none;
  margin: 20px 0;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.6;
}

.policy-list li strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.right-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.right-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.right-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.right-card-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.right-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.right-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.55;
}

/* Compliance Section */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.compliance-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.compliance-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(185, 42, 40, 0.06);
}

.compliance-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.compliance-card-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.compliance-card-logo.ferpa {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.compliance-card-logo.gdpr {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.compliance-card-logo.soc {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.compliance-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.compliance-card-subtitle {
  font-size: 14px;
  color: var(--gray-400);
}

.compliance-card p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.compliance-card ul {
  list-style: none;
}

.compliance-card li {
  font-size: 15px;
  color: var(--gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.compliance-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.compliance-card li svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  flex-shrink: 0;
}

/* Privacy CTA */
.privacy-cta {
  padding: 72px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.privacy-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(185, 42, 40, 0.12) 0%,
    transparent 60%
  );
}

.privacy-cta-content {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.privacy-cta h2 {
  font-size: clamp(30px, 4vw, 42px);
  color: white;
  margin-bottom: 14px;
}

.privacy-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.7;
}

.privacy-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE - SHARED
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-demo {
    max-width: 540px;
    margin: 0 auto;
  }

  .demo-float-1 {
    right: -10px;
  }
  .demo-float-2 {
    left: -10px;
  }

  .problem-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .faq-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-header {
    position: static;
  }

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

  /* About page */
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }

  .problem-section .problem-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-header {
    position: static;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .principle-item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .principle-number {
    font-size: 36px;
  }

  .proof-logos {
    gap: 32px;
  }

  .proof-stats {
    flex-wrap: wrap;
    gap: 32px;
  }

  /* Privacy page */
  .privacy-hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .privacy-hero-visual {
    order: -1;
    min-height: 280px;
  }

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

  .policy-cards {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.7;
  }

  .section-title {
    font-size: 30px;
    letter-spacing: -0.025em;
  }

  .section-title-features {
    font-size: 32px;
    letter-spacing: -0.025em;
  }

  .trust-content {
    gap: 32px;
  }

  .trust-divider {
    display: none;
  }

  .feature-showcase,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card-large {
    min-height: auto;
  }

  .feature-card h3 {
    font-size: 26px;
  }

  .steps::before {
    display: none;
  }

  .step h3 {
    font-size: 24px;
  }

  .testimonial-featured {
    padding: 36px;
  }

  .testimonial-quote {
    font-size: 22px;
    letter-spacing: -0.02em;
  }

  .privacy-badge {
    display: none;
  }

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

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

  /* About page */
  .about-hero {
    padding: 130px 0 80px;
  }

  .about-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .about-float-badge {
    position: static;
    margin-top: 20px;
  }

  .problem-section,
  .story-section,
  .team-section,
  .principles-section,
  .cta-section {
    padding: 80px 0;
  }

  .principle-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .principle-number {
    font-size: 28px;
  }

  .cta-card {
    padding: 48px 28px;
  }

  /* Privacy page */
  .privacy-hero {
    padding: 130px 0 60px;
  }

  .privacy-hero h1 {
    font-size: 34px;
  }

  .privacy-hero-description {
    font-size: 16px;
  }

  .privacy-meta {
    flex-direction: column;
    gap: 12px;
  }

  .compliance-badge {
    display: none;
  }

  .toc-section {
    padding: 36px 0;
  }

  .toc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .privacy-content {
    padding: 56px 0 64px;
  }

  .policy-section {
    margin-bottom: 48px;
  }

  .rights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.65;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .section-title-features {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .step h3 {
    font-size: 22px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .demo-float {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* About page */
  .about-hero h1 {
    font-size: 32px;
  }

  .about-stat-value {
    font-size: 26px;
  }

  .team-card {
    padding: 28px 24px;
  }

  .team-card-header {
    flex-direction: column;
    text-align: center;
  }

  /* Privacy page */
  .privacy-hero {
    padding: 120px 0 48px;
  }

  .privacy-hero h1 {
    font-size: 30px;
  }

  .policy-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-header-text h2 {
    font-size: 26px;
  }

  .privacy-cta {
    padding: 56px 0;
  }

  .privacy-cta-actions {
    flex-direction: column;
  }

  .privacy-cta-actions .btn {
    width: 100%;
  }
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(185, 42, 40, 0.1);
  z-index: 1001;
}

.reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #d94543);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s ease-out;
}

/* Article Hero */
.article-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero-gradient {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 160%;
  background: radial-gradient(
    ellipse at center,
    rgba(185, 42, 40, 0.04) 0%,
    transparent 60%
  );
}

.article-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(90deg, var(--border) 1px, transparent 1px),
    linear-gradient(180deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  z-index: 1;
}

/* Article Meta Top */
.article-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease forwards;
}

.article-category {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  text-decoration: none;
  padding: 6px 14px;
  background: rgba(185, 42, 40, 0.08);
  border-radius: 100px;
  transition: all 0.3s;
}

.article-category:hover {
  background: var(--red);
  color: white;
}

.article-meta-divider {
  width: 4px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
}

.article-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-600);
}

.article-read-time svg {
  width: 16px;
  height: 16px;
}

/* Article Title */
.article-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.1s forwards;
  opacity: 0;
}

.article-title em {
  font-style: italic;
  color: var(--red);
}

.article-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 36px;
  animation: fadeUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

/* Article Author Block */
.article-author-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: fadeUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

.article-author-avatar {
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.article-author-info {
  text-align: left;
}

.article-author-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
}

.article-date {
  font-size: 14px;
  color: var(--gray-400);
}

/* Article Main Layout */
.article-main {
  padding: 0 0 100px;
  background: var(--cream);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Table of Contents */
.article-toc {
  position: relative;
}

.article-toc-inner {
  position: sticky;
  top: 120px;
}

.article-toc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.article-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.article-toc-link {
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 8px 0 8px 16px;
  border-left: 2px solid transparent;
  transition: all 0.3s;
  line-height: 1.4;
}

.article-toc-link:hover {
  color: var(--charcoal);
}

.article-toc-link.active {
  color: var(--red);
  border-left-color: var(--red);
  font-weight: 500;
}

.article-toc-cta {
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.article-toc-cta span {
  display: block;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* Article Body */
.article-body {
  max-width: 720px;
}

.article-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
}

.article-content p {
  margin-bottom: 1.6em;
}

.article-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

.article-content em {
  color: var(--charcoal);
}

/* Article Lead Paragraph */
.article-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 1.6em;
}

/* Article Sections */
.article-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.article-section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 24px;
  margin-top: 16px;
  color: var(--charcoal);
}

.article-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 32px;
  color: var(--charcoal);
}

/* Article Numbered List */
.article-list-numbered {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: list-counter;
}

.article-list-numbered li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  line-height: 1.7;
  counter-increment: list-counter;
}

.article-list-numbered li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
}

/* Pullquote - Editorial style with left border */
.article-pullquote {
  margin: 40px 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--red);
  background: transparent;
}

.article-pullquote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.article-pullquote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pullquote-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

.pullquote-role {
  font-size: 14px;
  color: var(--gray-400);
}

/* Article Stats - Light version */
.article-stats-light {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 32px 0;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.article-stat-light {
  text-align: center;
  flex: 1;
}

.article-stat-light .stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.article-stat-light .stat-label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: lowercase;
}

/* Article List */
.article-list {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.6;
}

/* Article CTA Block */
.article-cta-block {
  margin: 48px 0;
  padding: 48px;
  background: linear-gradient(135deg, rgba(185, 42, 40, 0.04) 0%, rgba(185, 42, 40, 0.08) 100%);
  border-radius: 20px;
  border: 1px solid rgba(185, 42, 40, 0.15);
  text-align: center;
}

.article-cta-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.article-cta-content p {
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.article-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Article Footer */
.article-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.article-tags-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.article-tag {
  font-size: 13px;
  color: var(--gray-600);
  text-decoration: none;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.3s;
}

.article-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

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

.article-share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.article-share-links {
  display: flex;
  gap: 8px;
}

.article-share-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--gray-600);
  transition: all 0.3s;
}

.article-share-link:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: white;
}

.article-share-link svg {
  width: 18px;
  height: 18px;
}

/* Related Articles Section */
.related-articles {
  padding: 100px 0;
  background: var(--white);
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.related-header h2 {
  font-size: clamp(28px, 3vw, 36px);
}

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

.related-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.related-card-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 16px;
}

.related-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.related-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.related-card h3 a:hover {
  color: var(--red);
}

.related-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.related-card-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-400);
}

/* Newsletter Section */
.newsletter-section {
  padding: 0 0 100px;
  background: var(--white);
}

.newsletter-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 56px;
  background: var(--charcoal);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.newsletter-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-form input {
  width: 260px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: white;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   BLOG PAGE - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* TOC becomes a floating pill at bottom */
  .article-toc {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }

  .article-toc-inner {
    position: relative;
    top: auto;
    background: var(--charcoal);
    border-radius: 100px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .article-toc-title {
    display: none;
  }

  .article-toc-nav {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 0;
    overflow-x: auto;
    max-width: 80vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .article-toc-nav::-webkit-scrollbar {
    display: none;
  }

  .article-toc-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-left: none;
    white-space: nowrap;
    font-size: 13px;
    border-radius: 100px;
  }

  .article-toc-link:hover {
    color: white;
  }

  .article-toc-link.active {
    background: var(--red);
    color: white;
    border-left: none;
  }

  .article-toc-cta {
    display: none;
  }

  .article-body {
    max-width: 100%;
  }

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

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .newsletter-content {
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .article-stats-light {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .article-hero {
    padding: 140px 0 60px;
  }

  .article-title {
    font-size: 32px;
  }

  .article-subtitle {
    font-size: 17px;
  }

  .article-main {
    padding: 0 0 64px;
  }

  .article-section h2 {
    font-size: 26px;
  }

  .article-pullquote blockquote {
    font-size: 20px;
  }

  .article-cta-block {
    padding: 32px 24px;
  }

  .article-cta-actions {
    flex-direction: column;
  }

  .article-cta-actions .btn {
    width: 100%;
  }

  .article-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-articles {
    padding: 64px 0;
  }

  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  /* Hide floating TOC on mobile */
  .article-toc {
    display: none;
  }
}

@media (max-width: 480px) {
  .article-hero {
    padding: 120px 0 48px;
  }

  .article-meta-top {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .article-author-block {
    flex-direction: column;
    text-align: center;
  }

  .article-author-info {
    text-align: center;
  }

  .newsletter-section {
    padding: 0 0 64px;
  }
}
