/* ============================================
   SEBASTIAN RÓZGA — GLOBAL STYLES
   ------------------------------------------------
   NOT the standard copywriter template. No cream
   parchment. No serif headings. No numbered cards.

   Think: Monocle magazine meets direct response.
   Clean white space, confident typography, Ruisdael
   color accents (ochre gold, Dutch sky blue, deep
   forest) on a neutral cool base.
   ============================================ */

/* --- VARIABLES --- */
:root {
  /* Base — cool, clean, NOT parchment */
  --color-bg:          #FFFFFF;
  --color-bg-subtle:   #F6F6F4;   /* barely-there warm grey */
  --color-bg-dark:     #111111;
  --color-surface:     #F0EFEC;   /* card/panel backgrounds */

  /* Text */
  --color-text:        #1A1A1A;
  --color-text-mid:    #4A4A48;
  --color-text-muted:  #7A7A76;
  --color-text-light:  #E8E8E6;

  /* Ruisdael accents — used sparingly, for CTA & emphasis only */
  --color-gold:        #B8943E;   /* ochre — sun through clouds */
  --color-gold-dark:   #96782F;   /* hover state */
  --color-gold-light:  #D4C494;   /* subtle gold */
  --color-blue:        #4A6B8A;   /* Dutch sky — cool contrast */
  --color-blue-dark:   #3A5570;
  --color-forest:      #5C6B52;   /* deep foliage */
  --color-forest-light:#8A9B7E;   /* sage highlight */

  /* Borders */
  --color-border:      #E0E0DC;
  --color-border-dark: #2A2A2A;

  /* Typography — NO SERIF for headings. */
  /* Instrument Sans: geometric, sharp, modern but warm */
  --font-heading: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width:      1120px;
  --max-width-text: 640px;
  --nav-height:     60px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}


/* --- BASE TYPOGRAPHY --- */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.3;
}

p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text-mid);
  max-width: var(--max-width-text);
}

.lead {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--color-text-mid);
  font-weight: 400;
}

/* Label — small, uppercase, NO decorative prefix line */
.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

/* Strong pull quote accent */
.highlight {
  color: var(--color-gold);
  font-weight: 600;
}


/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section--tinted {
  background-color: var(--color-bg-subtle);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--dark p { color: #999; }
.section--dark h2,
.section--dark h3 { color: var(--color-text-light); }
.section--dark .label { color: var(--color-gold-light); }

/* Forest green accent section */
.section--forest {
  background-color: #2A3326;
  color: var(--color-text-light);
}
.section--forest p { color: #99A890; }
.section--forest h2,
.section--forest h3 { color: var(--color-text-light); }
.section--forest .label { color: var(--color-forest-light); }

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


/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom-color: var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--color-gold);
}

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

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__cta {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--color-gold);
  color: #1A1200;
}

.btn--primary:hover {
  background: var(--color-gold-dark);
}

.btn--dark {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn--dark:hover {
  background: #333;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  padding: 0;
  font-weight: 600;
  border: none;
}

.btn--ghost::after {
  content: ' →';
  transition: margin-left var(--transition-fast);
}

.btn--ghost:hover::after {
  margin-left: 4px;
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* --- DIVIDER --- */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-lg) 0;
}

.divider--gold {
  background: var(--color-gold);
  height: 2px;
  width: 40px;
}

.section--dark .divider {
  background: var(--color-border-dark);
}


/* --- DATA STRIP — horizontal credibility bar --- */
.datastrip {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.datastrip__item {
  text-align: left;
}

.datastrip__value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.datastrip__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.section--dark .datastrip {
  border-color: var(--color-border-dark);
}

.section--dark .datastrip__value {
  color: var(--color-text-light);
}


/* --- RESULT BLOCK — large number + context, stacked vertically --- */
.result-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-md);
  align-items: baseline;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.result-row__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.result-row__text {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.6;
}

.result-row__source {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}


/* --- CARDS — clean, minimal --- */
.card {
  background: var(--color-bg-subtle);
  border-radius: 8px;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* Card with gold left border accent */
.card--accent {
  border-left: 3px solid var(--color-gold);
}

/* Card on dark backgrounds */
.section--dark .card {
  background: #1A1A1A;
  border-color: var(--color-border-dark);
}

.section--dark .card__text {
  color: #999;
}


/* --- NEWSLETTER TOPIC — compact title + description block --- */
.nl-topic__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.nl-topic__text {
  font-size: 0.88rem;
  color: var(--color-text-mid);
  line-height: 1.55;
}


/* --- TESTIMONIAL — large italic text with dash prefix --- */
.testimonial {
  padding: var(--space-lg) 0;
}

.testimonial__quote {
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text);
  max-width: var(--max-width-text);
  position: relative;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-gold-light);
}

.testimonial__author {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  padding-left: var(--space-lg);
  letter-spacing: 0.02em;
}

.section--dark .testimonial__quote {
  color: var(--color-text-light);
  border-left-color: var(--color-gold);
}


