/*
Theme Name: re:praesent
Theme URI: https://github.com/dendritecorp/template-repraesent.com
Author: Dendrite Corp
Description: Marketing site for re:praesent — Küchenstudios and furniture retailers in DACH.
Version: 1.0.0
Text Domain: repraesent
*/

/* repraesent.com v1.0.0
 *
 * TYPOGRAPHY SCALE
 * H1 (hero):    clamp(3rem, 6vw, 4.5rem), lh 1.1, serif
 * H2 (section): clamp(1.85rem, 3vw, 2.35rem), lh 1.25
 * H3:           1.25rem, fw 500
 * Body:         1.0625rem, lh 1.7
 * Hero text:    1.125rem, lh 1.65
 * Eyebrow:      0.8rem
 *
 * SPACING SYSTEM
 * --section-gap:        7.5rem (120px)
 * --section-gap-mobile: 5rem
 * --space-xs/sm/md/lg/xl: 0.5rem–3rem
 *
 * COLOR TOKENS
 * --bg-primary:   #FAF9F6 (warm off-white)
 * --text-primary: #252320 (dark charcoal)
 * --accent:       #5C6B5C (muted olive)
 */
:root {
  /* Colors — premium, calm tone */
  --bg-primary: #FAF9F6;
  --bg-secondary: #F5F3EF;
  --text-primary: #252320;
  --text-secondary: #3d3a36;
  --text-muted: #6b6560;
  --accent: #5C6B5C;
  --accent-hover: #4D5B4D;
  --accent-warm: #A89B7E;
  --border: rgba(37, 35, 32, 0.12);
  --border-strong: rgba(37, 35, 32, 0.2);
  /* Layout */
  --max-width: 1280px;
  --content-max: 1280px;
  --pad-x: 1.5rem;
  --section-gap: 100px;
  --section-gap-mobile: 60px;
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

/* Scroll motion */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card animation */
.card.fade-up,
.product-card.fade-up,
.flow-card.fade-up,
.client-card.fade-up {
  transition-delay: 0.1s;
}

.card.fade-up:nth-child(2),
.product-card.fade-up:nth-child(2),
.client-card.fade-up:nth-child(2) {
  transition-delay: 0.2s;
}

.card.fade-up:nth-child(3),
.product-card.fade-up:nth-child(3),
.client-card.fade-up:nth-child(3) {
  transition-delay: 0.3s;
}

.card.fade-up:nth-child(4),
.product-card.fade-up:nth-child(4),
.client-card.fade-up:nth-child(4) {
  transition-delay: 0.4s;
}

.card.fade-up:nth-child(5),
.product-card.fade-up:nth-child(5) {
  transition-delay: 0.5s;
}

.card.fade-up:nth-child(6),
.product-card.fade-up:nth-child(6) {
  transition-delay: 0.6s;
}

.card.fade-up:nth-child(7),
.product-card.fade-up:nth-child(7) {
  transition-delay: 0.7s;
}

.card.fade-up:nth-child(8),
.product-card.fade-up:nth-child(8) {
  transition-delay: 0.8s;
}

.flow-card.fade-up:nth-child(1) { transition-delay: 0.1s; }
.flow-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.flow-card.fade-up:nth-child(5) { transition-delay: 0.3s; }
.flow-card.fade-up:nth-child(7) { transition-delay: 0.4s; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  /* no scroll lock needed for dropdown nav */
}

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

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

a.btn,
button.btn {
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1300px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.container.container-wide {
  max-width: 1400px;
}

.section-split .container {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1fr);
  gap: 3rem;
  align-items: start;
}

.split-content {
  min-width: 0;
}

/* Typography */
h1, h2, h3, .serif, .font-serif {
  font-family: 'Instrument Serif', serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.site-header-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.site-header-menus {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.site-nav-utilities {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

a.btn-header-cta {
  padding: 8px 12px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 1.35rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

.site-nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition);
}

.site-nav-link:hover,
.site-nav-link[aria-current="page"] {
  color: var(--text-primary);
}

.lang-switcher {
  display: flex;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lang-switcher a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.lang-switcher a:hover,
.lang-switcher a[aria-current="page"] {
  color: var(--text-primary);
}

.lang-switcher [aria-current="page"] {
  font-weight: 500;
}

.mobile-only {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 4px;
}

.nav-toggle-bar {
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform var(--transition), opacity var(--transition);
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: 7rem 0 6rem;
}

.hero-inner {
  max-width: 1200px;
}

.hero h1,
.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  text-wrap: balance;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  max-width: 58ch;
}

.hero-trust {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 2.25rem;
  max-width: 38ch;
}

.hero-footnotes {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 54ch;
}

.hero-footnotes li {
  margin-bottom: 0.35rem;
}

.hero-footnotes a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-title sup {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: super;
  line-height: 0;
  margin-left: 1px;
}

.hero .btn {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #18181b;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover,
a.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
  color: white;
}

.btn:active,
a.btn:active,
button.btn:active {
  transform: translateY(0);
}

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

.btn-secondary,
a.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background: var(--text-primary);
  color: white;
}

/* Sections */
section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.section-cta {
  margin-top: 1.5rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Problem section */
.problem-section .problem-headline {
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 1.5rem;
}

.problem-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.problem-list li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.problem-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.problem-experience {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.problem-resolution {
  font-family: 'Instrument Serif', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.positioning-statement {
  margin: 1.5rem 0 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Product intro — split layout */
.product-intro .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
}

.product-intro .split-content:last-child {
  padding-top: 0.5rem;
}

.product-intro .key-point {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* What's included — grouped */
.included-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.included-group {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.included-group:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  background: white;
}

.card:hover {
  border-color: #d0d0d0;
}

.included-cards .included-group.card {
  border-bottom: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.included-cards .included-group.card:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.included-group-title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.included-group-title .icon {
  display: inline-flex;
  color: var(--text-muted);
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.included-list li {
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}

.included-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.included-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.included-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.included-item-name {
  font-weight: 500;
  color: var(--text-primary);
}

.included-item-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Product cards — individual products */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.product-cards-included {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-cards.grid-3col,
.product-cards-merged {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.product-cards-merged .product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-cards-merged .product-card-price {
  margin-top: auto;
}

@media (max-width: 900px) {
  .product-cards-included {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card-icon {
  display: inline-flex;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.product-card-name {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: var(--text-primary);
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.product-card-price {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 0.5rem 0 0;
}

.included-note {
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.hr {
  height: 1px;
  background: #e5e5e5;
  margin: 60px 0;
}

.components-group-ongoing,
.components-group-onetime {
  opacity: 1;
}

/* How it works */
.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  font-size: 1.25rem;
}

.flow-item {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* How it works — stepped flow */
.flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 2.5rem;
  max-width: 800px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
}

.flow-step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-radius: 50%;
}

.flow-step-connector {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* How it works — vertical flow */
.how-it-works-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.how-it-works-header .section-description {
  margin-bottom: 0;
}

.flow-steps-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin: 2rem auto;
  max-width: 560px;
}

.flow-step-vertical-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.flow-step-vertical-item .flow-step-icon {
  display: inline-flex;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.flow-step-vertical-item h3 {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
}

.flow-step-vertical-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* How it works — horizontal flow cards */
.flow-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 2rem auto;
  max-width: 900px;
}

.flow-card {
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 200px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--bg-primary);
}

.flow-card-icon {
  display: inline-flex;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.flow-card h3 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.flow-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.45;
}

.flow-arrow-svg {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.flow-arrow-svg svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

/* Story section — editorial style */
.story-section {
  border-top: 1px solid var(--border);
}

.story-section .story-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.story-section .story-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  max-width: 850px;
}

.story-section .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-section .story-body {
  max-width: 520px;
}

.story-section .story-body p {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
}

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

.story-section .story-support {
  max-width: 480px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-secondary);
}

.story-section .story-support p {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.story-container-narrow {
  max-width: 800px;
}

.story {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
  color: #2a2a2a;
}

.story h2 {
  font-family: 'Instrument Serif', serif;
  font-style: normal;
  font-size: 32px;
  margin-bottom: 24px;
}

.story p {
  margin-bottom: 18px;
}

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

.story-body-single {
  max-width: 780px;
}

.story-body-single.story {
  font-style: italic;
}

.story-body-single.story p {
  margin-bottom: 18px;
  color: #2a2a2a;
  line-height: 1.7;
  font-size: inherit;
}

.story-body-single p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.story-body-single p:last-child,
.story-body-single.story p:last-child {
  margin-bottom: 0;
}

.industry-copy p {
  margin: 0 0 0.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.industry-copy p:first-child {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
}

.industry-copy p:last-child {
  margin-bottom: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.story-resolution {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 1.5rem 0 0 !important;
}

/* Card main — Digital Business Presence */
.card-main.pricing-hero-card {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  text-align: center;
  padding: 40px;
}

.card-main .btn {
  display: inline-flex;
  margin-top: 1rem;
}

/* Price box sub-card */
.price-box {
  border: 1px solid #e5e5e5;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.price-box-title,
.price-box h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

/* Pricing hero card */
.pricing-hero-card {
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 2rem;
  background: var(--bg-secondary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.pricing-hero-card .pricing-hero-icon {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-hero-card .pricing-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.pricing-hero-card .pricing-hero-desc {
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.pricing-hero-card .pricing-hero-tagline {
  color: var(--text-secondary);
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

.main-product-card.pricing-hero-card {
  padding: 2.5rem 3rem;
}

.main-product-card .pricing-hero-title {
  font-size: 1.75rem;
}

.main-product-card .pricing-hero-desc {
  font-size: 1.1rem;
}

.pricing-hero-card .pricing-hero-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.pricing-hero-card .pricing-hero-features li {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-hero-card .pricing-hero-price {
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
}

/* Built Europe grid */
.built-europe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.built-differently-block,
.gdpr-block {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.built-differently-block .section-title,
.gdpr-block .section-title {
  margin-bottom: 1rem;
}

/* Why comparison */
.why-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.why-comparison-column h4 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.why-comparison-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.why-comparison-list li:last-child {
  border-bottom: none;
}

.why-bullet-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.why-comparison-column.with-repraesent .why-bullet-icon {
  color: var(--accent);
}

.why-conclusion {
  margin: 2rem 0 0;
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Client cards */
.client-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.client-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-primary);
}

.client-card-image {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.client-card img,
.client-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.client-card-image span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.client-card-body {
  padding: 1.25rem;
}

.client-card-body h3 {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.client-card-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Service block icon */
.service-block .service-icon {
  display: inline-flex;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* How it works — centered vertical */
.flow-section-centered .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header-centered {
  margin-left: auto;
  margin-right: auto;
}

.flow-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.flow-step-vertical {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--text-primary);
}

.flow-arrow-vertical {
  color: var(--text-muted);
  font-size: 1.25rem;
}

.flow-cta {
  margin-top: 2rem;
}

.placeholder-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 720px;
}

.placeholder-image {
  aspect-ratio: 16 / 10;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-bundle {
  margin-bottom: 2rem;
}

.pricing-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 2.75rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.pricing-bundle-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.pricing-table {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 0.4rem 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  font-weight: 500;
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--text-primary);
}

/* Additional services */
.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
}

.services-cards {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
}

.service-block {
  padding: 0;
}

.services-cards .service-block.card {
  padding: 1.5rem;
}

.service-block h3 {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.service-desc {
  margin: 0 0 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-price {
  margin: 0;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.98rem;
}

.service-block p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 640px;
}

.audience-block h3 {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.audience-block p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Audience — strong split */
.audience-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 100%;
}

.audience-block-brands,
.audience-block-retailers {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.audience-block-brands h3,
.audience-block-retailers h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.audience-block-brands p,
.audience-block-retailers p {
  margin: 0 0 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.audience-block-brands p:last-child,
.audience-block-retailers p:last-child {
  margin-bottom: 0;
}

.audience-intro {
  margin: 0 0 0.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.audience-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.audience-bullet-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.audience-closing {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Why this works */
.why-section .section-header {
  margin-bottom: 2rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
}

.why-list li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.why-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Clients */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.client-item {
  color: var(--text-secondary);
  font-size: 1rem;
}

.client-name {
  font-weight: 500;
  color: var(--text-primary);
}

/* Lead form */
.lead-form {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-feedback.success {
  background: rgba(92, 107, 92, 0.15);
  color: var(--accent-hover);
}

.form-feedback.error {
  background: rgba(180, 80, 80, 0.1);
  color: #8B3A3A;
}

/* FAQ */
.faq .container {
  max-width: var(--content-max);
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: transparent;
}

.faq details:first-child {
  padding-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-weight: 300;
  color: var(--text-muted);
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem 1.5rem;
  align-items: center;
}

.footer-cta {
  grid-column: 1 / -1;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-cta-text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 32ch;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-meta {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-meta p {
  margin: 0;
}

/* Team page */
.team-hero,
.legal-hero {
  padding: 5rem 0 4rem;
}

.team-section {
  padding: var(--section-gap) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.person-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.person-avatar {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-name {
  font-weight: 600;
  margin: 0 0 0.15rem;
}

.person-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.person-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.advisor-card {
  max-width: 560px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

/* Legal pages */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.legal-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-primary);
}

.legal-card h2 {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-list li {
  padding: 0.2rem 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.legal-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.legal-section h2 {
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.legal-section p,
.legal-section ul {
  margin: 0 0 0.75rem;
  color: var(--text-secondary);
}

.legal-section ul {
  padding-left: 1.25rem;
}

.legal-updated,
.legal-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Hero — 2-column layout with visual */
@media (min-width: 761px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-content {
    min-width: 0;
  }
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Objection handling section */
.objections-section {
  background: var(--bg-secondary);
}

.objection-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.objection-card {
  padding: 1.75rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-primary);
  border-radius: 0 6px 6px 0;
}

.objection-card-question {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.objection-card-answer {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social proof / stats bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
  letter-spacing: 0.02em;
}

/* Flow card step numbers */
.flow-card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}


/* Responsive */
@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .site-header-inner {
    position: relative;
  }

  .site-header-menus {
    flex: 1;
    justify-content: flex-end;
    gap: 0.5rem;
    min-width: 0;
  }

  .site-nav-utilities {
    gap: 0.5rem;
  }

  a.btn-header-cta {
    padding: 8px 10px;
    font-size: 0.8125rem;
  }

  .lang-switcher {
    font-size: 0.85rem;
    gap: 0.3rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 10px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .site-nav-list li {
    width: 100%;
  }

  .site-nav-link {
    display: block;
    padding: 0.875rem 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
  }

  .site-nav-link:hover,
  .site-nav-link:active {
    background: var(--bg-secondary);
  }

  .mobile-only {
    display: list-item;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-meta {
    text-align: left;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .flow-diagram {
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin-left: 0.5rem;
  }

  .pricing-amount {
    font-size: 2.25rem;
  }

  .section-split .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-section .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-section .story-body,
  .story-section .story-support {
    max-width: 100%;
  }

  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .flow-step-connector {
    transform: rotate(90deg);
    margin-left: 0.5rem;
  }

  .footer-cta {
    padding-bottom: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }


  .audience-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .audience-block-brands,
  .audience-block-retailers {
    padding: 1.5rem 0;
  }

  .placeholder-images {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .built-europe-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

  .product-cards.grid-3col,
  .product-cards-merged {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-arrow-svg {
    transform: rotate(90deg);
  }

  .faq-items {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 2rem;
  }

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

  .stats-bar {
    gap: 2rem 1.5rem;
  }

  .stat-item {
    min-width: 100px;
  }
}

@media (max-width: 500px) {
  .product-cards.grid-3col,
  .product-cards-merged {
    grid-template-columns: 1fr;
  }
}

/* ICP: hero CTA row (dual buttons) */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ICP: text-only hero (no split-column empty grid cell) */
@media (min-width: 761px) {
  .hero.hero-text-only .hero-inner {
    grid-template-columns: 1fr;
    max-width: 920px;
  }
}

/* ICP: homepage band */
.home-icp-band {
  background: var(--bg-secondary);
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.home-icp-band .section-title,
.home-icp-band .eyebrow,
.home-icp-band .section-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.home-icp-band-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.75rem;
}

/* ICP: comparison table (desktop grid) */
.comparison-table-desktop {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.45;
  background: var(--bg-primary);
}

.comparison-table-desktop .comparison-row {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
}

.comparison-table-desktop .comparison-row:last-child {
  border-bottom: none;
}

.comparison-table-desktop .comparison-head {
  background: var(--bg-secondary);
  font-weight: 600;
}

.comparison-table-desktop [role="columnheader"],
.comparison-table-desktop [role="cell"] {
  padding: 0.75rem 0.6rem;
  border-left: 1px solid var(--border);
  color: var(--text-secondary);
}

.comparison-table-desktop [role="columnheader"]:first-child,
.comparison-table-desktop [role="cell"]:first-child,
.comparison-table-desktop .comparison-col-label {
  border-left: none;
}

.comparison-col-label[role="rowheader"] {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.comparison-col-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.2;
}

.comparison-stacked {
  display: none;
}

.comparison-provider-title {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.comparison-provider-dl {
  margin: 0;
  padding: 0;
}

.comparison-provider-dl dt {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.9rem;
}

.comparison-provider-dl dt:first-child {
  margin-top: 0;
}

.comparison-provider-dl dd {
  margin: 0.2rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.45;
}

.comparison-provider-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem 1.15rem;
  background: var(--bg-primary);
}

.independence-list li {
  line-height: 1.6;
}

.story-signature {
  font-family: 'Instrument Serif', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0 0;
  text-align: right;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .comparison-table-desktop {
    display: none;
  }

  .comparison-stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
