/* ============================
   Finantraner.com — Stylesheet
   Premium financial coaching theme
   Palette: emerald green, gold,
   dark graphite, warm neutrals
   ============================ */

:root {
  --emerald-900: #0a3d2e;
  --emerald-800: #0f5a42;
  --emerald-700: #14855e;
  --emerald-600: #1ea674;
  --emerald-300: #7dcfaf;
  --emerald-50:  #e8f3ec;

  --gold-700: #a98847;
  --gold-600: #c9a86a;
  --gold-500: #d4b97a;
  --gold-300: #e6d3a3;

  --graphite-900: #181f22;
  --graphite-800: #1f2a2e;
  --graphite-700: #2c3a3e;
  --graphite-500: #4a5a5f;
  --graphite-300: #8d9ba0;

  --cream-50:  #fbf8f1;
  --cream-100: #f7f3ec;
  --cream-200: #ece5d8;
  --cream-300: #ddd2bc;

  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(24,31,34,0.06);
  --shadow-md: 0 8px 24px rgba(24,31,34,0.08);
  --shadow-lg: 0 20px 40px rgba(24,31,34,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite-800);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--emerald-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--emerald-800); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--graphite-900);
  letter-spacing: -0.01em;
  line-height: 1.18;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .5rem; }
h3 { font-size: 1.35rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }

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

/* ============= HEADER ============= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,241,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--cream-200);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--graphite-900);
}
.brand:hover { color: var(--emerald-800); }
.brand .logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 8px 18px rgba(15, 90, 66, .22), 0 0 0 1px rgba(201,168,106,0.28);
  overflow: hidden;
  flex-shrink: 0;
}
.brand .logo-mark svg { width: 42px; height: 42px; display: block; }
.brand-name { letter-spacing: -0.01em; }
.brand-name .accent { color: var(--gold-600); }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  color: var(--graphite-800);
  font-weight: 500;
  font-size: 0.97rem;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--cream-200); color: var(--emerald-800); }
.nav-links a.active {
  background: var(--emerald-800);
  color: var(--white);
}
.nav-links a.active:hover { background: var(--emerald-900); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--graphite-800);
}

/* ============= HERO ============= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201,168,106,0.12), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(20,133,94,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--emerald-50);
  color: var(--emerald-800);
  border: 1px solid rgba(20, 133, 94, .2);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-600);
  box-shadow: 0 0 0 4px rgba(30,166,116,0.15);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .gold { color: var(--gold-700); font-style: italic; }
.hero .lead {
  font-size: 1.18rem;
  color: var(--graphite-700);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-700));
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(15,90,66,0.22);
  transition: transform .15s ease, box-shadow .2s ease;
}
.hero-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15,90,66,0.28);
}
.hero-cta svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-200);
}
.hero-stats .stat .num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--emerald-800);
  font-weight: 600;
}
.hero-stats .stat .lbl {
  font-size: 0.85rem;
  color: var(--graphite-500);
  letter-spacing: 0.02em;
}

/* Hero illustration */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-visual .blob {
  position: absolute;
  inset: 8% 8% 8% 8%;
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-700) 60%, var(--emerald-600) 100%);
  border-radius: 38% 62% 56% 44% / 48% 42% 58% 52%;
  box-shadow: 0 40px 80px rgba(15,90,66,0.30);
}
.hero-visual .photo {
  position: absolute;
  inset: 12% 12% 12% 12%;
  border-radius: 30%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ddd;
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-visual .float-1 {
  top: 8%;
  left: -8%;
}
.hero-visual .float-2 {
  bottom: 6%;
  right: -6%;
}
.float-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--emerald-50);
  color: var(--emerald-800);
}
.float-icon.gold { background: rgba(201,168,106,0.15); color: var(--gold-700); }
.float-text strong { display:block; font-size: 0.92rem; color: var(--graphite-900); }
.float-text span { font-size: 0.8rem; color: var(--graphite-500); }

/* ============= SECTION BASE ============= */
.section { padding: 90px 0; }
.section.alt { background: var(--cream-100); }
.section.dark {
  background: var(--graphite-900);
  color: var(--cream-100);
}
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p { color: rgba(255,255,255,0.78); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--cream-200);
  color: var(--graphite-700);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section.dark .tag { background: rgba(255,255,255,0.08); color: var(--gold-500); }
