

:root {
  
  --black: #f5ede0;
  --charcoal: #ede0d0;
  --graphite: #3a1018;      
  --soft-gray: #8a7060;
  --mist: #2d1a12;          
  --white: #1e100a;
  --pure-white: #fdf7ef;    
  
  --accent: #7b1c2e;
  --accent-hover: #9e2438;
  --accent-muted: rgba(123, 28, 46, 0.3);
  --accent-glow: rgba(158, 36, 56, 0.2);
  --border: rgba(60, 20, 10, 0.14);
  --border-strong: rgba(60, 20, 10, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.18);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--mist);
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(100, 45, 25, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 65%, rgba(80, 35, 15, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(110, 50, 20, 0.04) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  background-repeat: repeat;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--mist);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--accent);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--accent);
  color: var(--pure-white);
  font-weight: 600;
}

.skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-2xl);
  position: relative;
}

.section--tight {
  padding-block: var(--space-xl);
}

.section--alt {
  background: var(--charcoal);
}

.section--light {
  background: var(--pure-white);
  color: var(--mist);
}



.section--light a:hover {
  color: var(--accent-hover);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.section--light .section-label {
  color: var(--soft-gray);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--mist);
  margin: 0 0 var(--space-md);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--mist);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 var(--space-md);
  max-width: 62ch;
}

.lead {
  font-size: 1.125rem;
  color: var(--soft-gray);
}

.section--light .lead {
  color: #4a4a4a;
}

.muted {
  color: var(--soft-gray);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 237, 224, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 72px;
}


.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--mist);
  margin-right: 40%;
}

.logo:hover {
  color: var(--accent);
}

.logo span {
  color: var(--accent-hover);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--mist);
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 2px 0;
  transition: transform var(--transition), opacity var(--transition);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-more {
  position: relative;
  order: -1;
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: var(--space-sm) 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: rgba(245, 237, 224, 0.97);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-more:hover .nav-dropdown,
.nav-more.is-open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown li a {
  display: block;
  padding: 0.55rem var(--space-md);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown li a:hover,
.nav-dropdown li a.is-active {
  color: var(--accent);
  background: rgba(123, 28, 46, 0.06);
}

.nav-dropdown-mobile { display: none; }

[data-theme="light"] {
  --black: #0a0a0a;
  --charcoal: #111111;
  --graphite: #200a10;      
  --soft-gray: #8a7a70;
  --mist: #d4c5b8;          
  --white: #e8ddd0;
  --pure-white: #ffffff;    
  --accent: #7b1c2e;
  --accent-hover: #9e2438;
  --accent-muted: rgba(123, 28, 46, 0.35);
  --accent-glow: rgba(158, 36, 56, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] body {
  background-color: #0a0a0a;
  background-image: none;
  color: #d4c5b8;
}

[data-theme="light"] body::before {
  opacity: 0.02;
}

[data-theme="light"] .site-header {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .logo {
  color: #ffffff;
}

[data-theme="light"] .site-nav a {
  color: #d4c5b8;
}

[data-theme="light"] .site-nav a.is-active {
  color: #ffffff;
}

[data-theme="light"] .nav-dropdown {
  background: rgba(10, 10, 10, 0.97);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .nav-dropdown li a {
  color: #d4c5b8;
}

[data-theme="light"] .nav-dropdown li a:hover,
[data-theme="light"] .nav-dropdown li a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .nav-toggle,
[data-theme="light"] .theme-toggle,
[data-theme="light"] .lang-toggle {
  color: #d4c5b8;
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="light"] .section--alt {
  background: #111111;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 {
  color: #ffffff;
}

[data-theme="light"] .card {
  background: #200a10;
  border-color: rgba(123, 28, 46, 0.3);
  color: #d4c5b8;
}

[data-theme="light"] .card h2,
[data-theme="light"] .card h3,
[data-theme="light"] .card h4 {
  color: #ffffff;
}

[data-theme="light"] .card p {
  color: rgba(212, 197, 184, 0.8);
}

[data-theme="light"] .hero__bg {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123, 28, 46, 0.18), transparent 55%),
    linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

[data-theme="light"] .hero__grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .footer-meta {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #8a7a70;
}

[data-theme="light"] .modal__panel {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.1);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  position: relative;
  padding-block: var(--space-xs);
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition),
    box-shadow var(--transition), color var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: var(--pure-white);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--mist);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover);
}

