/* ============================================================
   Offura Marketing Site — offura-site.css
   Redesign 2026
   Kleuren : #F97316 oranje · #1C1009 espresso · #FEFCF8 room
   Font    : Outfit (400 600 700 800)
   ============================================================ */

:root {
  --of-bg:        #FEFCF8;
  --of-bg-alt:    #F5F0E8;
  --of-bg-soft:   #FFFFFF;
  --of-card:      #FFFFFF;
  --of-border:    rgba(60, 40, 10, 0.12);
  --of-text:      #1C1009;
  --of-text-soft: #7A6850;

  --of-dark:      #1C1009;
  --of-dark-alt:  #241509;
  --of-dark-card: #2E1C0C;
  --of-dark-text: #FAF4EA;
  --of-dark-soft: #C4A87A;

  --of-primary:      #F97316;
  --of-primary-deep: #C2410C;
  --of-secondary:    #FBBF24;
  --of-ghost:        rgba(249, 115, 22, 0.10);
  --of-success:      #16A34A;
  --of-purple:       #9333EA;

  --of-radius:    14px;
  --of-radius-sm: 8px;
  --of-radius-lg: 24px;
}

/* ============================================================
   BASE
   ============================================================ */

html,
body {
  background-color: var(--of-bg) !important;
}

body {
  margin: 0;
  font-family: "Outfit", "Inter", "DM Sans", system-ui, sans-serif;
  color: var(--of-text);
  min-height: 100vh;
  background: var(--of-bg);
  line-height: 1.6;
}

main,
.of-section,
.of-hero,
.of-cta-band,
.of-footer {
  position: relative;
  z-index: 1;
}

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

a {
  transition: color 0.2s ease;
}

.of-container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.of-hidden { display: none !important; }

/* ============================================================
   HEADER
   ============================================================ */

.of-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(60, 40, 10, 0.09);
  box-shadow: 0 2px 12px rgba(60, 40, 10, 0.06);
  backdrop-filter: blur(12px);
}

.of-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 72px;
}

.of-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--of-dark-text);
  text-decoration: none;
  font-weight: 700;
}

.of-brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
}

