/* =========================================================
   Global Work Bridge / Ebru Boztekin Danışmanlık
   Design System — Kurumsal / Lacivert / Bronz / Gold
   ========================================================= */

:root {
  --navy-950: #071a2e;
  --navy-900: #0e2a47;
  --navy-800: #163a5f;
  --navy-700: #1f4d78;
  --bronze-600: #9c6b3e;
  --bronze-500: #b17f4a;
  --gold-500: #c9a227;
  --gold-400: #d8b94a;
  --offwhite: #f7f5f0;
  --cream: #fbfaf7;
  --white: #ffffff;
  --ink: #1a2733;
  --ink-soft: #4a5a68;
  --gray-200: #e4e1d8;
  --gray-300: #d3cfc3;

  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(7, 26, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 26, 46, 0.12);
  --shadow-lg: 0 20px 48px rgba(7, 26, 46, 0.18);

  --container: 1180px;
}

/* Fraunces has no Cyrillic glyphs — Bulgarian pages fall back to Playfair
   Display, a high-contrast display serif that reads visually consistent
   with Fraunces, for headings. */
html[lang="bg"] {
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-950);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--navy {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }

.section--offwhite { background: var(--offwhite); }

.stats-band {
  padding-top: 110px;
  padding-bottom: 100px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
}

/* Two seams only get a soft transition (a plain color gradient, no
   blur filter): stats-band -> hero-slider, and hero-slider -> the
   section right after it. Everywhere else on the site is a plain
   hard cut, by design — do not add fades elsewhere. */
.hero-slider + section { position: relative; }
.hero-slider + section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(to bottom, var(--navy-950), transparent);
  z-index: 1;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,162,39,0.35);
}

.btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-400); }

.btn-outline-navy {
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }

.btn-block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 26, 46, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .brand-primary {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.brand-text .brand-secondary {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-top: 2px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--gold-400); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--gold-500); }
.main-nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-cta { white-space: nowrap; padding: 11px 18px; font-size: 0.88rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  padding: 4px 9px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  color: rgba(255,255,255,0.65);
}
.lang-switch a.active {
  background: var(--gold-500);
  color: var(--navy-950);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  display: block;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--navy-800), var(--navy-950) 65%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,26,46,0.55), rgba(7,26,46,0.75)),
    repeating-linear-gradient(45deg, rgba(201,162,39,0.06) 0 2px, transparent 2px 40px);
  background-size: auto, 160px 160px;
  animation: heroDrift 22s linear infinite;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(201,162,39,0.16), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: heroFloat 12s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes heroDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 0, 160px 160px; }
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after, .hero::before { animation: none; }
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
}
.badge-pill img { height: 22px; }
.badge-pill .icon-badge-check { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; }

.iskur-seal {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  box-shadow: inset 0 0 6px rgba(14,42,71,0.28), 0 2px 5px rgba(0,0,0,0.2);
  background: var(--white);
  flex-shrink: 0;
}

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 36px;
  backdrop-filter: blur(4px);
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-item {
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.stat-item:hover {
  background: rgba(201,162,39,0.08);
  transform: translateY(-2px);
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--gold-500);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

/* =========================================================
   Homepage image slider
   ========================================================= */
.hero-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  color: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,46,0.5), rgba(7,26,46,0.8));
  z-index: 1;
}
/* Soft, thin seam where the stats-band above meets the slider —
   a plain color gradient, not a blur. ::before is already used
   above for the photo-darkening overlay, so this uses ::after. */
.hero-slider::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(to bottom, var(--navy-950), transparent);
  z-index: 1;
}
.hero-slider-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slider-content .eyebrow { color: var(--gold-400); }
.hero-slider-content .eyebrow::before { background: var(--gold-400); }
.hero-slider-content h2 { color: var(--white); max-width: 780px; }
.hero-slider-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; margin-bottom: 28px; }
@media (max-width: 640px) {
  .hero-slider { height: 440px; }
}

/* =========================================================
   Cards / Grids
   ========================================================= */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.sector-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  text-align: left;
}
.sector-card .icon { width: 20px; height: 20px; color: #d4a94a; flex-shrink: 0; }
.sector-card h4 { margin: 0; }
.sector-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}
.card:hover .card-icon,
.contact-info-item:hover .card-icon { transform: scale(1.08); }

.icon { width: 22px; height: 22px; display: block; }

