/* ========== RESET & TOKENS ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2C2416;
  background: #FAF7F2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --bg: #FAF7F2;
  --surface: #EDE4D3;
  --dark: #2C2416;
  --olive: #7C8C5E;
  --olive-hover: #6a7a4f;
  --warm: #C4A882;
  --text: #2C2416;
  --text-sec: #5C4F3D;
  --muted: #9C8C78;
  --border: #E0D8CC;
  --white: #FFFFFF;
  --max-w: 1140px;
  --section-py: 5rem;
  --section-px: 3rem;
  --radius-card: 12px;
  --radius-btn: 7px;
}

/* ========== UTILITIES ========== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.landing-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.landing-reveal.visible { opacity: 1; transform: none; }
.landing-reveal-delay-1 { transition-delay: .1s; }
.landing-reveal-delay-2 { transition-delay: .2s; }
.landing-reveal-delay-3 { transition-delay: .3s; }

.eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow-line { width: 24px; height: 1px; background: var(--warm); }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; padding-bottom: 1.25rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--text);
}
.nav-logo span { color: var(--olive); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-size: 14px; color: #7A6A52; transition: color .2s; }
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); font-weight: 500; }
.nav-cta {
  font-size: 13px; background: var(--dark); color: var(--bg);
  border-radius: 6px; padding: 8px 20px; transition: background .15s;
}
.nav-cta:hover { background: #3d3225; }
.nav-login {
  font-size: 13px; color: var(--olive); font-weight: 500;
  border: 1px solid var(--olive); border-radius: 6px;
  padding: 7px 18px; transition: all .15s;
}
.nav-login:hover { background: var(--olive); color: var(--bg); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 1px; }
.nav-mobile {
  display: none; background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px; flex-direction: column; gap: 12px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 14px; font-weight: 500; color: var(--dark); padding: 8px 0; }
.nav-mobile a:hover { color: var(--olive); }
.nav-mobile .nav-cta { text-align: center; display: block; }

.cta-short { display: none; }
@media (max-width: 768px) {
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ========== HERO (2-column) ========== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; padding: 4.5rem 0 4rem;
  max-width: var(--max-w); margin: 0 auto;
}
.hero .container { display: contents; }
.hero-left { padding-left: var(--section-px); }
.hero-right { padding-right: var(--section-px); }

.hero-h {
  font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700;
  line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.hero-h em { color: var(--olive); font-style: italic; }
.hero-sub {
  font-size: 15px; color: var(--text-sec); line-height: 1.7;
  margin-bottom: 1.75rem; max-width: 440px;
}
.value-stack { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 8px; }
.value-stack li {
  font-size: 13.5px; color: var(--text-sec); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}
.value-stack li::before {
  content: ''; width: 6px; height: 6px; min-width: 6px;
  background: var(--olive); border-radius: 50%; margin-top: 6px;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.btn-main {
  font-size: 14px; background: var(--olive); color: var(--bg);
  border-radius: var(--radius-btn); padding: 12px 28px; font-weight: 500;
  display: inline-block; transition: background .15s, transform .15s;
}
.btn-main:hover { background: var(--olive-hover); transform: translateY(-1px); }
.btn-ghost {
  font-size: 14px; color: var(--text-sec);
  border-bottom: 1px solid var(--warm); padding-bottom: 1px;
}
.trust {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.5rem; border-top: 0.5px solid var(--border);
}
.trust-item { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-dot { width: 5px; height: 5px; background: var(--olive); border-radius: 50%; flex-shrink: 0; }

.hero-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,36,22,0.06);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .hero-left, .hero-right { padding: 0 var(--section-px); }
  .hero-h { font-size: 32px; }
}


/* ========== TAB BAR ========== */
.tabbar {
  position: sticky; top: 58px; z-index: 90;
  background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 0;
}
.tabbar-inner { display: flex; justify-content: center; gap: 6px; }
.tabbar-btn {
  font-weight: 500; font-size: 15px; color: var(--muted);
  padding: 8px 24px; border-radius: 100px;
  border: 1px solid transparent; transition: all .25s; white-space: nowrap;
}
.tabbar-btn:hover { color: var(--text); background: rgba(0,0,0,.03); }
.tabbar-btn.active { color: var(--olive); background: rgba(124,140,94,.08); border-color: rgba(124,140,94,.15); }

