/* =============================================
   NEWSMYONLINE — RETRO MODERN DESIGN SYSTEM
   ============================================= */

/* --- Custom Properties --- */
:root {
  --color-cream: #F5F0E8;
  --color-cream-dark: #EDE6D8;
  --color-mustard: #C8912A;
  --color-mustard-light: #E8B84B;
  --color-mustard-pale: #F9EDD4;
  --color-terracotta: #B85C38;
  --color-terracotta-light: #D4724A;
  --color-olive: #5E6B3A;
  --color-olive-light: #7A8A4A;
  --color-dusty-rose: #C4887A;
  --color-warm-brown: #3D2B1F;
  --color-warm-brown-mid: #5C3D2E;
  --color-ink: #2A1F14;
  --color-ink-soft: #4A3728;
  --color-white-warm: #FDFAF5;
  --color-border: #DDD5C4;
  --color-border-light: #EDE6D8;

  --shadow-sm: 0 2px 6px rgba(61,43,31,0.08), 0 1px 2px rgba(61,43,31,0.05);
  --shadow-md: 0 4px 16px rgba(61,43,31,0.12), 0 2px 4px rgba(61,43,31,0.06);
  --shadow-lg: 0 8px 32px rgba(61,43,31,0.14), 0 4px 8px rgba(61,43,31,0.07);
  --shadow-xl: 0 20px 60px rgba(61,43,31,0.16), 0 8px 20px rgba(61,43,31,0.08);
  --shadow-colored: 0 8px 32px rgba(200,145,42,0.2), 0 2px 8px rgba(200,145,42,0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --font-heading: 'Crimson Pro', Georgia, serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-white-warm);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.18;
  color: var(--color-ink);
  font-weight: 600;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { line-height: 1.7; color: var(--color-ink-soft); }

/* --- Layout Containers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--offset-right {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-left: clamp(1.5rem, 8vw, 8rem);
}

.container--offset-left {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-right: clamp(1.5rem, 8vw, 8rem);
}

/* --- Section Base --- */
.section {
  padding: var(--space-2xl) 0;
}

.section--light {
  background-color: var(--color-cream);
}

.section--warm {
  background-color: var(--color-mustard-pale);
}

.section--wide {
  padding: var(--space-md) 0;
}

.section--accent {
  background-color: var(--color-warm-brown);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: var(--space-sm);
}

.section__label--light {
  color: var(--color-mustard-light);
}

.section__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.section__heading--center {
  text-align: center;
  max-width: 100%;
}

.section__heading--light {
  color: var(--color-cream);
}

.section__lead {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.section__subtext {
  font-size: 1.05rem;
  color: var(--color-ink-soft);
  max-width: 650px;
  margin-bottom: var(--space-lg);
}

.section__subtext--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn--primary {
  background-color: var(--color-mustard);
  color: var(--color-white-warm);
  border-color: var(--color-mustard);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-colored);
  transform: translateY(-1px);
  color: var(--color-white-warm);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-mustard);
  color: var(--color-mustard);
  background-color: var(--color-mustard-pale);
}

.btn--large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--cookie-accept {
  background-color: var(--color-mustard);
  color: var(--color-white-warm);
  border-color: var(--color-mustard);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

.btn--cookie-accept:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white-warm);
}

.btn--cookie-outline {
  background-color: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

.btn--cookie-outline:hover {
  border-color: var(--color-mustard);
  color: var(--color-mustard);
}

/* =============================================
   COOKIE CONSENT
   ============================================= */

.cookie-banner {
  position: fixed;
  top: -120px;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-warm-brown);
  border-bottom: 2px solid var(--color-mustard);
  transition: top 0.45s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 4px 24px rgba(61,43,31,0.25);
}

.cookie-banner.is-visible {
  top: 0;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--color-cream);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__link {
  color: var(--color-mustard-light);
  text-decoration: underline;
}

.cookie-banner__link:hover { color: var(--color-mustard); }

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42,31,20,0.65);
  backdrop-filter: blur(2px);
}

.cookie-modal__box {
  position: relative;
  z-index: 1;
  background: var(--color-white-warm);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
}

.cookie-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.cookie-modal__item:last-of-type { border-bottom: none; }

.cookie-modal__item strong {
  display: block;
  color: var(--color-ink);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.cookie-modal__item p {
  font-size: 0.83rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background-color: var(--color-border);
  border-radius: 24px;
  cursor: pointer;
  transition: background-color var(--transition);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: var(--color-mustard);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-toggle--disabled { opacity: 0.6; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: rgba(253,250,245,0.95);
  backdrop-filter: blur(8px);
  height: var(--nav-height);
  transition: box-shadow var(--transition);
}

.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background-color: var(--color-mustard);
  transition: left 0.4s ease, right 0.4s ease;
}

.nav.is-scrolled::after {
  left: 0;
  right: 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--color-mustard);
  background-color: var(--color-mustard-pale);
}