.btn--light {
  background:grey;
  color: var(--black);
}

.btn--light:hover {
  background: var(--mist);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.is-active,
.btn.is-saved {
  border-color: var(--accent-hover);
  background: rgba(123, 28, 46, 0.25);
  color: var(--pure-white);
}

.btn--icon {
  padding: 0.5rem 0.85rem;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-2xl);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123, 28, 46, 0.12), transparent 55%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
  pointer-events: none;
}

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

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero__note {
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--soft-gray);
  max-width: 48ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--graphite);   
  border: 1px solid rgba(123, 28, 46, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--pure-white);       
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card h2, .card h3, .card h4 {
  color: var(--pure-white);
}

.card p, .card .muted {
  color: rgba(253, 247, 239, 0.75);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-hover);
  box-shadow: 0 16px 48px rgba(123, 28, 46, 0.25), 0 0 0 1px rgba(158, 36, 56, 0.2);
}

.section--light .card {
  background: rgba(245, 237, 224, 0.7);
  border-color: rgba(123, 28, 46, 0.15);
  color: var(--mist);
  box-shadow: var(--shadow-card);
}

.section--light .card h2,
.section--light .card h3,
.section--light .card h4 {
  color: var(--mist);
}

.section--light .card p {
  color: var(--soft-gray);
}

.card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 247, 239, 0.6);
  margin-bottom: var(--space-sm);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-strong);
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.9;
  display: block;
  margin-bottom: var(--space-sm);
}

.quote-band {
  text-align: center;
  padding-block: var(--space-xl);
  border-block: 1px solid var(--border);
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
  color: var(--mist);
}

.quote-band cite {
  display: block;
  margin-top: var(--space-md);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.testimonial-strip {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
}

.testimonial-strip .card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--accent-hover);
  color: var(--pure-white);
  background: rgba(123, 28, 46, 0.2);
}

.section--light .filter-btn {
  color: var(--charcoal);
  border-color: rgba(0, 0, 0, 0.12);
}

.section--light .filter-btn:hover,
.section--light .filter-btn.is-active {
  background: rgba(123, 28, 46, 0.1);
  color: var(--mist);
}

.form-grid {
  display: grid;
  gap: var(--space-md);
}

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: var(--space-xs);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(245, 237, 224, 0.6);
  color: var(--mist);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-hover);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.field-error {
  color: #e8a598;
  font-size: 0.85rem;
  margin-top: var(--space-xs);
}

.success-banner {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-muted);
  background: rgba(123, 28, 46, 0.12);
  color: var(--mist);
}

.success-banner:focus {
  outline: none;
}

.site-footer {
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--border);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-xl);
}

.footer-brand p {
  max-width: 36ch;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-gray);
  margin-bottom: var(--space-md);
}

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

.footer-col a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--mist);
  display: inline-block;
  padding-block: 0.35rem;
}

.footer-col a:hover {
  color: var(--pure-white);
}

.footer-meta {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--soft-gray);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  font-size: 0.8rem;
  color: var(--soft-gray);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.trust-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.modal[hidden] {
  display: none !important;
}

.modal__panel {
  width: min(100%, 560px);
  max-height: 85vh;
  overflow: auto;
  background: var(--graphite);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  animation: modalIn 0.45s var(--transition) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.icon-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--mist);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

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

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent-hover);
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  padding-bottom: var(--space-md);
  color: var(--soft-gray);
}

.faq-panel[hidden] {
  display: none;
}

.persona-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.persona-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--graphite), var(--charcoal));
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}

.persona-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(123, 28, 46, 0.3), transparent 50%);
}

.persona-meta {
  display: grid;
  gap: var(--space-md);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.pill {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--accent-muted);
  color: var(--mist);
}

.mock-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.mock-phone {
  aspect-ratio: 9/18;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--graphite);
  position: relative;
  overflow: hidden;
}