.section-head p { color: var(--graphite-500); max-width: 680px; margin: 10px auto 0; }
.section.dark .section-head p { color: rgba(255,255,255,0.7); }

/* ============= CARDS ============= */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon-wrap {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--emerald-50), #f3ebd9);
  border-radius: 18px;
  margin-bottom: 22px;
  color: var(--emerald-800);
}
.card .icon-wrap svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--graphite-500); margin-bottom: 0; font-size: 0.97rem; }
.card .num-badge {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-600);
  opacity: .8;
}

/* Quote block */
.quote-block {
  background:
    linear-gradient(135deg, rgba(20,133,94,0.06), rgba(201,168,106,0.06)),
    var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--cream-200);
  position: relative;
}
.quote-block::before {
  content: "“";
  position: absolute;
  top: -10px; left: 30px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold-500);
  line-height: 1;
  opacity: 0.6;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--graphite-800);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 18px;
  line-height: 1.45;
}
.quote-block cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--graphite-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(600px 250px at 80% 0%, rgba(201,168,106,0.18), transparent 60%),
    linear-gradient(135deg, var(--graphite-900) 0%, var(--emerald-900) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 28px; }
.cta-banner .hero-cta {
  background: var(--gold-600);
  color: var(--graphite-900);
  box-shadow: 0 12px 26px rgba(201,168,106,0.30);
}
.cta-banner .hero-cta:hover {
  background: var(--gold-500);
  color: var(--graphite-900);
  box-shadow: 0 16px 32px rgba(201,168,106,0.38);
}
.cta-banner .decor {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,166,116,0.18) 0%, transparent 70%);
  bottom: -120px; left: -120px;
  pointer-events: none;
}

/* ============= ABOUT PAGE ============= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split .img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/5;
}
.split .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.split .img-frame .badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald-800);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.split h2 { margin-bottom: 18px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.value-item {
  padding: 26px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-600);
  box-shadow: var(--shadow-sm);
}
.value-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--emerald-800);
}
.value-item p { color: var(--graphite-500); font-size: 0.95rem; margin: 0; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .photo { aspect-ratio: 4/4; overflow: hidden; background: var(--cream-200); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .info { padding: 22px 24px 26px; }
.team-card h3 { margin-bottom: 4px; font-size: 1.2rem; }
.team-card .role {
  display: block;
  color: var(--gold-700);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-card p { color: var(--graphite-500); font-size: 0.95rem; margin: 0; }

/* Methodology steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--graphite-900);
  color: var(--gold-500);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--graphite-900);
  margin-bottom: 8px;
}
.step p { font-size: 0.92rem; color: var(--graphite-500); margin: 0; }

/* ============= ANALIZE PAGE ============= */
.analyse-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
.analyse-card.reverse { grid-template-columns: 1.4fr 1fr; }
.analyse-card.reverse .analyse-img { order: 2; }
.analyse-card.reverse .analyse-body { order: 1; }
.analyse-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-200);
  position: relative;
}
.analyse-img img { width: 100%; height: 100%; object-fit: cover; }
.analyse-img .tag-pill {
  position: absolute;
  top: 22px; left: 22px;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald-800);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.analyse-body {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.analyse-body h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  margin-bottom: 14px;
  line-height: 1.25;
}
.analyse-body .meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.82rem; color: var(--graphite-500);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.analyse-body .meta .sep { color: var(--gold-600); }
.analyse-body p { color: var(--graphite-700); }
.analyse-body ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 6px;
}
.analyse-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--graphite-700);
  font-size: 0.97rem;
}
.analyse-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--emerald-700), var(--emerald-600));
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}

/* Educational sidebar / facts row */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.fact {
  text-align: center;
  padding: 24px 16px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
}
.fact .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--emerald-800);
  font-weight: 600;
}
.fact .lbl { font-size: 0.85rem; color: var(--graphite-500); }

