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

:root {
  --blue:   #0072CE;
  --orange: #E06F00;
  --green:  #3F9C35;
  --purple: #582B94;
  --black:  #1A1A1A;
  --grey:   #F5F5F5;
  --text:   #333333;
  --border: #E0E0E0;
  --link-color: #1a5fa8;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 56px;
  margin-left: 0;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 280px);
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #0072CE;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #0072CE;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-details {
  position: relative;
}

.nav-dropdown-details summary {
  list-style: none;
}

.nav-dropdown-details summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: #0072CE;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-dropdown-toggle-icon {
  width: 10px;
  height: 10px;
  color: #777;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  padding: 10px 0;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 34px rgba(18, 26, 38, 0.08);
  display: none;
  z-index: 110;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--black);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-details[open] .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-details[open] .nav-dropdown-toggle {
  color: #0072CE;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown-details[open] .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown:hover .nav-dropdown-toggle-icon,
.nav-dropdown:focus-within .nav-dropdown-toggle-icon,
.nav-dropdown-details[open] .nav-dropdown-toggle-icon {
  color: #0072CE;
  transform: rotate(180deg);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f8fafc;
  color: #0072CE;
  outline: none;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 8px;
  transition: color 0.2s;
}

.lang-switch button.active { color: var(--black); font-weight: 600; }
.lang-switch .sep { color: #ddd; }

.hamburger { display: none; }

.hero {
  position: relative;
  aspect-ratio: 3 / 1;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.12);
  transform-origin: center center;
  transition: transform 10s ease;
  will-change: transform;
}

.hero-bg.zoomed { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  width: min(100%, 680px);
  max-width: 680px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.hero-content h1 span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s forwards;
}

.hero-content h1 span:nth-child(1) { animation-delay: 0.2s; }
.hero-content h1 span:nth-child(2) { animation-delay: 0.4s; }
.hero-content h1 span:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.6s 0.9s forwards;
}

.hero-tagline {
  margin-top: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  opacity: 0;
  animation: fadeUp 0.6s 1.1s forwards;
}

.about-strip {
  background: #fff;
  padding: 80px 56px 60px;
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.05rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 16px;
}

.about-inner p {
  font-size: 0.95rem;
  color: #555;
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.faq-home-cta {
  background: #fff;
  padding: 20px 56px 40px;
}

.faq-home-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: #F3F4F6;
  border: 1px solid rgba(17, 17, 17, 0.045);
  border-radius: 3px;
}

.faq-home-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-home-cta-copy h2 {
  margin: 0;
  max-width: 680px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #111;
}

.faq-home-cta-copy p {
  margin: 0;
  max-width: 64ch;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #66707c;
}

.faq-home-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 0 2px;
  border: none;
  border-bottom: 1px solid rgba(17, 24, 39, 0.18);
  background: transparent;
  color: #111827;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  margin-right: 24px;
}

.faq-home-cta-link:hover,
.faq-home-cta-link:focus-visible {
  color: #0072CE;
  border-bottom-color: rgba(0, 114, 206, 0.38);
  outline: none;
}

.faq-home-cta-arrow {
  font-size: 0.92rem;
  transition: transform 0.2s ease;
}

.faq-home-cta-link:hover .faq-home-cta-arrow,
.faq-home-cta-link:focus-visible .faq-home-cta-arrow {
  transform: translateX(3px);
}

.service-links {
  display: flex;
  gap: 80px;
  padding-top: 8px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 0 10px 0;
  text-decoration: none;
  color: #0072CE;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.service-link:hover,
.service-link:focus-visible {
  color: #0072CE;
  border-bottom-color: #0072CE;
}

.service-link .arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.service-link:hover .arrow { transform: translateX(6px); }

.methodology-callout {
  position: relative;
  overflow: hidden;
  max-width: 660px;
  margin-top: 32px;
  margin-left: 16px;
  padding: 30px 32px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
  border: 1px solid rgba(0, 114, 206, 0.10);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
}

.methodology-callout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 32px;
  width: 3px;
  height: 56px;
  background: #0072CE;
  border-radius: 999px;
}

.methodology-callout::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 20px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(rgba(0, 114, 206, 0.12) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.35;
  pointer-events: none;
}

.methodology-callout__eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #0072CE;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.methodology-callout__text {
  position: relative;
  z-index: 1;
  max-width: 58ch;
  margin: 0;
  color: #566273;
  font-size: 0.93rem;
  line-height: 1.78;
}