.mock-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 22px;
  background: var(--black);
  border-radius: 999px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.cta-block {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(123, 28, 46, 0.12), transparent 55%);
}

.cta-block .btn {
  margin-inline: var(--space-sm);
  margin-top: var(--space-md);
}

.dash-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.dash-table th,
.dash-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.dash-table th {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

.dash-empty {
  color: var(--soft-gray);
  font-style: italic;
  padding: var(--space-lg) !important;
}

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

.text-center p {
  margin-inline: auto;
}

.stack-lg {
  margin-bottom: var(--space-xl);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-muted), transparent);
  margin-block: var(--space-xl);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-404 h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 9px;
  cursor: pointer;
  color: var(--mist);
  font-size: 0.8rem;
  line-height: 1;
  transition: border-color var(--transition), color var(--transition);
}

.theme-toggle:hover {
  border-color: var(--accent-hover);
  color: var(--pure-white);
}

.theme-icon {
  font-size: 0.85rem;
  line-height: 1;
  transition: opacity var(--transition);
}

.theme-icon--sun { opacity: 1; }
.theme-icon--moon { opacity: 0.4; }

[data-theme="light"] .theme-icon--sun { opacity: 0.4; }
[data-theme="light"] .theme-icon--moon { opacity: 1; }

.toggle-track {
  width: 30px;
  height: 16px;
  border-radius: 999px;
  background: var(--graphite);
  border: 1px solid var(--border-strong);
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition);
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft-gray);
  transition: transform var(--transition), background var(--transition);
}

[data-theme="light"] .toggle-track { background: var(--accent); }
[data-theme="light"] .toggle-thumb { transform: translateX(14px); background: #ffffff; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  cursor: pointer;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  min-width: 38px;
  text-align: center;
}

.lang-toggle:hover {
  border-color: var(--accent-hover);
  color: var(--pure-white);
  background: rgba(123, 28, 46, 0.12);
}

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