/* ============= CONTACT PAGE ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info { padding: 12px 0; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-200);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--emerald-50);
  color: var(--emerald-800);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list strong { display: block; color: var(--graphite-900); margin-bottom: 2px; }
.contact-list span { color: var(--graphite-500); font-size: 0.95rem; }

.contact-card-visual {
  background:
    radial-gradient(500px 250px at 80% 0%, rgba(201,168,106,0.16), transparent 60%),
    linear-gradient(160deg, var(--graphite-900) 0%, var(--emerald-900) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.contact-card-visual h3 { color: var(--white); margin-bottom: 14px; }
.contact-card-visual p { color: rgba(255,255,255,0.78); }
.contact-card-visual .socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.contact-card-visual .socials a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-100);
  transition: background .2s ease, transform .2s ease;
}
.contact-card-visual .socials a:hover {
  background: var(--gold-600);
  color: var(--graphite-900);
  transform: translateY(-2px);
}
.contact-card-visual .socials svg { width: 20px; height: 20px; }
.contact-card-visual .decor-coin {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,106,0.20) 0%, transparent 70%);
  pointer-events: none;
}

/* ============= PAGE HEADER (sub pages) ============= */
.page-header {
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 100%, rgba(20,133,94,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream-50), var(--cream-100));
  border-bottom: 1px solid var(--cream-200);
}
.page-header .crumbs {
  font-size: 0.85rem;
  color: var(--graphite-500);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-header .crumbs a { color: var(--gold-700); }
.page-header p { max-width: 680px; margin: 14px auto 0; color: var(--graphite-500); font-size: 1.05rem; }

/* ============= LEGAL PAGES ============= */
.legal {
  padding: 60px 0 90px;
}
.legal-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-200);
}
.legal-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 36px 0 12px;
  color: var(--emerald-800);
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p { color: var(--graphite-700); }
.legal-wrap ul { margin: 10px 0 16px 22px; }
.legal-wrap li { margin-bottom: 6px; color: var(--graphite-700); }
.legal-wrap .updated {
  font-size: 0.9rem;
  color: var(--graphite-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ============= FOOTER ============= */
.site-footer {
  background: var(--graphite-900);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer .brand-block { max-width: 320px; }
.site-footer .brand-block p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.site-footer .brand { color: var(--white); margin-bottom: 14px; }
.site-footer .brand:hover { color: var(--gold-500); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.site-footer ul a:hover { color: var(--gold-500); }
.footer-socials {
  display: flex; gap: 12px; margin-top: 14px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: background .2s ease, color .2s ease;
}
.footer-socials a:hover { background: var(--gold-600); color: var(--graphite-900); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: rgba(255,255,255,0.7); }
.footer-bottom .legal-links a:hover { color: var(--gold-500); }

/* ============= UTILITIES ============= */
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-32 { margin-bottom: 32px; }
.text-emerald { color: var(--emerald-800); }
.text-gold { color: var(--gold-700); }

/* Decorative divider */
.divider {
  width: 56px; height: 3px;
  background: var(--gold-600);
  border-radius: 2px;
  margin: 0 auto 18px;
}

/* ============= COOKIE BANNER ============= */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 22px;
  right: 22px;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--graphite-900) 0%, #1a2925 100%);
  color: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.30);
  border: 1px solid rgba(201,168,106,0.28);
  z-index: 200;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  pointer-events: none;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-text { flex: 1; min-width: 0; }
.cookie-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-500);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.cookie-text p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.cookie-text a { color: var(--gold-500); text-decoration: underline; }
.cookie-text a:hover { color: var(--gold-300); }
.cookie-banner .actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.94rem;
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}
.cookie-btn.accept {
  background: var(--gold-600);
  color: var(--graphite-900);
  box-shadow: 0 10px 22px rgba(201,168,106,0.28);
}
.cookie-btn.accept:hover {
  background: var(--gold-500);
  transform: translateY(-1px);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .hero-visual { justify-self: center; max-width: 420px; }
  .cards-3, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .analyse-card, .analyse-card.reverse { grid-template-columns: 1fr; }
  .analyse-card.reverse .analyse-img { order: 0; }
  .analyse-card.reverse .analyse-body { order: 0; }
  .analyse-body { padding: 36px 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .page-header { padding: 50px 0 36px; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    flex-direction: column;
    background: var(--white);
    padding: 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-200);
    min-width: 200px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 48px 0 60px; }
  .hero-visual .float-1 { left: 0; }
  .hero-visual .float-2 { right: 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .cards-3, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .quote-block { padding: 40px 24px; }
  .cta-banner { padding: 44px 24px; }
  .legal-wrap { padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .analyse-body { padding: 30px 22px; }
  .facts { grid-template-columns: 1fr 1fr; }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 14px;
  }
  .cookie-banner .actions { width: 100%; }
  .cookie-btn { width: 100%; }
}