.nav__cta {
  margin-left: 0.5rem;
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Tab Bar */
.mobile-tabbar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background-color: var(--color-warm-brown);
  border-top: 1px solid rgba(200,145,42,0.3);
  height: 60px;
  box-shadow: 0 -4px 20px rgba(61,43,31,0.2);
}

.mobile-tabbar__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(253,250,245,0.65);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  min-height: 44px;
}

.mobile-tabbar__tab i {
  font-size: 1rem;
}

.mobile-tabbar__tab:hover,
.mobile-tabbar__tab.is-active {
  color: var(--color-mustard-light);
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
  .mobile-tabbar { display: none; }
  body { padding-bottom: 0; }
}

body {
  padding-top: var(--nav-height);
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  min-height: calc(100vh - var(--nav-height));
  background-color: var(--color-cream);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 30%, rgba(200,145,42,0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(184,92,56,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8912A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    padding-left: clamp(1.5rem, 8vw, 8rem);
  }
}

.hero__content {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.9s ease 0.2s forwards;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.4s forwards;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}

.hero__headline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.5s ease forwards;
}

.hero__subtext {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-ink-soft);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.8s forwards;
}

/* Hero Dashboard Card */
.hero__visual {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: heroFadeUp 0.9s ease 0.5s forwards;
}

.hero__dashboard-card {
  background: var(--color-white-warm);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border-light);
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
}

.hero__card-header {
  background-color: var(--color-warm-brown);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__card-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__card-dot--green { background-color: #5EAE7C; }
.hero__card-dot--amber { background-color: var(--color-mustard-light); }
.hero__card-dot--red { background-color: var(--color-terracotta); }

.hero__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(253,250,245,0.7);
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}

.hero__card-body {
  padding: 1.5rem;
}

.hero__metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.hero__metric-row:last-of-type { border-bottom: none; }

.hero__metric-label {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  font-weight: 500;
}

.hero__metric-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero__metric-badge--up {
  background-color: rgba(94,174,124,0.12);
  color: #3D8A5C;
}

.hero__metric-badge--neutral {
  background-color: rgba(200,145,42,0.12);
  color: var(--color-mustard);
}

.hero__metric-badge--amber {
  background-color: rgba(184,92,56,0.1);
  color: var(--color-terracotta);
}

.hero__bar-group {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.hero__bar span {
  font-size: 0.75rem;
  color: var(--color-ink-soft);
  width: 72px;
  flex-shrink: 0;
}

.hero__bar-fill {
  flex: 1;
  height: 6px;
  background-color: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.hero__bar-fill::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--color-mustard), var(--color-mustard-light));
  border-radius: 6px;
  animation: barGrow 1.2s ease 1.2s both;
  transform-origin: left;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-mustard);
  animation: scrollBounce 2s ease infinite;
  font-size: 1rem;
}

/* =============================================
   TRUST BAR
   ============================================= */

.trust-bar {
  background-color: var(--color-warm-brown);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.55);
  white-space: nowrap;
}

.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.trust-bar__item {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(253,250,245,0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.trust-bar__item i {
  color: var(--color-mustard-light);
  font-size: 0.9rem;
}

/* =============================================
   PLATFORM GRID
   ============================================= */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card--platform {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card--platform:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-mustard);
}

.card__icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-mustard-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-mustard);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.6rem;
}

.card__text {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  line-height: 1.65;
}

/* =============================================
   ALTERNATING FEATURES
   ============================================= */

.feature {
  max-width: 1100px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .feature {
    grid-template-columns: 1fr 1fr;
  }

  .feature--right .feature__content {
    order: 1;
  }

  .feature--right .feature__visual {
    order: 2;
  }
}

.feature__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.feature__icon-block {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}

.feature__icon-block--mustard {
  background-color: var(--color-mustard-pale);
  color: var(--color-mustard);
}

.feature__icon-block--terracotta {
  background-color: rgba(184,92,56,0.1);
  color: var(--color-terracotta);
}

.feature__icon-block--olive {
  background-color: rgba(94,107,58,0.1);
  color: var(--color-olive);
}

.feature__icon-block--dusty-rose {
  background-color: rgba(196,136,122,0.1);
  color: var(--color-dusty-rose);
}

.feature__accent-card {
  background: var(--color-white-warm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 280px;
  box-shadow: var(--shadow-md);
}

.feature__accent-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-mustard);
  margin-bottom: 0.6rem;
}