@media (max-width: 768px) {
  .tabbar { top: 57px; padding: 10px 0; }
  .tabbar-btn { font-size: 13px; padding: 6px 16px; }
}

/* ========== TAB CONTENT ========== */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.tab-hero { padding: 56px 0 40px; text-align: center; }
.tab-hero-title { font-weight: 600; font-size: clamp(26px,3.5vw,36px); margin-bottom: 12px; }
.tab-hero-sub { font-size: clamp(15px,2vw,18px); color: var(--text-sec); max-width: 540px; margin: 0 auto; line-height: 1.6; }

/* ========== FEATURE SECTIONS ========== */
.feat { padding: 56px 0; }
.feat + .feat { padding-top: 0; }
.feat-header { text-align: center; margin-bottom: 48px; }
.feat-header h2 { font-weight: 600; font-size: 28px; margin-bottom: 10px; }
.feat-header p { font-size: 16px; color: var(--text-sec); max-width: 500px; margin: 0 auto; }
.feat-label { font-size: 12px; font-weight: 500; color: var(--olive); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.feat-title { font-weight: 600; font-size: 24px; margin-bottom: 12px; }
.feat-text { font-size: 15px; color: var(--text-sec); line-height: 1.7; }
.feat-points { padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.feat-points li {
  font-size: 13px; color: var(--text-sec); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.feat-points li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive); opacity: .5;
}
.feat-mockup {
  border-radius: var(--radius-card); border: 1px solid var(--border);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.05);
  background: var(--white);
}

/* Layout A: text left + mockup right */
.feat-a .container { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.feat-a .feat-copy { order: 1; }
.feat-a .feat-visual { order: 2; }

/* Layout B: mockup left + text right */
.feat-b .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.feat-b .feat-copy { order: 2; }
.feat-b .feat-visual { order: 1; }

/* Layout D: 3 feature cards */
.feat-d .feat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-d .feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 24px; transition: all .3s;
}
.feat-d .feat-card:hover { border-color: var(--olive); box-shadow: 0 4px 16px rgba(124,140,94,.08); transform: translateY(-2px); }
.feat-d .feat-card-icon { font-size: 24px; margin-bottom: 12px; color: var(--text-sec); }
.feat-d .feat-card h3 { font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.feat-d .feat-card h4 { font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.feat-d .feat-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }
.feat-d .feat-cards-4 { grid-template-columns: repeat(4,1fr); }

.tab-cta { text-align: center; padding: 40px 0 0; }
.tab-cta .btn-main { opacity: 1; }

@media (max-width: 900px) {
  .feat-a .container, .feat-b .container { grid-template-columns: 1fr; gap: 24px; }
  .feat-a .feat-copy, .feat-b .feat-copy { order: 1; }
  .feat-a .feat-visual, .feat-b .feat-visual { order: 2; }
  .feat-d .feat-cards { grid-template-columns: 1fr 1fr; }
  .feat-d .feat-cards-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feat-d .feat-cards, .feat-d .feat-cards-4 { grid-template-columns: 1fr; }
  .feat-title { font-size: 20px; }
  .feat-text { font-size: 14px; }
  .tab-hero { padding: 40px 0 24px; }
  .feat { padding: 40px 0; }
}

/* ========== SECTION SEPARATORS ========== */
.section-sep { padding-top: 0 !important; }
.section-sep::before {
  content: '';
  display: block;
  width: calc(100% - var(--section-px) * 2);
  max-width: var(--max-w);
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  /* ~40px space above line (from prev section's bottom padding) + 40px below */
  margin-bottom: 2.5rem;
}

/* ========== PERSONAS ========== */
.personas { padding: 64px 0; }
.personas-header { text-align: center; margin-bottom: 40px; }
.personas-title { font-weight: 600; font-size: 32px; margin-bottom: 10px; }
.personas-sub { font-size: 16px; color: var(--text-sec); }
.personas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.persona-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px; transition: all .3s;
}
.persona-card:hover { border-color: var(--olive); box-shadow: 0 4px 16px rgba(124,140,94,.08); }
.persona-role { font-weight: 600; font-size: 18px; margin-bottom: 4px; }
.persona-who { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.persona-desc { font-size: 15px; color: var(--text-sec); line-height: 1.6; margin-bottom: 16px; }
.persona-points { display: flex; flex-direction: column; gap: 6px; }
.persona-points li {
  font-size: 13px; line-height: 1.5; padding-left: 14px; position: relative;
}
.persona-points li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--olive);
}
.personas-grid-2 { grid-template-columns: repeat(2,1fr); }

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

