/* ============================================================
   ClaimWell.ai — Marketing Website Styles
   Design: "Gentle Authority" — warm, trustworthy, calm
   ============================================================ */

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

/* ---------- Custom Properties ---------- */
:root {
  /* Colors */
  --c-primary: #0B3D3D;
  --c-primary-mid: #145454;
  --c-primary-light: #1A6B6B;
  --c-accent: #C8963E;
  --c-accent-light: #E8B84D;
  --c-accent-glow: rgba(200, 150, 62, 0.15);
  --c-bg: #FAF7F2;
  --c-bg-alt: #F0EDE6;
  --c-surface: #FFFFFF;
  --c-text: #1A1A2E;
  --c-text-muted: #6B6B7B;
  --c-text-light: rgba(255, 255, 255, 0.7);
  --c-text-white: #FFFFFF;
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #1DA851;
  --c-border: rgba(11, 61, 61, 0.08);
  --c-border-light: rgba(255, 255, 255, 0.1);

  /* Typography */
  --f-display: 'Secular One', sans-serif;
  --f-body: 'Heebo', sans-serif;
  --f-serif: 'Frank Ruhl Libre', serif;

  /* Spacing */
  --s-section: clamp(80px, 10vw, 140px);
  --s-gap: clamp(16px, 3vw, 32px);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-normal: 400ms;
  --t-slow: 700ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 61, 61, 0.06);
  --shadow-md: 0 4px 20px rgba(11, 61, 61, 0.08);
  --shadow-lg: 0 8px 40px rgba(11, 61, 61, 0.12);
  --shadow-glow: 0 0 60px rgba(200, 150, 62, 0.15);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--c-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: var(--c-whatsapp-dark);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn--whatsapp:active {
  transform: translateY(0);
}

.btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--t-normal) var(--ease-out);
}

.nav--scrolled {
  background: rgba(11, 61, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 101;
}

.nav__logo-mark {
  font-size: 1.4rem;
  color: var(--c-accent);
  transition: transform var(--t-normal) var(--ease-spring);
}

.nav__logo:hover .nav__logo-mark {
  transform: rotate(90deg) scale(1.1);
}

.nav__logo-text {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-text-white);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--c-text-light);
  transition: color var(--t-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--t-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--c-text-white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__lang-wrap {
  position: relative;
}

.nav__lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--t-fast) var(--ease-out);
  cursor: pointer;
}

.nav__lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav__lang-globe {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
}

.nav__lang-btn:hover .nav__lang-globe {
  color: var(--c-text-white);
}

.nav__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  background: rgba(11, 61, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  padding: 6px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-fast) var(--ease-out);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.nav__lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__lang-dropdown {
  max-height: 70vh;
  overflow-y: auto;
}

.nav__lang-option {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  text-align: center;
}

.nav__lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-text-white);
}

.nav__lang-option--active {
  color: var(--c-accent-light);
  font-weight: 500;
}

.nav__lang-option--soon {
  opacity: 0.3;
  pointer-events: none;
}

.nav__lang-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 8px;
}

.nav__lang-market {
  display: block;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.nav__lang-market:hover {
  color: var(--c-accent-light);
}

.nav__cta {
  padding: 10px 24px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--c-text-white);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--t-fast) var(--ease-out);
}

.nav__cta:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text-white);
  border-radius: 2px;
  transition: all var(--t-fast) var(--ease-out);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #072E2E 0%, #0B3D3D 30%, #0F4A4A 60%, #0B3D3D 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.3), transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 107, 107, 0.5), transparent 70%);
  bottom: -50px;
  left: -100px;
  animation-delay: -7s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.2), transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: -14s;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1120px;
  padding: 0 clamp(20px, 5vw, 40px);
}

