/* Evolution Marketing — Digital Marketing Landing (BE FR/NL) */

:root {
  --red: #c8202f;
  --red-dark: #a01623;
  --navy: #16203a;
  --navy-soft: #23304f;
  --yellow: #f4c430;
  --text: #2b2b2f;
  --muted: #64687a;
  --bg: #ffffff;
  --bg-alt: #f7f4f3;
  --bg-navy: #16203a;
  --border: #e7e3e1;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(22, 32, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 32, 58, 0.14);
  --container: 1180px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--bg-navy); color: #fff; }

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--navy); line-height: 1.2; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.section--navy .section-head h2 { color: #fff; }
.section--navy .section-head p { color: rgba(255,255,255,0.75); }

h2, h3, h4 { color: var(--navy); line-height: 1.25; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 40px; font-weight: 700; font-size: 0.98rem;
  cursor: pointer; border: 2px solid transparent; transition: all 0.2s ease;
  font-family: inherit;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--yellow); }
.btn--block { width: 100%; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav__menu { display: flex; gap: 26px; list-style: none; }
.nav__menu a { font-weight: 600; font-size: 0.96rem; color: var(--navy); transition: color 0.2s; }
.nav__menu a:hover { color: var(--red); }
.header__actions { display: flex; align-items: center; gap: 18px; }

.lang-switch { display: flex; gap: 4px; font-weight: 700; font-size: 0.9rem; }
.lang-switch a { padding: 4px 8px; border-radius: 6px; color: var(--muted); }
.lang-switch a.active { background: var(--navy); color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: 0.3s; }

/* Hero */
.hero { padding: 70px 0 60px; background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--navy); margin: 12px 0 20px; line-height: 1.12; }
.hero__sub { font-size: 1.12rem; color: var(--muted); margin-bottom: 30px; }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 14px;
  padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero__badge .dot { width: 42px; height: 42px; border-radius: 12px; background: var(--red); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.2rem; }
.hero__badge strong { display: block; color: var(--navy); font-size: 0.98rem; }
.hero__badge span { color: var(--muted); font-size: 0.82rem; }