.of-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.of-nav a {
  color: var(--of-text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}

.of-nav a:visited {
  color: var(--of-text-soft);
}

.of-nav a:hover,
.of-nav a.active,
.of-nav a.active:visited {
  color: var(--of-primary-deep);
  background: rgba(249, 115, 22, 0.10);
}

.of-header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.of-login-link {
  color: var(--of-text-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0.4rem 0.3rem;
  transition: color 0.2s ease;
}

.of-login-link:hover {
  color: var(--of-primary-deep);
}

.of-lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(249, 115, 22, 0.06);
}

.of-lang-switch a {
  color: var(--of-text-soft);
  border-radius: 999px;
  padding: 0.35rem 0.52rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.of-lang-switch a.active,
.of-lang-switch a:hover {
  color: #fff;
  background: var(--of-primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.of-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 10px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.of-btn-primary {
  background: var(--of-primary);
  border-color: var(--of-primary-deep);
  color: #fff;
}

.of-btn-primary:hover {
  background: var(--of-primary-deep);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.38);
  transform: translateY(-1px);
}

.of-btn-ghost {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--of-dark-text);
}

.of-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.of-btn-secondary {
  background: transparent;
  border-color: rgba(60, 40, 10, 0.22);
  color: var(--of-text);
}

.of-btn-secondary:hover {
  background: var(--of-bg-alt);
  border-color: rgba(60, 40, 10, 0.35);
}

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

.of-btn-outline:hover {
  background: var(--of-ghost);
}

.of-section-dark .of-btn-ghost,
.of-cta-band .of-btn-ghost {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--of-dark-text);
}

.of-section-dark .of-btn-ghost:hover,
.of-cta-band .of-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.of-btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

/* ============================================================
   MOBILE HAMBURGER
   ============================================================ */

.of-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
  border: 1px solid rgba(60, 40, 10, 0.18);
  background: rgba(60, 40, 10, 0.05);
  color: var(--of-text-soft);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.of-menu-toggle::before {
  content: "";
  width: 1.05rem;
  height: 0.75rem;
  background:
    linear-gradient(var(--of-text-soft), var(--of-text-soft)) 0 0    / 100% 2px no-repeat,
    linear-gradient(var(--of-text-soft), var(--of-text-soft)) 0 50%  / 100% 2px no-repeat,
    linear-gradient(var(--of-text-soft), var(--of-text-soft)) 0 100% / 100% 2px no-repeat;
}

.of-menu-toggle:hover,
.of-menu-toggle:focus-visible,
body.of-menu-open .of-menu-toggle {
  background: rgba(249, 115, 22, 0.10);
  color: var(--of-primary-deep);
}

/* ============================================================
   HERO  —  lichte achtergrond (grote afwijking van vorig design)
   ============================================================ */

.of-hero {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
  background: linear-gradient(155deg, #FEFCF8 0%, #FDF5E8 45%, #FEF9F4 100%);
  color: var(--of-text);
  border-bottom: 1px solid rgba(60, 40, 10, 0.08);
}

.of-hero-compact {
  padding-bottom: 1rem;
}

.of-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* Hero visual rechts */
.of-hero-visual {
  position: relative;
}

.of-hero .of-screen-card,
.of-hero-visual .of-screen-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(60, 40, 10, 0.1);
  background: #fff;
  box-shadow:
    20px 28px 72px rgba(60, 40, 10, 0.12),
    0 4px 12px rgba(60, 40, 10, 0.05);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1.5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}

.of-hero .of-screen-card:hover,
.of-hero-visual .of-screen-card:hover {
  transform: perspective(1100px) rotateY(-1deg) rotateX(0.5deg);
  box-shadow:
    28px 36px 90px rgba(60, 40, 10, 0.15),
    0 4px 12px rgba(60, 40, 10, 0.06);
}

.of-eyebrow {
  margin: 0;
  color: var(--of-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Typografie */
h1, h2, h3 {
  color: var(--of-text);
  font-family: "Outfit", system-ui, sans-serif;
}

.of-hero h1,
.of-hero h2,
.of-hero h3 {
  color: var(--of-text) !important;
}

h1 {
  margin: 0.65rem 0 1rem;
  line-height: 1.08;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
}

.of-hero:not(.of-hero-compact) h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  letter-spacing: -0.02em;
}

h2 {
  margin: 0.4rem 0 0.9rem;
  line-height: 1.2;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
}

h3 {
  margin: 0.3rem 0 0.6rem;
  line-height: 1.25;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.of-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--of-text-soft);
}

.of-section-head p,
.of-kpi p,
.of-faq p,
.of-feature-panel p,
.of-inline-note,
.of-cta-row p {
  color: var(--of-text-soft);
}

.of-hero .of-lead {
  color: var(--of-text-soft);
}

.of-btn-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* ============================================================
   TRUST TAGS  (lichte hero-achtergrond)
   ============================================================ */

.of-tags {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.of-tags span {
  border: 1px solid rgba(60, 40, 10, 0.10);
  border-radius: 6px;
  padding: 0.28rem 0.65rem;
  font-size: 0.82rem;
  color: var(--of-text-soft);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   SCREEN CARD  (algemeen, niet-hero)
   ============================================================ */

.of-screen-stack {
  position: relative;
  padding-bottom: 2.2rem;
}

.of-screen-card {
  margin: 0;
  border-radius: var(--of-radius);
  overflow: hidden;
  border: 1px solid var(--of-border);
  background: var(--of-card);
  box-shadow: 0 14px 40px rgba(60, 40, 10, 0.09);
  cursor: zoom-in;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.of-screen-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

.of-screen-card figcaption,
.of-shot figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.86rem;
  color: var(--of-text-soft);
}

.of-section-dark .of-shot figcaption {
  color: var(--of-dark-soft);
}

/* ============================================================
   STATS STRIP  (nieuw — oranje band)
   ============================================================ */

.of-stats-strip {
  background: var(--of-primary);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.of-stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(255,255,255,0.10), transparent 40%),
    radial-gradient(circle at 88% 50%, rgba(0,0,0,0.06), transparent 40%);
  pointer-events: none;
}

.of-stats-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.of-stat-item {
  text-align: center;
  padding: 0.4rem 1rem;
  position: relative;
}

.of-stat-item + .of-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.of-stat-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.of-stat-label {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-top: 0.22rem;
  line-height: 1.4;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.of-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.of-section:not(.of-section-dark):not(.of-section-alt) {
  background: var(--of-bg) !important;
}

.of-section.of-section-alt {
  background: var(--of-bg-alt) !important;
}

.of-section-dark {
  background: linear-gradient(180deg, var(--of-dark-alt) 0%, var(--of-dark) 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  color: var(--of-dark-text);
}

.of-section-dark h1,
.of-section-dark h2,
.of-section-dark h3 {
  color: var(--of-dark-text);
}

.of-section-dark .of-section-head p,
.of-section-dark .of-inline-note {
  color: var(--of-dark-soft);
}

.of-section-head {
  margin-bottom: 1.5rem;
}

.of-section-head-center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

/* ============================================================
   FEATURE RIJEN  (nieuw — wisselende lay-out)
   ============================================================ */

.of-frow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.of-frow:last-child {
  margin-bottom: 0;
}

.of-frow-rev .of-frow-visual { order: 2; }
.of-frow-rev .of-frow-text   { order: 1; }

.of-frow-label {
  display: inline-block;
  background: var(--of-ghost);
  color: var(--of-primary-deep);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.of-frow-text h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.18;
}

.of-frow-text p {
  color: var(--of-text-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.of-check-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.of-check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--of-text-soft);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.of-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--of-primary);
}

.of-check-list li::after {
  content: "";
  position: absolute;
  left: 0.36rem;
  top: 0.48rem;
  width: 0.27rem;
  height: 0.46rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.of-frow-visual figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(60, 40, 10, 0.1);
  box-shadow:
    14px 20px 56px rgba(60, 40, 10, 0.09),
    0 4px 12px rgba(60, 40, 10, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.of-frow-visual figure:hover {
  transform: translateY(-3px);
  box-shadow:
    18px 28px 72px rgba(60, 40, 10, 0.13),
    0 4px 12px rgba(60, 40, 10, 0.04);
}

.of-frow-visual img {
  width: 100%;
  display: block;
}

/* ============================================================
   KPI / BENEFIT CARDS
   ============================================================ */

.of-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.of-kpi,
.of-faq,
.of-price-card,
.of-feature-panel,
.of-table-wrap,
.of-shot {
  border-radius: var(--of-radius);
  border: 1px solid var(--of-border);
  background: var(--of-card);
  box-shadow: 0 6px 20px rgba(60, 40, 10, 0.05);
}

.of-section-dark .of-shot {
  border-color: rgba(249, 115, 22, 0.14);
  background: rgba(46, 28, 12, 0.55);
  box-shadow: none;
}

.of-kpi {
  padding: 1.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.of-faq {
  padding: 1.25rem 1.5rem;
}

.of-kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(60, 40, 10, 0.1);
}

.of-kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--of-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--of-primary);
}

.of-kpi h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.of-kpi p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ============================================================
   SHOT GRID
   ============================================================ */

.of-shot-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.of-shot {
  margin: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.of-shot img,
.of-screen-card img,
.of-panel-img-wrap img {
  aspect-ratio: 16 / 10;
  cursor: zoom-in;
  object-fit: cover;
}

.of-shot:hover,
.of-screen-card:hover,
.of-panel-img-wrap:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */

.of-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.15rem;
  align-items: start;
}

.of-price-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--of-card);
  border: 1px solid var(--of-border);
  border-radius: var(--of-radius);
  box-shadow: 0 6px 20px rgba(60, 40, 10, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.of-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--of-border);
  opacity: 0.7;
}

.of-price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 18px 50px rgba(60, 40, 10, 0.1);
}