.hero__badge {
  position: absolute;
  bottom: 32px;
  inset-inline-start: max(clamp(20px, 5vw, 40px), calc((100% - 1120px) / 2 + clamp(20px, 5vw, 40px)));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: rgba(200, 150, 62, 0.08);
  border: 1px solid rgba(200, 150, 62, 0.15);
  color: rgba(200, 150, 62, 0.6);
  font-size: 0.75rem;
  font-weight: 400;
  z-index: 1;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-light);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.15;
  color: var(--c-text-white);
  margin-bottom: 24px;
}

.hero__rotate {
  display: inline-block;
  position: relative;
  height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
}

.hero__rotate-item {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  white-space: nowrap;
}

.hero__rotate-item--active {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}

.hero__rotate-item--exit {
  transform: translateY(-100%);
  opacity: 0;
}

.hero__title-accent {
  color: var(--c-accent-light);
  position: relative;
}

.hero__question {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.15;
  color: var(--c-accent-light);
  margin-bottom: 24px;
}

.hero__brand {
  font-family: var(--f-serif);
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.02em;
}

.hero .hero__brand,
.cta .hero__brand {
  color: var(--c-text-white);
}

.hero__brand-mark {
  color: var(--c-accent);
  font-size: 0.85em;
}

.hero .hero__brand-mark,
.cta .hero__brand-mark {
  color: var(--c-accent-light);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--c-text-light);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 20px;
}

.hero__pillars {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 12px;
}

.hero__pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 500;
}

.hero__pillar-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--c-accent-light);
}

.hero__channel {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---------- Problem Section ---------- */
.problem {
  padding: var(--s-section) 0;
  background: var(--c-bg);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-gap);
}

.problem__card {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: all var(--t-normal) var(--ease-out);
}

.problem__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 150, 62, 0.2);
}

.problem__icon {
  width: 48px;
  height: 48px;
  color: var(--c-primary-light);
  margin-bottom: 20px;
}

.problem__icon svg {
  width: 100%;
  height: 100%;
}

.problem__card-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.problem__card-text {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.how {
  padding: var(--s-section) 0;
  background: var(--c-surface);
}

.how__steps {
  max-width: 600px;
  margin: 0 auto;
}

.how__step {
  display: flex;
  gap: clamp(20px, 4vw, 36px);
  align-items: flex-start;
}

.how__step-number {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  min-width: 60px;
  opacity: 0.7;
}

.how__step-content {
  flex: 1;
  padding-bottom: 8px;
}

.how__step-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.how__step-text {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}

.how__connector {
  display: flex;
  justify-content: center;
  padding-right: 26px;
  margin: 8px 0;
  color: var(--c-border);
  height: 40px;
}

.how__connector svg {
  width: 2px;
  height: 40px;
}

/* ---------- Features ---------- */
.features {
  padding: var(--s-section) 0;
  background: var(--c-bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-gap);
}

.features__card {
  padding: clamp(28px, 4vw, 36px);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: all var(--t-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.features__card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--c-accent), var(--c-primary-light));
  opacity: 0;
  transition: opacity var(--t-normal) var(--ease-out);
}

.features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.features__card:hover::before {
  opacity: 1;
}

.features__card-icon {
  width: 40px;
  height: 40px;
  color: var(--c-primary-light);
  margin-bottom: 20px;
}

.features__card-icon svg {
  width: 100%;
  height: 100%;
}

.features__card-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.features__card-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* ---------- Comparison ---------- */
.compare {
  padding: var(--s-section) 0;
  background: var(--c-surface);
}

.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare__table th,
.compare__table td {
  padding: 18px 24px;
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--c-border);
}

.compare__table th {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-primary);
  padding: 24px;
  background: var(--c-bg);
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__table tbody tr {
  transition: background var(--t-fast);
}

.compare__table tbody tr:hover {
  background: rgba(11, 61, 61, 0.02);
}

.compare__label {
  text-align: start !important;
  font-weight: 500;
  color: var(--c-text);
}

.compare__highlight {
  background: rgba(11, 61, 61, 0.03) !important;
  color: var(--c-primary);
  font-weight: 700;
  position: relative;
}