/* Age diagnostic */
.age-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.age-block--wide { max-width: 860px; margin: 0 auto; text-align: center; }
.age-block h3 { font-size: 1.5rem; margin-bottom: 10px; }
.age-block p { color: var(--muted); margin-bottom: 26px; }
.age-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.age-btn {
  padding: 16px 10px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; font-weight: 700; color: var(--navy); cursor: pointer; transition: all 0.2s; font-family: inherit; font-size: 0.98rem;
}
.age-btn:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.age-btn.selected { background: var(--red); border-color: var(--red); color: #fff; }
.age-note { margin-top: 18px; font-size: 0.9rem; color: var(--red); font-weight: 600; min-height: 1.2em; }

/* Problem block */
.text-narrow { max-width: 820px; margin: 0 auto; }
.text-narrow h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 18px; }
.text-narrow p { color: var(--muted); margin-bottom: 14px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split img { border-radius: 18px; box-shadow: var(--shadow); }
.split h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.check-list { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.check-list li::before { content: "✓"; color: var(--red); font-weight: 800; flex-shrink: 0; }

/* Cards grid */
.cards { display: grid; gap: 24px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: all 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: rgba(200,32,47,0.1);
  color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; font-weight: 800;
}
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card__num { font-size: 0.85rem; font-weight: 800; color: var(--red); letter-spacing: 0.1em; }

/* Routes */
.routes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.route {
  padding: 28px 24px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.route .num { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px; }
.route h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.route p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; padding: 20px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.trust-item::before { content: "✓"; width: 26px; height: 26px; flex-shrink: 0; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.trust-item span { font-weight: 600; color: var(--navy); font-size: 0.97rem; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); color: #fff; border-radius: 22px; padding: 54px 40px; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 30px; }
.cta .age-grid { max-width: 620px; margin: 0 auto 26px; }
.cta .age-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff; }
.cta .age-btn:hover, .cta .age-btn.selected { background: var(--red); border-color: var(--red); }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; font-size: 1.05rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--red); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* Articles */
.article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.25s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card .tag { display: inline-block; background: rgba(200,32,47,0.1); color: var(--red); font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.article-card .body { padding: 26px; }
.article-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.article-card p { color: var(--muted); font-size: 0.95rem; }

/* Map + Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.map-wrap { text-align: center; }
.map-wrap img { max-width: 100%; margin: 0 auto; }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.96rem; color: var(--text); background: #fff; transition: border 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; background: #e8f6ec; border: 1px solid #b6e0c2; color: #1c7a3d; padding: 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 600; }
.form-success.show { display: block; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__logo { height: 40px; margin-bottom: 18px; background: #fff; padding: 8px 12px; border-radius: 8px; display: inline-block; }
.footer__logo img { height: 34px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 0.94rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--yellow); }
.footer__col p { font-size: 0.94rem; margin-bottom: 8px; }
.disclaimer { margin-top: 44px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.copyright { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.45); text-align: center; }

/* Responsive */
@media (max-width: 960px) {
  .hero__grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; }
  .cards--3, .cards--4, .trust-grid, .routes { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .nav__menu { display: none; }
  .burger { display: flex; }
  .nav.open .nav__menu {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; padding: 20px 24px; box-shadow: var(--shadow); gap: 16px; border-bottom: 1px solid var(--border);
  }
  .age-grid, .cards--3, .cards--4, .trust-grid, .routes, .form-row { grid-template-columns: 1fr; }
  .age-block { padding: 26px; }
  .hero__badge { left: 10px; bottom: -16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta { padding: 40px 24px; }
}

/* ===== Sharp corners + white footer logo (project requirement) ===== */
:root { --radius: 0; --radius-sm: 2px; }
.btn, .lang-switch a, .hero__media img, .hero__badge, .hero__badge .dot,
.age-block, .age-btn, .card, .card__icon, .route, .route .num, .split img,
.trust-item, .trust-item::before, .cta, .faq-item, .article-card, .article-card .tag,
.map-wrap img, .form, .form-success { border-radius: 0 !important; }
.field input, .field select, .field textarea { border-radius: 2px !important; }
.footer__logo { background: none !important; padding: 0 !important; border-radius: 0 !important; }
.footer__logo img { height: 40px; }

/* ===== Legal pages ===== */
.legal-hero { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-soft) 100%); color: #fff; padding: 66px 0 58px; }
.legal-hero .eyebrow { color: var(--yellow); }
.legal-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: #fff; margin: 6px 0 14px; line-height: 1.14; }
.legal-hero p { color: rgba(255,255,255,0.82); max-width: 760px; margin: 0; }
.legal-hero .legal-updated { margin-top: 16px; font-size: 0.86rem; font-weight: 700; color: var(--yellow); }
.legal { padding: 64px 0 92px; }
.legal__layout { display: grid; grid-template-columns: 240px 1fr; gap: 54px; align-items: start; }
.legal__toc { position: sticky; top: 100px; border-left: 3px solid var(--red); padding-left: 18px; }
.legal__toc h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.legal__toc ul { list-style: none; display: grid; gap: 9px; }
.legal__toc a { font-size: 0.9rem; color: var(--muted); font-weight: 600; transition: color 0.2s; }
.legal__toc a:hover { color: var(--red); }
.legal__body { max-width: 780px; }
.legal__body h2 { font-size: 1.4rem; color: var(--navy); margin: 40px 0 14px; scroll-margin-top: 100px; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.08rem; color: var(--navy); margin: 24px 0 8px; }
.legal__body p { color: var(--text); margin-bottom: 14px; }
.legal__body ul { margin: 0 0 16px 0; padding-left: 20px; display: grid; gap: 8px; }
.legal__body li { color: var(--text); }
.legal__body a { color: var(--red); font-weight: 600; }
.legal__body a:hover { text-decoration: underline; }
.legal__card { background: var(--bg-alt); border: 1px solid var(--border); padding: 22px 24px; margin: 18px 0; }
.legal__card p:last-child { margin-bottom: 0; }
.legal__table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: 0.92rem; }
.legal__table th, .legal__table td { text-align: left; padding: 12px 14px; border: 1px solid var(--border); vertical-align: top; }
.legal__table th { background: var(--bg-alt); color: var(--navy); font-weight: 700; }
@media (max-width: 900px) {
  .legal__layout { grid-template-columns: 1fr; gap: 24px; }
  .legal__toc { position: static; }
}