.of-price-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.of-price {
  margin: 0.12rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--of-text-soft);
  line-height: 1.25;
}

.of-price-month {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  flex-wrap: nowrap;
  margin: 0.24rem 0 0 !important;
  color: var(--of-text) !important;
  white-space: nowrap;
}

.of-price-amount {
  font-size: clamp(1.95rem, 2.45vw, 2.25rem) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  color: var(--of-primary-deep) !important;
}

.of-price-period {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: var(--of-primary-deep) !important;
}

.of-price-billing {
  margin: 0.1rem 0 0.55rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--of-text-soft);
}

.of-price-card ul {
  margin: 0;
  padding: 0;
  color: var(--of-text-soft);
  flex: 1;
  list-style: none;
}

.of-price-card ul li {
  position: relative;
  margin-bottom: 0.52rem;
  padding-left: 1.55rem;
  line-height: 1.4;
  font-size: 0.93rem;
}

.of-price-card ul li.of-li-check::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 50%;
  background: var(--of-primary);
}

.of-price-card ul li.of-li-check::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.42rem;
  width: 0.28rem;
  height: 0.48rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.of-price-card ul li.of-li-no {
  opacity: 0.45;
  padding-left: 1.55rem;
}

.of-price-card ul li.of-li-no::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--of-text-soft);
}