.methodology-callout__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.methodology-callout__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.methodology-callout__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0072CE;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 114, 206, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.methodology-callout__link:hover,
.methodology-callout__link:focus-visible {
  color: #005fa8;
  gap: 10px;
  border-bottom-color: #005fa8;
  outline: none;
}

.why {
  padding: 60px 56px;
  background: var(--grey);
  overflow: visible;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.why-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar {
  padding: 28px 20px;
  border-top: 3px solid var(--border);
  background: #fff;
  transition: border-color 0.3s;
}

.pillar:hover { border-top-color: var(--blue); }

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.pillar-icon.blue   { background: var(--blue); }
.pillar-icon.orange { background: var(--orange); }
.pillar-icon.green  { background: var(--green); }
.pillar-icon.purple { background: var(--purple); }

.pillar h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
}

.cta-band,
.about-cta,
.services-cta {
  background: #151515;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.cta-band h2,
.about-cta h2,
.services-cta h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.42;
  color: #fff;
  max-width: 500px;
}

.cta-band .cta-btn,
.about-cta .cta-btn,
.services-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 2px;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.cta-band .cta-btn:hover,
.cta-band .cta-btn:focus-visible,
.about-cta .cta-btn:hover,
.about-cta .cta-btn:focus-visible,
.services-cta .cta-btn:hover,
.services-cta .cta-btn:focus-visible { background: #0072CE; color: #fff; }

footer {
  background: #111;
  color: #aaa;
  padding: 56px 56px 32px;
}

#pragma-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  padding: 20px 56px;
  animation: pcb-slide-up 0.4s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.pcb-modal-open {
  overflow: hidden;
}

#pragma-cookie-banner.pcb-exit {
  transform: translateY(100%);
  opacity: 0;
}

@keyframes pcb-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pcb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pcb-text {
  flex: 1;
}

.pcb-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.pcb-text p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.pcb-text a {
  color: #2e7cc8;
  text-decoration: underline;
}

.pcb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
}

.pcb-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: "Inter", sans-serif;
}

.pcb-btn-outline {
  background: #fff;
  color: #1a1a1a;
  border: 1px solid #e0e0e0;
}

.pcb-btn-outline:hover {
  background: #f5f5f5;
}

.pcb-btn-primary {
  background: #2e7cc8;
  color: #fff;
}

.pcb-btn-primary:hover {
  background: #1a5fa8;
}

.pcb-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.pcb-modal[hidden] {
  display: none;
}

.pcb-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(3px);
}

.pcb-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 32px));
  margin: 72px auto 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.2);
}

.pcb-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid #d6dde5;
  background: #fff;
  color: #111;
  font: 400 1.8rem/1 "Inter", sans-serif;
  cursor: pointer;
}

.pcb-modal-head {
  padding-right: 44px;
  margin-bottom: 22px;
}

.pcb-modal-kicker {
  margin: 0 0 8px;
  font: 600 0.76rem/1.2 "Inter", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0072CE;
}

.pcb-modal-head h2 {
  margin: 0 0 10px;
  font: 600 1.9rem/1.18 "Playfair Display", serif;
  color: #111;
}

.pcb-modal-head p {
  margin: 0;
  color: #5d6774;
  font-size: 0.9rem;
  line-height: 1.7;
}

.pcb-pref-list {
  display: grid;
  gap: 14px;
}

.pcb-pref-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
  border: 1px solid #dde5ed;
}

.pcb-pref-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #111827;
}

.pcb-pref-copy p {
  margin: 0;
  color: #5f6b78;
  font-size: 0.84rem;
  line-height: 1.68;
  max-width: 48ch;
}

.pcb-pref-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  padding: 10px 12px;
  background: #eef6ff;
  border: 1px solid #cfe0f2;
  color: #005f9f;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: center;
}

.pcb-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.pcb-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pcb-switch-ui {
  position: relative;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: #d3dce5;
  transition: background 0.2s ease;
}

.pcb-switch-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease;
}

.pcb-switch input:checked + .pcb-switch-ui {
  background: #0072CE;
}

.pcb-switch input:checked + .pcb-switch-ui::after {
  transform: translateX(22px);
}

.pcb-switch-label {
  min-width: 62px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #314255;
}

.pcb-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 32px;
}