/* --- PLACEHOLDER BOXES --- */
.placeholder-box {
  border: 1.5px dashed var(--color-border);
  border-radius: 8px;
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  min-height: 200px;
  background: var(--color-bg-subtle);
}

.placeholder-box--video {
  min-height: 400px;
  aspect-ratio: 16/9;
  max-width: 780px;
  margin: 0 auto;
}

.placeholder-box--photo {
  width: 100%;
  max-width: 340px;
  min-height: 400px;
  aspect-ratio: 3/4;
}

.placeholder-box--wide {
  min-height: 250px;
}


/* --- VIDEO PLAYER — responsive 16:9 embed wrapper --- */
.video-player {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}

.video-player__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
}

.video-player__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.9rem;
}


/* --- OFFER TOGGLE --- */
.offer-toggle {
  display: inline-flex;
  background: var(--color-surface);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid var(--color-border);
}

.offer-toggle__btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.offer-toggle__btn.active {
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}


/* --- CHECKLIST --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checklist__item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.55;
}

.checklist__icon {
  color: var(--color-forest);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}


/* --- FAQ --- */
.faq-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item__q {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.faq-item__a {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.75;
}


/* --- FOOTER --- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

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

.footer__brand {
  max-width: 300px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.footer__brand-name span {
  color: var(--color-gold);
}

.footer__brand-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: var(--space-xl);
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  color: #666;
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text-light);
}

.footer__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid #222;
  font-size: 0.82rem;
  color: #555;
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__bottom-link {
  color: #555;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--color-text-light);
}


/* --- FORMS --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 148, 62, 0.1);
}

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

.form-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.inline-form {
  display: flex;
  gap: var(--space-xs);
  max-width: 460px;
}

.inline-form .form-input {
  flex: 1;
}

.inline-form .btn {
  white-space: nowrap;
}


/* --- GRIDS --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

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

/* Asymmetric hero layout — text wide, image narrow */
.grid-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Magazine layout — narrow column + wide column */
.grid-mag {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}


/* --- PAGE TOP --- */
.page-top {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
}


/* --- SPACERS --- */
.spacer-xs { height: var(--space-xs); }
.spacer-sm { height: var(--space-sm); }
.spacer-md { height: var(--space-md); }
.spacer-lg { height: var(--space-lg); }
.spacer-xl { height: var(--space-xl); }


/* --- FEATURE — icon + text in a row --- */
.feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.feature__text {
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}


/* --- MARQUEE-STYLE BIG TEXT --- */
.big-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-text);
}

.big-text--outline {
  -webkit-text-stroke: 1.5px var(--color-text);
  color: transparent;
}


/* --- OFFER PANEL --- used on contact page for B2B/B2C form toggle */
.offer-panel {
  /* no special styles needed, just visibility toggle */
}


/* --- PROCESS STEPS — magazine style, NOT numbered cards --- */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.process__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  padding-top: 4px;
}

.process__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process__text {
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
}


/* --- NEWSLETTER SIGNUP --- */
.newsletter-signup {
  /* wrapper */
}


/* --- INLINE STAT — for credibility within text flow --- */
.inline-stat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1em;
  font-weight: 700;
  color: var(--color-gold);
}


/* --- LINKS — in-text links with gold underline --- */
a.text-link {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-gold-light);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color var(--transition-fast);
}

a.text-link:hover {
  text-decoration-color: var(--color-gold);
}


/* --- TEXT SELECTION — gold tint --- */
::selection {
  background: rgba(184, 148, 62, 0.2);
  color: var(--color-text);
}

::-moz-selection {
  background: rgba(184, 148, 62, 0.2);
  color: var(--color-text);
}


/* --- SCROLL REVEAL — elements fade in on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


/* --- BUTTON MICRO-INTERACTIONS --- */
.btn:active {
  transform: scale(0.97);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  box-shadow: 0 2px 12px rgba(184, 148, 62, 0.25);
}


/* --- PERSONAL NOTE — small italicized aside that breaks the sales pattern --- */
.aside {
  border-left: 2px solid var(--color-gold-light);
  padding-left: var(--space-md);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  max-width: var(--max-width-text);
}

.aside strong {
  font-style: normal;
  color: var(--color-text);
}


/* --- NAV LINK UNDERLINE on hover --- */
.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}


/* --- FOOTER NOTE — personal touch --- */
.footer__note {
  font-size: 0.82rem;
  font-style: italic;
  color: #555;
  line-height: 1.55;
  margin-top: var(--space-sm);
}


/* --- CENTERED NARROW CONTENT — reusable layout class --- */
.narrow {
  max-width: var(--max-width-text);
}