.of-price-card .of-btn-ghost {
  background: var(--of-bg-alt);
  border-color: var(--of-border);
  color: var(--of-text);
}

.of-price-card .of-btn-ghost:hover {
  background: #EDE8DF;
  border-color: rgba(60, 40, 10, 0.2);
}

/* Uitgelichte kaart */
.of-price-featured {
  border-color: rgba(249, 115, 22, 0.4);
  background: linear-gradient(160deg, #FFF7F0, #FFFCF8);
  box-shadow: 0 18px 56px rgba(249, 115, 22, 0.14);
  transform: translateY(-6px);
}

.of-price-featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 72px rgba(249, 115, 22, 0.2);
}

.of-price-featured::before {
  height: 4px;
  opacity: 1;
  background: var(--of-primary);
}

/* Badge */
.of-badge {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 1;
  margin: 0;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--of-primary-deep);
  font-weight: 800;
}

/* Tier-badges */
.of-tier-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 0.35rem;
  line-height: 1.4;
}

.of-tier-starter {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--of-primary-deep);
}

.of-tier-pro {
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.25);
  color: var(--of-purple);
}

/* ============================================================
   FEATURE PANEL  (voor functies-pagina)
   ============================================================ */

.of-feature-panel {
  padding: 1.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
}

.of-feature-panel.of-panel-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.of-feature-panel.of-panel-reverse .of-panel-text  { order: 2; }
.of-feature-panel.of-panel-reverse .of-panel-img-wrap { order: 1; }

.of-feature-panel h2 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}

.of-feature-panel p {
  line-height: 1.65;
  color: var(--of-text-soft);
}

.of-feature-panel ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--of-text-soft);
  line-height: 1.7;
}

.of-feature-panel ul li {
  margin-bottom: 0.3rem;
}

.of-panel-img-wrap {
  border-radius: var(--of-radius);
  overflow: hidden;
  border: 1px solid var(--of-border);
  box-shadow: 0 10px 30px rgba(60, 40, 10, 0.07);
  transition: border-color 0.2s ease;
}

.of-panel-img-wrap:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

/* ============================================================
   VERGELIJKINGSTABEL
   ============================================================ */

.of-table-wrap {
  padding: 1rem;
  overflow-x: auto;
}

.of-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.of-compare-table th,
.of-compare-table td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(60, 40, 10, 0.08);
}

.of-compare-table th {
  color: var(--of-text);
  font-weight: 700;
  font-size: 0.9rem;
}

.of-compare-table td {
  color: var(--of-text-soft);
  font-size: 0.92rem;
}

.of-compare-table tr:last-child td {
  border-bottom: 0;
}

.of-compare-table .of-ct-feat {
  font-weight: 600;
  color: var(--of-text);
}