th.compare__highlight {
  background: rgba(11, 61, 61, 0.06) !important;
}

th.compare__highlight .hero__brand-mark {
  font-size: 1.2em;
}

.compare__check {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  color: var(--c-whatsapp);
  margin-left: 4px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--s-section) 0;
  background: var(--c-bg);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--c-primary);
  text-align: start;
  transition: color var(--t-fast);
}

.faq__question:hover {
  color: var(--c-primary-light);
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--t-normal) var(--ease-out);
  margin-right: auto;
  margin-left: 16px;
}

/* RTL fix: chevron on the left side */
[dir="rtl"] .faq__chevron {
  margin-right: 16px;
  margin-left: auto;
}

.faq__item.active .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal) var(--ease-out),
              padding var(--t-normal) var(--ease-out);
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
}

/* ---------- CTA Section ---------- */
.cta {
  position: relative;
  padding: var(--s-section) 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #072E2E 0%, #0B3D3D 50%, #0F4A4A 100%);
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.cta__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.4), transparent 70%);
  top: -100px;
  left: 20%;
  animation: orbFloat 18s ease-in-out infinite;
}

.cta__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 107, 107, 0.5), transparent 70%);
  bottom: -80px;
  right: 10%;
  animation: orbFloat 22s ease-in-out infinite reverse;
}

.cta__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--c-text-white);
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-light);
  line-height: 1.9;
  margin-bottom: 40px;
}

.cta__note {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

/* ---------- Footer ---------- */
.footer {
  background: #061F1F;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__logo-mark {
  font-size: 1.2rem;
  color: var(--c-accent);
}

.footer__logo-text {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-text-white);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--c-text-light);
  margin-top: 6px;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t-fast);
}

.footer__links a:hover {
  color: var(--c-text-white);
}

.footer__legal p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
}

.footer__disclaimer {
  margin-top: 4px;
  font-style: italic;
}

/* ---------- Animations ---------- */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

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

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(11, 61, 61, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 100;
  }

  .nav__links.open .nav__link {
    font-size: 1.3rem;
    color: var(--c-text-white);
  }

  .nav__lang-wrap {
    z-index: 101;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

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

  .how__step {
    gap: 16px;
  }

  .how__step-number {
    font-size: 2rem;
    min-width: 44px;
  }

  .compare__table-wrap {
    border: none;
    background: none;
    box-shadow: none;
    overflow: visible;
  }

  .compare__table {
    min-width: 0;
  }

  .compare__table thead {
    display: none;
  }

  .compare__table tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .compare__table tbody tr {
    display: flex;
    flex-direction: column;
    background: var(--c-surface);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    padding: 20px;
    gap: 0;
  }

  .compare__table tbody tr:hover {
    background: var(--c-surface);
  }

  .compare__table td {
    border-bottom: none;
    padding: 5px 0;
    text-align: start;
    font-size: 0.9rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .compare__label {
    font-family: var(--f-display);
    font-size: 1.05rem !important;
    color: var(--c-primary) !important;
    padding-bottom: 10px !important;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--c-border) !important;
  }

  .compare__table td:nth-child(2)::before {
    content: "לבד: ";
    font-weight: 500;
    min-width: 50px;
    display: inline-block;
  }

  .compare__table td:nth-child(3)::before {
    content: "סוכן: ";
    font-weight: 500;
    min-width: 50px;
    display: inline-block;
  }

  td.compare__highlight {
    background: rgba(11, 61, 61, 0.06) !important;
    border-radius: var(--r-sm);
    padding: 10px 14px !important;
    margin-top: 8px;
    font-size: 0.95rem !important;
    font-weight: 700;
  }

  td.compare__highlight::before {
    content: "ClaimWell: ";
    font-weight: 700;
    color: var(--c-primary);
    min-width: 80px;
    display: inline-block;
  }

  .hero__pillars {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .hero__badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }
}
