/* Finexo.swiss Landingpage v2
   Dreamweaver-friendly: plain HTML + CSS + a tiny vanilla JS helper.
*/

:root {
  --ink: #172126;
  --muted: #5d6a70;
  --paper: #ffffff;
  --soft: #f4f6f5;
  --line: #dce2df;
  --accent: #9a7a45;
  --accent-dark: #765a2d;
  --dark: #11191d;
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 860px; }
.skip-link { position: absolute; left: -9999px; top: 10px; background: #fff; padding: 10px 14px; z-index: 1000; }
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand-mark { font-size: 23px; font-weight: 800; letter-spacing: .16em; }
.brand-sub { margin-top: 6px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 700; }
.nav-cta { border: 1px solid var(--ink); padding: 10px 15px; border-radius: 999px; }
.language-switch { display: flex; align-items: center; gap: 7px; padding-left: 18px; border-left: 1px solid var(--line); }
.language-switch a, .language-switch span { font-size: 12px; text-decoration: none; color: var(--muted); }
.language-switch span { opacity: .42; cursor: default; }
.language-switch a[aria-current="page"] { color: var(--ink); font-weight: 800; }

.hero {
  padding: 92px 0 78px;
  background: radial-gradient(circle at 82% 20%, rgba(154,122,69,.11), transparent 28%), linear-gradient(180deg, #fff 0%, #f7f8f7 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 14px; font-size: 12px; line-height: 1.4; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--accent-dark); }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { margin-bottom: 24px; max-width: 820px; font-size: clamp(42px, 5.5vw, 72px); letter-spacing: -.045em; }
h1 span { color: var(--accent-dark); }
h2 { margin-bottom: 18px; font-size: clamp(32px, 3.4vw, 48px); letter-spacing: -.035em; }
h3 { margin-bottom: 12px; font-size: 22px; }
.lead { max-width: 760px; margin: 0; font-size: clamp(18px, 2vw, 22px); color: var(--muted); }
.lead-small { max-width: 720px; margin: 0 0 26px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 26px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font: inherit; font-weight: 800; cursor: pointer; }
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: #263238; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-full { width: 100%; }
.trust-list { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; font-size: 14px; font-weight: 700; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--accent-dark); }
.languages { margin: 14px 0 0; font-size: 13px; color: var(--muted); }
.hero-card { padding: 34px; border-radius: var(--radius); background: var(--dark); color: #fff; box-shadow: 0 24px 70px rgba(17,25,29,.18); }
.hero-card h2 { font-size: 34px; }
.hero-card p { color: #d8dede; }
.card-kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-lines { margin-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-lines a { display: block; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.14); text-decoration: none; }
.contact-lines span, .contact-lines strong { display: block; }
.contact-lines span { font-size: 12px; color: #aeb9bd; }
.contact-lines strong { margin-top: 3px; font-size: 19px; }
.small-note { margin: 22px 0 0; font-size: 12px; }

.visual-proof { padding: 34px 0; border-bottom: 1px solid var(--line); background: #fff; }
.visual-proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.visual-proof-image { overflow: hidden; border-radius: 14px; background: var(--soft); }
.visual-proof-image img { width: 100%; min-height: 220px; object-fit: cover; }
.visual-proof-copy h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 12px; }
.visual-proof-copy p:last-child { max-width: 610px; margin-bottom: 0; color: var(--muted); font-size: 17px; }

.section { padding: 92px 0; }
.section-light { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading > p:last-child, .section-copy { color: var(--muted); font-size: 18px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-number { display: block; margin-bottom: 30px; font-size: 12px; font-weight: 800; color: var(--accent-dark); }
.service-card-accent { background: #202b30; color: #fff; border-color: #202b30; }
.service-card-accent p { color: #d8dede; }
.service-card-accent .service-number { color: #d7bd91; }

.switch-section { background: #fff; }
.switch-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.check-list { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 31px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--accent-dark); font-weight: 900; }
.switch-card { padding: 34px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--soft); }
.switch-card h3 { font-size: 28px; }
.switch-card p { color: var(--muted); }
.switch-card > a { display: inline-block; margin-top: 9px; font-size: 22px; font-weight: 800; text-decoration: none; }
.switch-label { display: inline-block; margin-bottom: 22px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); }

.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 13px; font-weight: 800; }
.steps h3 { margin-bottom: 5px; font-size: 19px; }
.steps p { margin: 0; color: var(--muted); }

.experience-section { background: var(--dark); color: #fff; }
.experience-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; }
.experience-stat { padding-right: 50px; border-right: 1px solid rgba(255,255,255,.15); }
.experience-stat strong { display: block; font-size: clamp(45px, 7vw, 82px); letter-spacing: -.05em; }
.experience-stat span { display: block; max-width: 310px; color: #bcc5c8; }
.experience-copy p:not(.eyebrow) { color: #cbd2d4; }

.faq-section details { border-top: 1px solid var(--line); }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { padding: 22px 0; font-weight: 800; cursor: pointer; }
.faq-section details p { margin: -6px 0 24px; max-width: 760px; color: var(--muted); }

.contact-section { background: #eef1ef; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-intro { max-width: 480px; font-size: 18px; color: var(--muted); }
.contact-boxes { margin-top: 30px; display: grid; gap: 10px; }
.contact-boxes a { width: fit-content; text-decoration: none; }
.contact-boxes span, .contact-boxes strong { display: block; }
.contact-boxes span { color: var(--muted); font-size: 12px; }
.contact-boxes strong { font-size: 22px; }
.lead-form { position: relative; padding: 34px; background: #fff; border-radius: var(--radius); box-shadow: 0 20px 55px rgba(17,25,29,.08); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 13px 14px; border: 1px solid #cad2ce; border-radius: 9px; background: #fff; color: var(--ink); font: inherit; }
.form-row textarea { resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 2px solid rgba(154,122,69,.25); border-color: var(--accent); }
.privacy-check { display: grid; grid-template-columns: 20px 1fr; gap: 9px; margin: 5px 0 18px; font-size: 12px; color: var(--muted); }
.privacy-check input { margin-top: 4px; }
.form-note { margin: 12px 0 0; text-align: center; font-size: 11px; color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin: 0 0 20px; padding: 12px 14px; border-radius: 9px; font-size: 14px; font-weight: 700; }
.form-status.success { background: #edf6ef; border: 1px solid #bdd8c3; }
.form-status.error { background: #fff0f0; border: 1px solid #e4b8b8; }

.site-footer { padding: 42px 0 90px; background: var(--dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.footer-grid p { margin: 6px 0 0; color: #aeb8bb; }
.footer-links { display: flex; gap: 18px; align-items: start; }
.footer-links a { font-size: 13px; color: #d4dadd; }
.copyright { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.mobile-cta { display: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 13px; }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid, .visual-proof-grid, .switch-grid, .split-grid, .experience-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-stat { padding-right: 0; padding-bottom: 35px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .visual-proof { padding: 46px 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 68px; gap: 12px; }
  .brand-sub { display: none; }
  .language-switch { gap: 6px; padding-left: 10px; }
  .language-switch a, .language-switch span { font-size: 11px; }
  .hero { padding: 58px 0 48px; }
  h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero-card, .lead-form, .switch-card { padding: 24px; border-radius: 14px; }
  .section { padding: 68px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -4px 22px rgba(0,0,0,.12); }
  .mobile-cta a { padding: 14px 10px; text-align: center; text-decoration: none; font-weight: 800; background: #fff; border-top: 1px solid var(--line); }
  .mobile-cta a:last-child { background: var(--dark); color: #fff; }
}