/* Progress bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 680px;
  margin: 0 auto;
}
.progress-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--navy-950);
}
.progress-value { color: var(--bronze-600); font-weight: 700; }
.progress-track {
  height: 10px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--bronze-500));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote { color: var(--ink-soft); font-style: italic; flex-grow: 1; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy-950); }
.testimonial-title { font-size: 0.82rem; color: var(--ink-soft); }

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 30px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  transform: translate(50%, -50%);
  background-color: #a9791c;
  -webkit-mask-image: url("/assets/img/arrow-right.svg");
  mask-image: url("/assets/img/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  pointer-events: none;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-500);
  display: block;
  margin-bottom: 12px;
}

/* Logos row */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.9;
}
.logo-row img { height: 56px; width: auto; }

/* Quote / mission */
.mission-block {
  border-left: 3px solid var(--gold-500);
  padding-left: 28px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy-950);
  font-style: italic;
}

/* Timeline (About) */
.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--gray-300);
  margin-left: 8px;
}
.timeline-item {
  position: relative;
  padding: 0 0 36px 32px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline-year {
  font-family: var(--font-heading);
  color: var(--bronze-600);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Documents / trust */
.doc-frame {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.doc-frame img { border-radius: 4px; }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }

.contact-info-list { display: grid; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; }
.contact-info-item .card-icon .icon { width: 20px; height: 20px; }

/* Blog */
.post-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-card-img {
  height: 170px;
  background: linear-gradient(135deg, var(--navy-800), var(--bronze-600));
}
.post-card-body { padding: 24px; }
.post-meta {
  font-size: 0.78rem;
  color: var(--bronze-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img,
.gallery-grid .gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: 14px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: block; height: 64px; width: auto; margin-bottom: 10px; }
.footer-brand .brand-primary { color: var(--white); font-family: var(--font-heading); font-size: 1.15rem; }
.footer-brand .brand-secondary { color: var(--gold-500); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 14px; font-size: 0.9rem; }

.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--gold-500); }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a .icon { width: 17px; height: 17px; }
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-500); transform: translateY(-2px); }

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  flex-wrap: wrap;
}
.footer-badges img {
  height: 40px;
  background: var(--offwhite);
  border-radius: 6px;
  padding: 6px 10px;
}
.footer-badges .iskur-seal--footer {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  box-shadow: inset 0 0 7px rgba(14,42,71,0.28), 0 2px 6px rgba(0,0,0,0.22);
  background: var(--white);
  padding: 0;
}

.footer-legal {
  padding: 0 0 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 8px;
}
.footer-legal p:last-child { margin-bottom: 0; }
.footer-secure {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-secure .icon { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   Floating WhatsApp button
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float img { width: 25px; height: 25px; }
}

/* =========================================================
   Page header (inner pages)
   ========================================================= */
.page-header {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 64px 0 56px;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--gold-500); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal-init {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-visible {
  opacity: 1;
  transform: none;
}
.grid > .reveal-init:nth-child(2),
.steps > .reveal-init:nth-child(2),
.timeline-item.reveal-init:nth-child(2) { transition-delay: 0.08s; }
.grid > .reveal-init:nth-child(3),
.steps > .reveal-init:nth-child(3),
.timeline-item.reveal-init:nth-child(3) { transition-delay: 0.16s; }
.grid > .reveal-init:nth-child(4),
.steps > .reveal-init:nth-child(4),
.timeline-item.reveal-init:nth-child(4) { transition-delay: 0.24s; }
.grid > .reveal-init:nth-child(5) { transition-delay: 0.32s; }
.grid > .reveal-init:nth-child(6) { transition-delay: 0.4s; }
.grid > .reveal-init:nth-child(7) { transition-delay: 0.48s; }
.grid > .reveal-init:nth-child(8) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-init { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
/* Full nav (7 links x3 languages, incl. the longer BG labels) needs
   ~1450-1500px of real content width to render without spilling past
   the header's centered 1180px container and off the edge of narrower
   viewports — verified by measuring header-actions' right edge against
   document width per language. Below this, collapse to the hamburger
   menu rather than let the CTA/lang-switch get invisibly clipped by
   the html/body overflow-x:hidden rule above. */
@media (max-width: 1500px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,162,39,0.25);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .site-header.nav-open .main-nav a { font-size: 1rem; white-space: normal; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 60px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .header-cta { display: none; }
  .site-header .container { min-height: 72px; flex-wrap: nowrap; }
  .brand { flex-shrink: 1; min-width: 0; gap: 8px; }
  .brand-text { min-width: 0; }
  .brand-text .brand-primary {
    font-size: 0.85rem;
    white-space: normal;
    overflow-wrap: break-word;
  }
  .brand-text .brand-secondary { font-size: 0.58rem; white-space: normal; }
  .brand img { height: 30px; flex-shrink: 0; }
  .lang-switch a { padding: 5px 9px; font-size: 0.72rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after {
    display: block;
    -webkit-mask-image: url("/assets/img/arrow-down.svg");
    mask-image: url("/assets/img/arrow-down.svg");
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translate(-50%, 50%);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