.footer-brand p {
  margin: 16px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #888;
}

.footer-lines {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
}

.footer-line {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  color: #888;
}

.footer-line-gap {
  margin-top: 10px;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: "Inter", sans-serif;
  color: #888;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col address {
  margin: 0;
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #888;
  line-height: 1.8;
  letter-spacing: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #555;
  gap: 16px;
}

.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: #aaa; }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: "Inter", sans-serif;
  color: #555;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  transition: color 0.2s;
}

.footer-legal a:hover { color: #aaa; }

.footer-consent-link {
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  color: #555;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-consent-link:hover { color: #aaa; }

.pipe { color: #333; font-family: "Inter", sans-serif; font-size: 0.78rem; font-weight: 400; line-height: 1.5; letter-spacing: 0; }

#page[lang="en"] .tr-text { display: none; }
#page[lang="tr"] .en-text { display: none; }

/* TABLET + MOBIL */
@media (max-width: 900px) {

  #pragma-cookie-banner {
    padding: 20px 24px;
  }

  .pcb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pcb-actions {
    width: 100%;
    justify-content: stretch;
  }

  .pcb-btn {
    flex: 1;
    text-align: center;
  }

  .pcb-actions .pcb-btn {
    min-height: 44px;
  }

  .pcb-modal-dialog {
    width: min(720px, calc(100vw - 24px));
    margin-top: 24px;
    padding: 22px;
  }

  .pcb-pref-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .pcb-switch {
    width: 100%;
    justify-content: space-between;
  }

  .pcb-modal-actions {
    justify-content: stretch;
  }

  .pcb-modal-actions .pcb-btn {
    width: 100%;
  }

  nav { padding: 0 20px; justify-content: space-between; }
  .logo-img { height: 18px; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
    transform: none;
    z-index: 99;
    max-width: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    position: static;
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 0;
    padding: 4px 0 8px 18px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-bottom: none;
    font-size: 0.92rem;
    color: #4f5d6f;
  }

  .nav-dropdown-details[open] > .nav-dropdown-toggle {
    border-bottom: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1rem;
    padding: 14px 0;
  }

  .nav-dropdown-toggle::after {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 12px;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .lang-switch {
    display: flex;
    flex-shrink: 0;
  }

  .lang-switch button {
    font-size: 0.78rem;
    padding: 4px 5px;
  }

  .hero { aspect-ratio: 4 / 3; padding-bottom: 40px; }
  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 0 20px;
  }
  .hero-content h1 {
    line-height: 1.08;
    max-width: 7.5ch;
  }
  .hero-sub {
    max-width: 24ch;
    line-height: 1.55;
  }
  .about-strip { padding: 48px 20px 40px; }
  .methodology-callout {
    margin-top: 24px;
    margin-left: 0;
    padding: 24px 22px;
  }
  .methodology-callout::before {
    top: 24px;
    height: 48px;
  }
  .methodology-callout::after {
    right: 14px;
    top: 14px;
    opacity: 0.2;
  }
  .faq-home-cta {
    padding: 18px 20px 28px;
  }
  .faq-home-cta-inner {
    padding: 16px 18px;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
  }
  .why { padding: 48px 20px; }
  .cta-band,
  .about-cta,
  .services-cta { padding: 48px 20px; flex-direction: column; align-items: flex-start; }
  .cta-copy { gap: 10px; }
  footer { padding: 48px 20px 24px; }
  .footer-logo { height: 34px; }
  .service-links { flex-direction: column; gap: 0; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* MOBIL */
@media (max-width: 600px) {
  .hero { padding-bottom: 32px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 0.88rem; line-height: 1.6; }
  .hero-tagline { font-size: 0.68rem; letter-spacing: 0.16em; }
  .footer-logo { height: 36px; }
  .about-inner h2,
  .why-inner h2,
  .cta-band h2,
  .about-cta h2,
  .services-cta h2 { font-size: 1.55rem; }
  .faq-home-cta-copy h2 { font-size: 1rem; }
  .about-inner p,
  .pillar p,
  .footer-brand p,
  .footer-col address { font-size: 0.88rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 24px 18px; }
  .cta-copy { gap: 8px; }
  .faq-home-cta-link {
    width: auto;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }
  .cta-band .cta-btn,
  .about-cta .cta-btn,
  .services-cta .cta-btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .footer-legal { gap: 8px; }
}