[data-theme="light"] .logo:hover { color: #e0d0c8; }

[data-theme="light"] a { color: #d4c5b8; }
[data-theme="light"] a:hover { color: #ffffff; }

[data-theme="light"] .section--alt h1,
[data-theme="light"] .section--alt h2,
[data-theme="light"] .section--alt h3,
[data-theme="light"] .section--alt h4 { color: #ffffff; }

[data-theme="light"] .section--light { background: #1a1a1a; color: #d4c5b8; }
[data-theme="light"] .section--light h1,
[data-theme="light"] .section--light h2,
[data-theme="light"] .section--light h3,
[data-theme="light"] .section--light h4 { color: #ffffff; }
[data-theme="light"] .section--light a { color: #9e2438; }
[data-theme="light"] .section--light .lead { color: #a89888; }
[data-theme="light"] .section--light .card {
  background: #2a0d14;
  border-color: rgba(123, 28, 46, 0.3);
  color: #d4c5b8;
}
[data-theme="light"] .section--light .card h2,
[data-theme="light"] .section--light .card h3,
[data-theme="light"] .section--light .card h4 { color: #ffffff; }
[data-theme="light"] .section--light .section-label { color: #8a7a70; }

[data-theme="light"] .section-label { color: #8a7a70; }
[data-theme="light"] .lead { color: #a89888; }
[data-theme="light"] .muted { color: #8a7a70; }

[data-theme="light"] .quote-band { border-color: rgba(255, 255, 255, 0.08); }
[data-theme="light"] .quote-band blockquote { color: #ffffff; }
[data-theme="light"] .quote-band cite { color: #8a7a70; }

[data-theme="light"] .cta-block {
  border-color: rgba(123, 28, 46, 0.3);
  background: linear-gradient(160deg, rgba(123, 28, 46, 0.15), transparent 55%);
}

[data-theme="light"] .site-footer {
  background: #111111;
  border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .footer-brand p { color: #a89888; }
[data-theme="light"] .footer-col h4 { color: #8a7a70; }
[data-theme="light"] .footer-col a { color: #d4c5b8; }
[data-theme="light"] .footer-col a:hover { color: #ffffff; }

[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="light"] .faq-trigger { color: #ffffff; }
[data-theme="light"] .faq-item { border-color: rgba(255, 255, 255, 0.08); }
[data-theme="light"] .faq-panel { color: #a89888; }
[data-theme="light"] .step-card { border-top-color: rgba(255, 255, 255, 0.1); }

[data-theme="light"] .filter-btn { color: #d4c5b8; border-color: rgba(255, 255, 255, 0.12); }
[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .filter-btn.is-active { color: #ffffff; }

[data-theme="light"] .divider {
  background: linear-gradient(90deg, transparent, rgba(123, 28, 46, 0.35), transparent);
}

[data-theme="light"] .icon-btn { color: #ffffff; border-color: rgba(255, 255, 255, 0.14); }

[data-theme="light"] .pill { color: #d4c5b8; }

[data-theme="light"] .trust-row { color: #8a7a70; }

[data-theme="light"] .dash-table th { color: #8a7a70; }
[data-theme="light"] .dash-table th,
[data-theme="light"] .dash-table td { border-color: rgba(255, 255, 255, 0.08); }
[data-theme="light"] .dash-empty { color: #8a7a70; }
[data-theme="light"] .dash-table-wrap { border-color: rgba(255, 255, 255, 0.08); }

[data-theme="light"] .nav-toggle { color: #d4c5b8; border-color: rgba(255, 255, 255, 0.14); }
[data-theme="light"] .theme-toggle { color: #d4c5b8; border-color: rgba(255, 255, 255, 0.14); }
[data-theme="light"] .lang-toggle { color: #d4c5b8; border-color: rgba(255, 255, 255, 0.14); }

.card-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
  filter: grayscale(0.2);
}

.persona-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--pure-white);
  background: linear-gradient(145deg, var(--accent), var(--accent-hover));
  border: 2px solid var(--accent-muted);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.persona-visual--teen {
  background: linear-gradient(145deg, #1a3a50, #0f2030);
}
.persona-visual--teen::after {
  background: radial-gradient(circle at 40% 30%, rgba(42, 107, 160, 0.4), transparent 55%);
}
.persona-visual--young {
  background: linear-gradient(145deg, #2a3a1e, #1a2a12);
}
.persona-visual--young::after {
  background: radial-gradient(circle at 60% 25%, rgba(123, 28, 46, 0.4), transparent 55%);
}
.persona-visual--elder {
  background: linear-gradient(145deg, #3a2a1a, #2a1a0a);
}
.persona-visual--elder::after {
  background: radial-gradient(circle at 30% 40%, rgba(160, 107, 42, 0.4), transparent 55%);
}

.persona-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mock-phone--circles::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  bottom: 12%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 22px
    );
  border-radius: var(--radius-md);
}

.mock-ui {
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.mock-ui-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.mock-ui-bar--accent {
  background: rgba(123, 28, 46, 0.5);
  width: 60%;
}
.mock-ui-bar--short { width: 40%; }
.mock-ui-card {
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  flex: 1;
  min-height: 40px;
  max-height: 52px;
  border: 1px solid rgba(255,255,255,0.07);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pure-white);
  flex-shrink: 0;
  border: 1px solid var(--accent-muted);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.hero__visual {
  position: absolute;
  right: max(2rem, calc(50% - 560px));
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 35vw);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .hero__visual { display: none; }
}

.section-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg) 0;
}

.section-illustration svg {
  max-width: 320px;
  width: 100%;
  opacity: 0.85;
}

[dir="rtl"] .site-nav a::after { transform-origin: right; }
[dir="rtl"] .faq-trigger { text-align: right; }
[dir="rtl"] .section-label { flex-direction: row-reverse; }
[dir="rtl"] .trust-row span { flex-direction: row-reverse; }
[dir="rtl"] .hero__visual { right: auto; left: max(2rem, calc(50% - 560px)); }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}






body::before {
  content: "";
  position: fixed; 
  inset: 0;       
  width: 100%;
  height: 100%;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  
  pointer-events: none; 
  z-index: 9999;        

  opacity: 0.3;          
  mix-blend-mode: multiply; 

[data-theme="light"] body::before {
  opacity: 0.15;          
  mix-blend-mode: overlay;
}
}