.narrow--center {
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

.narrow--wide {
  max-width: 700px;
}


/* --- CARD FLEX — for offer cards that need equal height --- */
.card--flex {
  display: flex;
  flex-direction: column;
}

.card--flex .card__text {
  flex: 1;
}

.card--flex .btn {
  align-self: flex-start;
}


/* --- GRID STRETCH — equal-height children --- */
.grid-2--stretch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

@media (max-width: 768px) {
  .grid-2--stretch {
    grid-template-columns: 1fr;
  }
}


/* --- IMAGE --- for when photos are added --- */
.img-rounded {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}




/* --- PROOF WALL — masonry social proof grid --- */
.proof-wall {
  columns: 3;
  column-gap: var(--space-md);
}

.proof-wall__item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.proof-wall__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- Proof wall card inner layout --- */
.proof-wall__body {
  padding: var(--space-md) var(--space-md) var(--space-sm);
}

.proof-wall__source {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.proof-wall__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-mid);
}

.proof-wall__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.proof-wall__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.3;
}

.proof-wall__handle {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.proof-wall__text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}

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

.proof-wall__footer {
  padding: var(--space-xs) var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-wall__channel {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.proof-wall__date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--color-text-muted);
}

/* --- Proof wall: image cards (screenshots) --- */
.proof-wall__img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Proof wall: image-only cards --- */
.proof-wall__item--img {
  padding: 0;
  background: var(--color-surface);
}

/* --- Proof wall: gold accent card --- */
.proof-wall__item--accent {
  background: linear-gradient(135deg, rgba(184, 148, 62, 0.06) 0%, rgba(184, 148, 62, 0.02) 100%);
  border-color: rgba(184, 148, 62, 0.15);
}

/* --- Proof wall: force column break --- */
.proof-wall__item--col-break {
  break-before: column;
}

/* --- Proof wall: tweet embed card --- */
.proof-wall__item--tweet {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.proof-wall__item--tweet:hover {
  transform: none;
  box-shadow: none;
}

.proof-wall__item--tweet .twitter-tweet,
.proof-wall__item--tweet twitter-widget {
  margin: 0 !important;
  width: 100% !important;
}

.proof-wall__item--tweet twitter-widget {
  border-radius: 10px !important;
  overflow: hidden;
}

/* --- Staggered reveal animation --- */
.proof-wall__item {
  opacity: 0;
  transform: translateY(16px);
  animation: proofFadeIn 0.5s ease forwards;
}

.proof-wall__item:nth-child(1) { animation-delay: 0.05s; }
.proof-wall__item:nth-child(2) { animation-delay: 0.12s; }
.proof-wall__item:nth-child(3) { animation-delay: 0.19s; }
.proof-wall__item:nth-child(4) { animation-delay: 0.26s; }
.proof-wall__item:nth-child(5) { animation-delay: 0.33s; }
.proof-wall__item:nth-child(6) { animation-delay: 0.40s; }
.proof-wall__item:nth-child(7) { animation-delay: 0.47s; }
.proof-wall__item:nth-child(8) { animation-delay: 0.54s; }

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

@media (max-width: 768px) {
  .proof-wall {
    columns: 1 !important;
    column-gap: 0;
  }

  .proof-wall__item--col-break {
    break-before: auto;
  }

  .proof-wall__body {
    padding: var(--space-sm) var(--space-sm) var(--space-xs);
  }

  .proof-wall__footer {
    padding: var(--space-xs) var(--space-sm) var(--space-sm);
  }

  .proof-wall__avatar {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .proof-wall__name {
    font-size: 0.82rem;
  }

  .proof-wall__text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .proof-wall {
    columns: 1;
  }
}


/* --- VIDEO TESTIMONIAL ROWS --- */
/* Alternating left/right layout for video testimonials */
.vtestimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-surface);
}

.vtestimonial:last-child {
  border-bottom: none;
}

/* Flip order: video right, text left */
.vtestimonial--flipped .vtestimonial__video {
  order: 2;
}

.vtestimonial--flipped .vtestimonial__content {
  order: 1;
}

/* Video embed placeholder */
.vtestimonial__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play button overlay */
.vtestimonial__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.vtestimonial__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.vtestimonial__video:hover .vtestimonial__play {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

/* Text content */
.vtestimonial__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.vtestimonial__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.3;
}

.vtestimonial__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.vtestimonial__quote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-top: var(--space-xs);
}

.vtestimonial__hint {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  margin-top: var(--space-xs);
}

@media (max-width: 768px) {
  .vtestimonial {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
  }

  /* Reset order on mobile — always video on top */
  .vtestimonial--flipped .vtestimonial__video {
    order: 0;
  }

  .vtestimonial--flipped .vtestimonial__content {
    order: 0;
  }

  .vtestimonial__play {
    width: 52px;
    height: 52px;
  }

  .vtestimonial__play::after {
    border-width: 8px 0 8px 14px;
    margin-left: 2px;
  }
}


/* --- SR ONLY --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-hero,
  .grid-mag {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__nav {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-form {
    flex-direction: column;
  }

  .datastrip {
    flex-direction: column;
    gap: var(--space-md);
  }

  .result-row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .result-row__number {
    font-size: 2rem;
  }

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

  .placeholder-box--photo {
    max-width: 260px;
    min-height: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

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

  .big-text {
    font-size: 2.5rem;
  }
}