.feature__accent-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.feature__accent-items span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.2rem 0.65rem;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-ink-soft);
}

.feature__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.feature__text {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  line-height: 1.72;
  margin-bottom: var(--space-sm);
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.feature__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

.feature__list li i {
  color: var(--color-mustard);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* =============================================
   STEPS / HOW IT WORKS
   ============================================= */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-lg);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-mustard), var(--color-terracotta));
  border-radius: 2px;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: var(--space-lg);
  position: relative;
}

.step:last-child { padding-bottom: 0; }

.step__number {
  width: 48px;
  height: 48px;
  background-color: var(--color-mustard);
  color: var(--color-white-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.step__body {
  padding-top: 0.6rem;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

.step__text {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  line-height: 1.68;
  max-width: 520px;
}

/* =============================================
   INDUSTRIES GRID
   ============================================= */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.card--industry {
  background: var(--color-white-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card--industry:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-mustard);
}

.card__icon-sm {
  width: 40px;
  height: 40px;
  background-color: var(--color-mustard-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-mustard);
  margin-bottom: var(--space-sm);
}

/* =============================================
   WHY SECTION
   ============================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.why-item {
  background-color: rgba(253,250,245,0.06);
  border: 1px solid rgba(253,250,245,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition);
}

.why-item:hover {
  background-color: rgba(253,250,245,0.1);
  border-color: rgba(200,145,42,0.4);
}

.why-item__icon {
  font-size: 1.6rem;
  color: var(--color-mustard-light);
  margin-bottom: var(--space-sm);
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.why-item__text {
  font-size: 0.88rem;
  color: rgba(237,230,216,0.75);
  line-height: 1.65;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.4fr 1fr;
  }
}

.contact-form-wrap {
  background: var(--color-white-warm);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form-row--single {
  grid-template-columns: 1fr;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-ink);
}

.form-required {
  color: var(--color-terracotta);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-ink);
  background-color: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--color-mustard);
  background-color: var(--color-white-warm);
  box-shadow: 0 0 0 3px rgba(200,145,42,0.12);
}

.form-input--textarea {
  resize: vertical;
  min-height: 130px;
}

.form-privacy {
  margin-bottom: var(--space-md);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-checkbox__box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-checkbox input:checked + .form-checkbox__box {
  background-color: var(--color-mustard);
  border-color: var(--color-mustard);
}

.form-checkbox input:checked + .form-checkbox__box::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-checkbox__label {
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.form-link {
  color: var(--color-mustard);
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
}

.contact-info__list li i {
  color: var(--color-mustard);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info__list li a:hover { color: var(--color-mustard); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background-color: var(--color-ink);
}

.footer__newsletter {
  background-color: var(--color-warm-brown);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(200,145,42,0.2);
}

.footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__newsletter-text h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-cream);
  margin-bottom: 0.25rem;
}

.footer__newsletter-text p {
  font-size: 0.88rem;
  color: rgba(237,230,216,0.7);
}

.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__newsletter-input {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(200,145,42,0.3);
  background-color: rgba(253,250,245,0.08);
  color: var(--color-cream);
  outline: none;
  width: 240px;
  transition: all var(--transition);
}

.footer__newsletter-input::placeholder { color: rgba(237,230,216,0.45); }
.footer__newsletter-input:focus {
  border-color: var(--color-mustard);
  background-color: rgba(253,250,245,0.12);
}

.footer__main {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: var(--space-lg);
  }
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}

.footer__description {
  font-size: 0.88rem;
  color: rgba(237,230,216,0.65);
  line-height: 1.65;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,230,216,0.5);
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(237,230,216,0.75);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--color-mustard-light); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: rgba(237,230,216,0.7);
  line-height: 1.5;
}

.footer__contact-list li i {
  color: var(--color-mustard-light);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-list li a:hover { color: var(--color-mustard-light); }

.footer__bottom {
  background-color: rgba(0,0,0,0.25);
  padding: 1.25rem 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(237,230,216,0.45);
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(237,230,216,0.45);
  transition: color var(--transition);
}

.footer__legal-links a:hover { color: var(--color-mustard-light); }

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-hero {
  background: linear-gradient(135deg, var(--color-warm-brown) 0%, var(--color-ink) 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.legal-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.legal-hero__meta {
  font-size: 0.88rem;
  color: rgba(237,230,216,0.6);
}

.legal-content {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white-warm);
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--color-ink-soft);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-border-light);
}

.legal-container h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-ink);
  margin: var(--space-lg) 0 0.75rem;
}

.legal-container h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.legal-container p {
  font-size: 0.93rem;
  color: var(--color-ink-soft);
  line-height: 1.72;
  margin-bottom: var(--space-sm);
}

.legal-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-container ul li {
  font-size: 0.93rem;
  color: var(--color-ink-soft);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.legal-container a {
  color: var(--color-mustard);
  text-decoration: underline;
}

.legal-container a:hover { color: var(--color-terracotta); }

.legal-container code {
  font-family: monospace;
  background-color: var(--color-cream);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--color-terracotta);
}

/* Terms numbered list */
.legal-numbered {
  counter-reset: legal-counter;
  list-style: none;
  padding: 0;
}

.legal-numbered > li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: inherit;
  color: inherit;
  margin: 0;
}

.legal-numbered > li:last-child { border-bottom: none; }

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cookie-table th {
  background-color: var(--color-warm-brown);
  color: var(--color-cream);
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cookie-table td {
  padding: 0.85rem 1rem;
  color: var(--color-ink-soft);
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tbody tr:last-child td { border-bottom: none; }
.cookie-table tbody tr:hover td { background-color: var(--color-cream); }

/* =============================================
   THANKS PAGE
   ============================================= */

.thanks-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanks-hero {
  background: linear-gradient(135deg, var(--color-mustard) 0%, var(--color-terracotta) 60%, var(--color-warm-brown) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.thanks-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.thanks-hero__icon {
  font-size: 4rem;
  color: rgba(253,250,245,0.9);
  margin-bottom: var(--space-md);
}

.thanks-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-white-warm);
  margin-bottom: var(--space-md);
}

.thanks-hero__text {
  font-size: 1.1rem;
  color: rgba(253,250,245,0.88);
  line-height: 1.7;
}

.thanks-next {
  flex: 1;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-white-warm);
  text-align: center;
}

.thanks-next__inner {
  max-width: 900px;
  margin: 0 auto;
}

.thanks-next__heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
}

.thanks-next__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.thanks-next__step {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border-light);
}

.thanks-next__step-icon {
  font-size: 1.8rem;
  color: var(--color-mustard);
  margin-bottom: var(--space-sm);
}

.thanks-next__step h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.thanks-next__step p {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  line-height: 1.6;
}

.thanks-next__step a {
  color: var(--color-mustard);
  text-decoration: underline;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Splitting char animation delays */
.hero__headline .char:nth-child(1) { animation-delay: 0.6s; }
.hero__headline .char:nth-child(2) { animation-delay: 0.63s; }
.hero__headline .char:nth-child(3) { animation-delay: 0.66s; }
.hero__headline .char:nth-child(4) { animation-delay: 0.69s; }
.hero__headline .char:nth-child(5) { animation-delay: 0.72s; }
.hero__headline .char:nth-child(6) { animation-delay: 0.75s; }
.hero__headline .char:nth-child(7) { animation-delay: 0.78s; }
.hero__headline .char:nth-child(8) { animation-delay: 0.81s; }
.hero__headline .char:nth-child(9) { animation-delay: 0.84s; }
.hero__headline .char:nth-child(10) { animation-delay: 0.87s; }
.hero__headline .char:nth-child(11) { animation-delay: 0.9s; }
.hero__headline .char:nth-child(12) { animation-delay: 0.93s; }
.hero__headline .char:nth-child(13) { animation-delay: 0.96s; }
.hero__headline .char:nth-child(14) { animation-delay: 0.99s; }
.hero__headline .char:nth-child(15) { animation-delay: 1.02s; }
.hero__headline .char:nth-child(16) { animation-delay: 1.05s; }
.hero__headline .char:nth-child(17) { animation-delay: 1.08s; }
.hero__headline .char:nth-child(18) { animation-delay: 1.11s; }
.hero__headline .char:nth-child(19) { animation-delay: 1.14s; }
.hero__headline .char:nth-child(20) { animation-delay: 1.17s; }
.hero__headline .char:nth-child(n+21) { animation-delay: 1.2s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

@media (max-width: 767px) {
  :root {
    --space-2xl: 3.5rem;
    --space-xl: 2.5rem;
  }

  .hero__inner {
    text-align: center;
  }

  .hero__subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .section__heading--center,
  .section__subtext--center {
    text-align: center;
  }

  .feature {
    text-align: center;
  }

  .feature__list {
    align-items: center;
  }

  .feature__visual {
    order: -1;
  }

  .steps::before {
    display: none;
  }

  .step {
    padding-bottom: var(--space-md);
  }

  .contact-form-wrap {
    padding: var(--space-md);
  }

  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__newsletter-input {
    width: 100%;
  }

  .footer__newsletter-form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__dashboard-card {
    max-width: 100%;
  }

  .btn--large {
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Intl Tel Input override */
.iti__flag-container { z-index: 100; }
.iti--separate-dial-code .iti__selected-flag {
  background-color: var(--color-cream);
}