.of-ct-yes   { color: #0a8a52; font-weight: 700; }
.of-ct-no    { color: var(--of-text-soft); opacity: 0.5; }
.of-ct-limit { color: var(--of-primary-deep); font-weight: 600; }

.of-compare-table thead th {
  background: var(--of-bg-alt);
  border-bottom: 2px solid rgba(60, 40, 10, 0.12);
}

.of-compare-table thead th:first-child { border-radius: 8px 0 0 0; }
.of-compare-table thead th:last-child  { border-radius: 0 8px 0 0; }

.of-compare-table tbody tr:hover td {
  background: rgba(249, 115, 22, 0.03);
}

/* ============================================================
   STAPPEN  (behouden voor functies-pagina)
   ============================================================ */

.of-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.of-step {
  background: var(--of-card);
  border: 1px solid var(--of-border);
  border-radius: var(--of-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 6px 20px rgba(60, 40, 10, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.of-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(60, 40, 10, 0.1);
}

.of-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--of-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.of-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.of-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--of-text-soft);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */

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

.of-faq-list {
  border-radius: var(--of-radius);
  border: 1px solid var(--of-border);
  background: var(--of-card);
  box-shadow: 0 6px 20px rgba(60, 40, 10, 0.05);
}

.of-faq-list details {
  border-bottom: 1px solid rgba(60, 40, 10, 0.08);
  padding: 0.95rem 1.15rem;
}

.of-faq-list details:last-child {
  border-bottom: 0;
}

.of-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--of-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-right: 0.2rem;
}

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

.of-faq-list summary::after {
  content: "+";
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--of-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.of-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.of-faq-list p {
  margin: 0.65rem 0 0;
  color: var(--of-text-soft);
  line-height: 1.65;
}

.of-faq-category {
  margin-bottom: 2rem;
}

.of-faq-category h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--of-border);
}

/* ============================================================
   CTA BAND
   ============================================================ */

.of-cta-band {
  padding: 3.5rem 0;
  background: linear-gradient(160deg, var(--of-dark-alt) 0%, var(--of-dark) 100%) !important;
  border-top: 1px solid rgba(249, 115, 22, 0.12);
}

.of-cta-band h2 {
  color: var(--of-dark-text);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.of-cta-band .of-cta-row p {
  color: var(--of-dark-soft);
  font-size: 1rem;
}

.of-cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.of-cta-text h2 { margin: 0 0 0.4rem; }
.of-cta-text p  { margin: 0; }

.of-cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

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

.of-footer {
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  padding: 3.5rem 0 1.5rem;
  background: linear-gradient(180deg, var(--of-dark-alt) 0%, var(--of-dark) 100%) !important;
}

.of-footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.of-footer-brand {
  max-width: 380px;
}

.of-footer .of-footer-brand p {
  margin: 1rem 0 1.75rem;
  color: #A8936A;
  line-height: 1.65;
  font-size: 0.93rem;
}

.of-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.of-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  padding-top: 0.25rem;
}

.of-footer-links h3 {
  margin: 0 0 1rem;
  color: #FAF4EA;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.of-footer .of-footer-links a {
  display: block;
  margin: 0 0 0.65rem;
}

.of-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.of-footer p,
.of-footer a {
  margin: 0;
  color: #A8936A;
  text-decoration: none;
  font-size: 0.9rem;
}

.of-footer a:visited  { color: #A8936A; }
.of-footer a:hover,
.of-footer a:focus-visible { color: #FAF4EA; }

.of-footer a { margin-left: 0.9rem; }

.of-footer-brand .of-brand,
.of-footer-actions a,
.of-footer-links a {
  margin-left: 0;
}

.of-footer .of-btn-primary,
.of-footer .of-btn-primary:visited { color: #fff; }

.of-footer .of-btn-ghost,
.of-footer .of-btn-ghost:visited { color: var(--of-dark-text); }

.of-footer .of-lang-switch a { color: var(--of-dark-soft); }

/* ============================================================
   TRUST BAR  (behouden voor compat.)
   ============================================================ */

.of-trustbar {
  border-top: 1px solid var(--of-border);
  border-bottom: 1px solid var(--of-border);
  padding: 0.85rem 0;
  background: var(--of-bg-alt);
}

.of-trustbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: center;
  align-items: center;
}

.of-trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--of-text-soft);
}

.of-trust-item svg {
  color: var(--of-primary);
  flex-shrink: 0;
}

/* ============================================================
   INLINE NOTE / PROSE
   ============================================================ */