/* ========== PREČO AVENOLA ========== */
.why-section { padding: var(--section-py) 0; }
.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem;
}
.why-sub { font-size: 15px; color: var(--text-sec); line-height: 1.7; max-width: 520px; margin-bottom: 3rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.why-card {
  padding: 2rem; border: 1px solid var(--border);
  border-radius: var(--radius-card); background: var(--white); transition: border-color .2s;
}
.why-card:hover { border-color: var(--warm); }
.why-card-number { font-size: 11px; font-weight: 600; color: var(--warm); letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 0.5rem;
}
.why-card-text { font-size: 14px; color: var(--text-sec); line-height: 1.65; }
.founder-strip {
  margin-top: 3rem; padding: 2rem; background: var(--dark);
  border-radius: var(--radius-card); text-align: center;
}
.founder-text { font-size: 15px; color: var(--warm); line-height: 1.6; max-width: 480px; margin: 0 auto; }

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } .why-heading { font-size: 28px; } }

/* ========== EUROFONDY ========== */
.euro-section { padding: var(--section-py) 0; text-align: center; }
.euro-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.euro-sub { font-size: 15px; color: var(--text-sec); line-height: 1.7; max-width: 540px; margin: 0 auto; }
.euro-cta-wrap { margin-top: 2rem; }

@media (max-width: 900px) {
  .euro-heading { font-size: 28px; }
}

/* ========== FAQ (landing section) ========== */
.faq-landing { padding: var(--section-py) 0; }
.faq-landing .container { max-width: 740px; }
.faq-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem;
}
.faq-sub { font-size: 15px; color: var(--text-sec); line-height: 1.7; margin-bottom: 3rem; }
.faq-sub a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 16px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q:hover { color: var(--olive); }
.faq-q-arrow {
  font-size: 20px; color: var(--warm); font-weight: 300;
  flex-shrink: 0; margin-left: 1rem; transition: transform .3s;
}
.faq-item.open .faq-q-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 1rem 0 0; font-size: 14px; color: var(--text-sec); line-height: 1.7; max-width: 600px; }

/* ========== CTA / CONTACT ========== */
.cta-section { padding: var(--section-py) var(--section-px); background: var(--dark); }
.cta-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--bg); line-height: 1.2; margin-bottom: 0.75rem;
}
.cta-sub { font-size: 15px; color: var(--warm); line-height: 1.7; margin-bottom: 0.5rem; }
.cta-speed { font-size: 13px; color: var(--muted); margin-bottom: 2.5rem; }
.cta-form {
  background: var(--bg); border-radius: var(--radius-card);
  padding: 2rem; text-align: left;
}
.form-group { margin-bottom: 1.25rem; }
.form-label { font-size: 13px; color: var(--text-sec); font-weight: 500; display: block; margin-bottom: 0.4rem; }
.form-label .req { color: var(--olive); }
.form-input {
  width: 100%; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-btn);
  padding: 10px 14px; font-size: 14px; color: var(--text);
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color .15s;
}
.form-input::placeholder { color: var(--warm); }
.form-input:focus { border-color: var(--olive); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--olive); color: var(--bg);
  border: none; border-radius: var(--radius-btn); padding: 14px;
  font-size: 15px; font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background .15s, transform .15s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--olive-hover); transform: translateY(-1px); }
