/* ──────────────────────────────────────────
   YGN Sourcing · style.css
   Theme: Light, corporate — navy + amber accent
   Fonts: Poppins (headings) · Inter (body)
   This file holds the base architecture only.
   Page sections are added incrementally.
────────────────────────────────────────── */

:root {
  /* Backgrounds */
  --bg-page:    #ffffff;
  --bg-soft:    #f5f7fa;
  --bg-navy:    #0b2340;

  /* Borders */
  --border:     #e4e8ef;

  /* Text */
  --text-dark:   #16233a;
  --text-muted:  #5b6b84;
  --text-light:  #ffffff;

  /* Accent — amber primary + a rotating secondary palette */
  --accent:       #d9812f;
  --accent-light: #f0a860;
  --accent-dark:  #b5661f;
  --accent-teal:  #0f9d8f;
  --accent-blue:  #3468b0;
  --accent-plum:  #7a4fb0;

  /* Layout */
  --nav-h: 76px;
  --container-w: 1180px;

  /* Radius / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --shadow-card: 0 4px 20px rgba(15, 30, 60, .06);

  --t: .2s ease;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border-color: var(--border); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: background var(--t), border-color var(--t), opacity .35s ease, transform .35s ease;
}
/* Post-hero only: hidden on scroll-down, shown on scroll-up (main.js) */
.navbar.nav-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}

/* Over the hero (transparent state) the bar sits on dark video — go light */
.navbar:not(.is-scrolled) .nav-brand-text,
.navbar:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.navbar:not(.is-scrolled) .nav-brand-text strong { color: var(--accent-light); }
.navbar:not(.is-scrolled) .nav-link:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.navbar:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img { height: 58px; width: auto; }
.nav-brand-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.nav-brand-text strong { color: var(--accent); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 9px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav-link:hover { color: var(--text-dark); background: var(--bg-soft); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--accent-dark); }

/* ── Language switch ── */
.lang-switch { position: relative; margin-inline-start: 6px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.lang-toggle:hover { border-color: var(--accent); color: var(--text-dark); }
.lang-toggle .fi { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); }
.lang-toggle i { font-size: .65rem; opacity: .7; transition: transform var(--t); }
.lang-switch.is-open .lang-toggle i { transform: rotate(180deg); }

.navbar:not(.is-scrolled) .lang-toggle {
  border-color: rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .92);
}
.navbar:not(.is-scrolled) .lang-toggle:hover { border-color: #fff; color: #fff; }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 950;
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background var(--t);
}
.lang-item:hover { background: var(--bg-soft); }
.lang-item.active { color: var(--accent); font-weight: 700; }
.lang-item .fi { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); }

[dir="rtl"] .lang-menu { right: auto; left: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 16px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 12px 8px; }
  .nav-cta { text-align: center; margin-top: 6px; }

  /* The mobile panel is always solid white, regardless of navbar state */
  .lang-switch { margin-inline-start: 0; margin-top: 10px; }
  .lang-toggle,
  .navbar:not(.is-scrolled) .lang-toggle {
    width: 100%;
    justify-content: center;
    border-color: var(--border);
    color: var(--text-muted);
  }
  .lang-toggle:hover,
  .navbar:not(.is-scrolled) .lang-toggle:hover { border-color: var(--accent); color: var(--text-dark); }
  .lang-menu { left: 0; right: 0; width: 100%; }
  [dir="rtl"] .lang-menu { left: 0; right: 0; }
}

/* ── Main content area ── */
.site-main { flex: 1; }

/* ── Hero: scroll-scrubbed frame sequence ── */
.hero-scroll { position: relative; }
.hero-scroll-spacer { height: 650vh; }
.hero-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-navy);
}
.hero-scroll-sticky canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(.74) saturate(1.05);
}
.hero-scroll-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 23, 40, .4) 0%, rgba(11, 23, 40, .15) 35%, rgba(11, 23, 40, .45) 100%);
  pointer-events: none;
}
/* Opening logo, visible only before scrolling starts */
.hero-logo-intro {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .1s linear, transform .1s linear;
}
.hero-logo-intro img {
  width: clamp(200px, 30vw, 420px);
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .45));
}

@media (max-width: 767px) {
  .hero-scroll-spacer { height: 420vh; }
}

/* ── Hero bubbles: scroll-triggered story text, cloud-shaped ── */
.hero-bubble {
  --cloud-bg: rgba(225, 232, 240, .22);
  position: absolute;
  z-index: 2;
  max-width: min(400px, 82vw);
  padding: 28px 32px;
  background: var(--cloud-bg);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 44% 56% 62% 38% / 46% 41% 59% 54%;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
  box-shadow: 0 24px 60px rgba(5, 15, 35, .35), 0 0 0 1px rgba(255, 255, 255, .1) inset;
  opacity: 0;
  pointer-events: none;
  --ty: 16px;
  transform: translateY(var(--ty));
  transition: opacity .1s linear, transform .1s linear;
}
/* Extra puffs to break the rectangle silhouette and read as a cloud */
.hero-bubble::before,
.hero-bubble::after {
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--cloud-bg);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
}
.hero-bubble::before { width: 40%; height: 46%; top: -16%; left: 10%; }
.hero-bubble::after  { width: 30%; height: 36%; top: -10%; right: 14%; }

.hero-bubble--1 { left: 6%;  top: 24%; }
.hero-bubble--2 { right: 7%; top: 16%; }
.hero-bubble--3 { left: 8%;  top: 56%; }
.hero-bubble--4 { right: 6%; top: 48%; }
.hero-bubble--5 {
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%) translateY(var(--ty));
}