.of-inline-note {
  margin-top: 0.95rem;
  color: var(--of-text-soft);
  font-size: 0.9rem;
}

.of-inline-note a {
  color: var(--of-primary-deep);
  text-decoration: underline;
}

.of-section-dark .of-inline-note a {
  color: var(--of-secondary);
}

.of-prose {
  max-width: 740px;
}

.of-prose h2 {
  margin: 2rem 0 0.55rem;
}

.of-prose h2:first-child {
  margin-top: 0;
}

.of-prose p,
.of-prose ul {
  color: var(--of-text-soft);
  line-height: 1.72;
  margin: 0 0 0.85rem;
}

.of-prose ul {
  padding-left: 1.35rem;
}

.of-prose a {
  color: var(--of-primary);
  text-decoration: underline;
}

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

.of-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 0.8fr);
  gap: 1.35rem;
  align-items: start;
  max-width: 1040px;
}

.of-contact-aside,
.of-form-card {
  border-radius: var(--of-radius);
  border: 1px solid var(--of-border);
  background: var(--of-card);
  box-shadow: 0 6px 20px rgba(60, 40, 10, 0.05);
  padding: 1.5rem;
}

.of-contact-aside h2,
.of-form-card h2 {
  margin-top: 0;
}

.of-contact-aside ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--of-text-soft);
}

.of-contact-aside li {
  padding: 0.72rem 0;
  border-top: 1px solid rgba(60, 40, 10, 0.08);
  line-height: 1.5;
}

.of-contact-form {
  display: grid;
  gap: 0.75rem;
}

.of-field {
  display: grid;
  gap: 0.35rem;
}

.of-field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--of-text);
}

.of-field input,
.of-field select,
.of-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(60, 40, 10, 0.18);
  border-radius: 10px;
  background: #ffffff;
  color: var(--of-text);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.66rem 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.of-field input:focus,
.of-field select:focus,
.of-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
  border-color: rgba(249, 115, 22, 0.55);
}

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