.form-privacy {
  font-size: 11px; color: var(--muted); margin-top: 1rem;
  text-align: center; line-height: 1.5;
}
.form-privacy a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
.form-privacy button {
  color: var(--olive); font-size: 11px; text-decoration: underline;
  text-underline-offset: 2px; background: none; border: none;
  cursor: pointer; font-family: inherit; padding: 0;
}
.cta-closing { margin-top: 2rem; font-size: 14px; color: var(--muted); line-height: 1.6; }

.success-message { display: none; text-align: center; padding: 40px 0; }
.success-message .check { font-size: 48px; color: var(--olive); }
.success-message p { font-size: 20px; font-weight: 700; color: var(--text); margin-top: 16px; }
.success-message .detail { font-size: 14px; color: var(--muted); margin-top: 8px; font-weight: 400; }

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

/* ========== FOOTER ========== */
.footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--section-px); border-top: 0.5px solid var(--border);
  font-size: 12px; color: var(--muted);
}
@media (max-width: 480px) {
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}


/* ========== PRIVACY MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(44,36,22,.5);
  z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-card);
  max-width: 520px; width: 100%; max-height: 80vh;
  overflow-y: auto; padding: 32px;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-header button { font-size: 20px; color: var(--muted); line-height: 1; background: none; border: none; cursor: pointer; }
.modal-body { font-size: 14px; line-height: 1.7; color: var(--text-sec); }
.modal-body h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 700; margin-top: 20px; margin-bottom: 6px;
}

/* ========== SUBPAGE HERO ========== */
.subpage-hero { padding: 4rem var(--section-px) 3rem; text-align: center; }
.subpage-eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.subpage-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 700; margin-bottom: 0.75rem;
}
.subpage-text { font-size: 15px; color: var(--text-sec); line-height: 1.7; }

/* ========== INTEGRATIONS PAGE ========== */
.int-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px) 4rem; }
.int-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.int-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 2rem; transition: border-color .2s;
}
.int-card:hover { border-color: var(--warm); }
.int-card-icon {
  width: 40px; height: 40px; background: rgba(124,140,94,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--olive);
}
.int-card-icon svg { width: 20px; height: 20px; }
.int-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 0.5rem;
}
.int-card p { font-size: 14px; color: var(--text-sec); line-height: 1.65; margin-bottom: 1rem; }
.int-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.int-tag {
  font-size: 11px; color: #7A6A52; padding: 3px 10px;
  border: 0.5px solid #D9CFC0; border-radius: 100px; background: var(--bg);
}
.int-cta { text-align: center; padding: 2rem 0; }
.int-cta p { font-size: 15px; color: var(--text-sec); line-height: 1.7; margin-bottom: 1.25rem; }

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

/* ========== FAQ PAGE ========== */
.faq-container { max-width: 740px; margin: 0 auto; padding: 0 var(--section-px) 4rem; }
.faq-tabs { display: flex; gap: 6px; margin-bottom: 2rem; }
.faq-tab {
  font-size: 13px; padding: 6px 16px; border-radius: 100px;
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; transition: all .2s;
}
.faq-tab.active { background: var(--olive); color: var(--bg); }
.faq-tab:not(.active) { color: #7A6A52; background: var(--white); border: 0.5px solid #D9CFC0; }
.faq-cat {
  font-size: 10px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.4rem;
}

/* FAQ page contact section */
.contact-section { padding: 4rem var(--section-px); background: var(--dark); }
.contact-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--bg); margin-bottom: 0.5rem;
}
.contact-sub { font-size: 15px; color: var(--warm); margin-bottom: 2rem; }

/* ========== SECTION BACKGROUNDS ========== */
#tab-content { scroll-margin-top: 64px; }
#personas-section, #why-section, #euro-section, #faq-section, #zaujem { scroll-margin-top: 64px; }

/* ========== MOBILE GLOBAL ========== */
@media (max-width: 600px) {
  :root { --section-px: 1.5rem; --section-py: 3rem; }
  .subpage-heading { font-size: 32px; }
  .faq-heading, .why-heading, .euro-heading { font-size: 28px; }
  .personas-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .feat-mockup { zoom: 0.85; }
  .tabbar-inner { gap: 4px; }
  .tabbar-btn { font-size: 12px; padding: 6px 12px; }
}
@media (max-width: 375px) {
  .feat-mockup { zoom: 0.72; }
}