@media (max-width: 767px) {
  .hero-bubble { font-size: .95rem; padding: 22px 24px; }
}

/* ── Section helpers (for building sections together) ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
}
.section-head { margin-bottom: 44px; max-width: 720px; }

/* ── About ── */
.about-grid { max-width: 760px; }
.about-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-size: 1rem; }
.about-highlight {
  color: var(--text-dark) !important;
  font-weight: 600;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgba(217, 129, 47, .12);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.service-card:nth-child(4n+2) .service-icon { background: rgba(15, 157, 143, .12); color: var(--accent-teal); }
.service-card:nth-child(4n+3) .service-icon { background: rgba(52, 104, 176, .12); color: var(--accent-blue); }
.service-card:nth-child(4n+4) .service-icon { background: rgba(122, 79, 176, .12); color: var(--accent-plum); }
.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { color: var(--text-muted); font-size: .92rem; line-height: 1.6; }
.service-sublist { display: flex; flex-direction: column; gap: 6px; }
.service-sublist li {
  color: var(--text-muted);
  font-size: .88rem;
  padding-left: 16px;
  position: relative;
}
.service-sublist li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.why-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(217, 129, 47, .09) 0%, rgba(15, 157, 143, .07) 50%, rgba(52, 104, 176, .07) 100%);
}
.why-bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: 0;
}
.why-section .container { position: relative; z-index: 1; }

/* ── Checklist (Why YGN / Why Turkey) ── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.checklist-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  color: var(--text-dark);
  font-weight: 500;
}
.checklist-grid li i { color: var(--accent); margin-top: 3px; }

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.industry-card i { font-size: 1.4rem; color: var(--accent); }
.industry-card span { font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.industry-card:nth-child(4n+2) i { color: var(--accent-teal); }
.industry-card:nth-child(4n+3) i { color: var(--accent-blue); }
.industry-card:nth-child(4n+4) i { color: var(--accent-plum); }

/* ── Process ── */
.process-section { position: relative; overflow: hidden; }
.process-bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  z-index: 0;
}
.process-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, .55) 100%);
  z-index: 0;
}
.process-section .container { position: relative; z-index: 1; }

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 620px;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-left: 2px solid var(--border);
  padding-left: 28px;
  margin-left: 18px;
  position: relative;
}
.process-step:last-child { border-left-color: transparent; }
.process-num {
  position: absolute;
  left: -18px;
  top: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-step p { padding-top: 6px; font-weight: 600; color: var(--text-dark); }
.process-step:nth-child(4n+2) .process-num { background: var(--accent-teal); }
.process-step:nth-child(4n+3) .process-num { background: var(--accent-blue); }
.process-step:nth-child(4n+4) .process-num { background: var(--accent-plum); }

/* ── Stats band ── */
.stats-band { position: relative; overflow: hidden; background: var(--bg-navy); padding: 64px 0; }
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(217, 129, 47, .3), transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(15, 157, 143, .3), transparent 45%);
  pointer-events: none;
}
.stats-inner { position: relative; z-index: 1; text-align: center; }
.stats-intro { color: rgba(255, 255, 255, .85); font-size: 1.2rem; font-weight: 600; margin-bottom: 36px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.stat-tile {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-tile i { color: var(--accent-light); font-size: 1.3rem; }
.stat-tile span { color: #fff; font-size: .88rem; font-weight: 600; }
.stat-tile:nth-child(4n+2) i { color: #5fd4c6; }
.stat-tile:nth-child(4n+3) i { color: #8fb6e8; }
.stat-tile:nth-child(4n+4) i { color: #b79ce0; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
.form-field input, .form-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  background: #fff;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 500;
}
.form-alert--success {
  background: rgba(15, 157, 143, .12);
  color: var(--accent-teal);
  border: 1px solid rgba(15, 157, 143, .3);
}
.form-alert--error {
  background: rgba(197, 48, 48, .1);
  color: #c53030;
  border: 1px solid rgba(197, 48, 48, .3);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.consent-field input[type="checkbox"] {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.privacy-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.privacy-link:hover { color: var(--accent-dark); }

/* ── Contact: thank-you panel ── */
.contact-thanks {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.contact-thanks i {
  font-size: 2.4rem;
  color: var(--accent-teal);
  margin-bottom: 6px;
}
.contact-thanks h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.contact-thanks p {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: 34ch;
}
.contact-thanks .btn { margin-top: 10px; }

/* ── Privacy policy modal ── */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.privacy-modal[hidden] { display: none; }
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 35, 64, .55);
}
.privacy-modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
}
.privacy-modal-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.privacy-modal-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.privacy-modal-card .btn { margin-top: 8px; }
.privacy-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.privacy-modal-close:hover { background: var(--border); color: var(--text-dark); }
[dir="rtl"] .privacy-modal-close { right: auto; left: 14px; }

@media (max-width: 900px) {
  .checklist-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  background: var(--bg-navy);
  color: rgba(255, 255, 255, .8);
}
.footer-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 48px 24px 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-wordmark {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.footer-wordmark strong { color: var(--accent-light); font-weight: 800; }
.footer-tagline { font-size: .85rem; margin-top: 4px; }
.footer-slogan { font-size: .8rem; color: rgba(255, 255, 255, .55); margin-top: 8px; }

.footer-col h6 {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 10px;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--accent-light); }

.footer-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
}
.footer-lang-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  padding: 5px 0;
  transition: color var(--t);
}
.footer-lang-item:hover { color: var(--accent-light); }
.footer-lang-item.active { color: var(--accent-light); font-weight: 700; }
.footer-lang-item .fi {
  flex: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .15);
}

.footer-bottom {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 18px 24px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