.of-cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: 600px;
  width: calc(100% - 2rem);
  background: rgba(28, 16, 9, 0.97);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.of-cookie-kop {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.of-cookie-banner p {
  margin: 0;
  color: #C4A87A;
  font-size: 0.83rem;
  line-height: 1.5;
}

.of-cookie-banner p a {
  color: var(--of-secondary);
  text-decoration: underline;
}

.of-cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.of-cookie-accept {
  background: var(--of-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.4rem 1rem;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.of-cookie-decline {
  background: transparent;
  color: #C4A87A;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.of-cookie-accept:hover {
  background: var(--of-primary-deep);
}

.of-cookie-decline:hover {
  background: rgba(249, 115, 22, 0.08);
}

.of-cookie-reset {
  margin-left: 1.5rem;
  padding: 0;
  color: #C4A87A;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.of-cookie-reset:hover {
  color: #fff;
}

.of-language-suggestion {
  position: fixed;
  right: 1rem;
  bottom: 6.75rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: calc(100% - 2rem);
  padding: 0.7rem 0.85rem;
  color: #2D1B0D;
  background: #FFF7ED;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(45, 27, 13, 0.16);
  font-size: 0.88rem;
}

.of-language-suggestion span {
  font-weight: 800;
  white-space: nowrap;
}

.of-language-suggestion a {
  color: var(--of-primary-deep);
  font-weight: 800;
  text-decoration: none;
}

.of-language-suggestion a:hover {
  text-decoration: underline;
}

.of-language-suggestion button {
  padding: 0;
  color: #7C4A21;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.of-language-suggestion button:hover {
  color: #2D1B0D;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.of-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(10, 5, 0, 0.90);
}

.of-lightbox.open {
  display: flex;
}

.of-lightbox-dialog {
  width: min(1300px, 96vw);
  max-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
  background: var(--of-dark);
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.of-lightbox img {
  width: 100%;
  max-height: calc(92vh - 58px);
  object-fit: contain;
  background: var(--of-dark);
}

.of-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.95rem;
  color: var(--of-dark-text);
  background: var(--of-dark-card);
}

.of-lightbox-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.of-lightbox-close {
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--of-dark-text);
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-size: 0.9rem;
}

/* ============================================================
   REVEAL ANIMATIES
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ============================================================
   UTILITIES
   ============================================================ */

.of-block        { display: block; }
.of-text-center  { text-align: center; }
.of-mt-1         { margin-top: 1rem; }
.of-mt-2         { margin-top: 2rem; }
.of-mb-1         { margin-bottom: 1rem; }
.of-mb-2         { margin-bottom: 2rem; }
.of-pt-0         { padding-top: 0 !important; }

.of-price-note {
  margin-top: 0.8rem;
  padding: 0.6rem 0.9rem;
  background: var(--of-bg-alt);
  border: 1px solid var(--of-border);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--of-text-soft);
}

/* ============================================================
   RESPONSIVE — 1120px
   ============================================================ */

@media (max-width: 1120px) {
  .of-kpi-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .of-steps-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .of-footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================================
   RESPONSIVE — 860px
   ============================================================ */

@media (max-width: 860px) {
  .of-header {
    max-height: 100svh;
    overflow-y: auto;
  }

  .of-header-row {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand menu"
      "nav nav"
      "cta cta";
    gap: 0.65rem;
    min-height: 64px;
    padding: 0.62rem 0;
  }

  .of-brand        { grid-area: brand; }
  .of-menu-toggle  { display: inline-flex; grid-area: menu; }

  .of-nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    padding: 0.45rem;
    border: 1px solid rgba(60, 40, 10, 0.10);
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    background: rgba(255, 255, 255, 0.99);
    box-sizing: border-box;
  }

  .of-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.68rem 0.8rem;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
  }

  body.of-menu-open .of-nav { display: flex; }

  .of-header-cta {
    grid-area: cta;
    display: none;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.45rem;
    border: 1px solid rgba(60, 40, 10, 0.10);
    border-top: 1px solid rgba(60, 40, 10, 0.06);
    border-radius: 0 0 12px 12px;
    background: rgba(255, 255, 255, 0.99);
    box-sizing: border-box;
  }

  body.of-menu-open .of-header-cta { display: grid; }

  .of-header-cta .of-btn-primary {
    width: 100%;
    min-height: 44px;
    padding-inline: 0.65rem;
    white-space: nowrap;
    box-sizing: border-box;
  }

  .of-header-cta .of-login-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .of-hero-grid {
    grid-template-columns: 1fr;
  }

  .of-hero .of-screen-card,
  .of-hero-visual .of-screen-card {
    transform: none;
  }

  .of-frow,
  .of-frow-rev {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }

  .of-frow-rev .of-frow-visual,
  .of-frow-rev .of-frow-text {
    order: unset;
  }

  .of-feature-panel {
    grid-template-columns: 1fr !important;
  }

  .of-feature-panel.of-panel-reverse .of-panel-text,
  .of-feature-panel.of-panel-reverse .of-panel-img-wrap {
    order: unset;
  }

  .of-contact-grid,
  .of-faq-grid,
  .of-cta-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .of-cta-actions { width: 100%; }

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

  .of-price-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .of-price-featured {
    transform: none;
  }

  .of-price-featured:hover {
    transform: translateY(-3px);
  }

  .of-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0;
  }
}

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */

@media (max-width: 640px) {
  .of-kpi-grid,
  .of-steps-grid,
  .of-shot-grid,
  .of-faq-grid {
    grid-template-columns: 1fr;
  }

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

  .of-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .of-footer a { margin-left: 0; margin-right: 0; }

  .of-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .of-cookie-actions { width: 100%; }

  .of-cookie-accept,
  .of-cookie-decline {
    flex: 1;
    text-align: center;
  }

  .of-language-suggestion {
    left: 1rem;
    right: 1rem;
    bottom: 8.75rem;
    flex-wrap: wrap;
  }
}

/* ============================================================
   RESPONSIVE — 520px
   ============================================================ */

@media (max-width: 520px) {
  .of-container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .of-header-cta {
    grid-template-columns: 1fr 1fr;
  }

  .of-lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .of-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .of-header-cta {
    grid-template-columns: 1fr;
  }
}
