:root {
  --ink: #081824;
  --ink-2: #102b3a;
  --paper: #f7f4ec;
  --paper-2: #ece7da;
  --white: #ffffff;
  --amber: #f4b942;
  --amber-2: #ffd778;
  --teal: #45c6b2;
  --muted: #61717b;
  --line: #d9d5ca;
  --danger: #a33b32;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 22px 65px rgba(8, 24, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--amber);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.draft-banner {
  padding: 8px 20px;
  background: #fff3c9;
  color: #5d4700;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.promo-ticker {
  position: relative;
  z-index: 60;
  overflow: hidden;
  border-bottom: 1px solid rgba(8, 24, 36, 0.18);
  background: var(--amber);
  color: var(--ink);
  white-space: nowrap;
}

.ticker-track {
  width: max-content;
  display: flex;
  animation: ticker-scroll 32s linear infinite;
}

.promo-ticker:hover .ticker-track,
.promo-ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  min-height: 39px;
  display: flex;
  align-items: center;
}

.ticker-group span {
  position: relative;
  padding-inline: 34px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.ticker-group span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 2px;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 24, 36, 0.08);
  background: rgba(247, 244, 236, 0.94);
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.utility-bar .container {
  min-height: 42px;
  padding-block: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.utility-slogan {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.utility-slogan span {
  color: var(--amber-2);
}

.utility-bar a {
  color: var(--amber-2);
  font-weight: 900;
  text-decoration: none;
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  aspect-ratio: 1;
  padding: 5px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(8, 24, 36, 0.1);
  border-radius: 17px 17px 17px 5px;
  background: linear-gradient(145deg, #fff8e7, var(--amber));
  box-shadow: 0 10px 26px rgba(8, 24, 36, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(8, 24, 36, 0.12));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #30434f;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu summary {
  min-height: 44px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(8, 24, 36, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  border-color: rgba(8, 24, 36, 0.28);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 24, 36, 0.09);
}

.language-menu summary:focus-visible {
  outline: 3px solid rgba(244, 185, 66, 0.45);
  outline-offset: 3px;
}

.language-globe {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 24, 36, 0.26);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.language-menu summary strong {
  color: #7d4b00;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.language-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 90;
  width: 230px;
  padding: 10px;
  border: 1px solid rgba(8, 24, 36, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(8, 24, 36, 0.2);
}

.language-panel-title {
  padding: 6px 10px 9px;
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-panel button {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #30434f;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: start;
}

.language-panel button:hover,
.language-panel button:focus-visible {
  background: #f3efe4;
  color: var(--ink);
  outline: none;
}

.language-panel button.is-active {
  background: rgba(244, 185, 66, 0.18);
  color: var(--ink);
}

.language-panel button small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-panel button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.language-panel-note {
  margin: 8px 5px 2px;
  padding-top: 9px;
  display: block;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.language-panel-note.is-error {
  color: #a33825;
}

.translation-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(360px, calc(100% - 36px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(8, 24, 36, 0.96);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(8, 24, 36, 0.26);
  font-size: 12px;
  font-weight: 800;
}

.translation-toast[hidden] {
  display: none;
}

.location-toast {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 130;
  max-width: min(390px, calc(100% - 36px));
  padding: 13px 16px;
  border: 1px solid rgba(56, 189, 176, 0.5);
  border-radius: 14px;
  background: rgba(8, 24, 36, 0.97);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(8, 24, 36, 0.32);
  font-size: 12px;
  font-weight: 800;
}

.location-toast.is-error {
  border-color: rgba(244, 185, 66, 0.72);
}

[data-send-location][aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

html[dir="rtl"] .language-menu,
html[dir="rtl"] .mobile-call {
  direction: ltr;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(244, 185, 66, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.35), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.button:hover::before {
  opacity: 1;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--amber-2);
  box-shadow: 0 14px 34px rgba(244, 185, 66, 0.34);
}

.button-primary {
  min-height: 56px;
  padding-inline: 24px;
}

.button-attention {
  animation: cta-breathe 2.8s ease-in-out infinite;
}

@keyframes cta-breathe {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(244, 185, 66, 0.24);
  }
  50% {
    box-shadow: 0 14px 42px rgba(244, 185, 66, 0.52), 0 0 0 7px rgba(244, 185, 66, 0.09);
  }
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.button-whatsapp {
  min-height: 56px;
  padding-inline: 24px;
  background: #1fae61;
  color: var(--white);
  box-shadow: 0 12px 34px rgba(31, 174, 97, 0.28);
}

.button-whatsapp:hover {
  background: #27c771;
  box-shadow: 0 16px 40px rgba(31, 174, 97, 0.38);
}

.button-location {
  min-height: 56px;
  padding-inline: 24px;
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(56, 189, 176, 0.25);
}

.button-location:hover {
  background: #58d1c4;
  box-shadow: 0 16px 40px rgba(56, 189, 176, 0.34);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: none;
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.header-call {
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(69, 198, 178, 0.23), transparent 24%),
    radial-gradient(circle at 12% 90%, rgba(244, 185, 66, 0.18), transparent 28%),
    linear-gradient(135deg, #071723 0%, #0b2635 52%, #0d3441 100%);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/istanbul-bosphorus.webp");
  background-position: center 60%;
  background-size: cover;
  opacity: 0.2;
  filter: saturate(0.8) contrast(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero > .container {
  position: relative;
  z-index: 1;
  padding-block: 28px 92px;
}

.breadcrumbs {
  margin-bottom: 58px;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.34);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.78);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.corporate-badge {
  width: fit-content;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(69, 198, 178, 0.35);
  border-radius: 999px;
  background: rgba(69, 198, 178, 0.08);
  color: #dcfaf5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.corporate-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(69, 198, 178, 0.12);
  animation: status-pulse 2.2s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 10px rgba(69, 198, 178, 0); }
}

.eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-pill {
  color: #dffbf6;
  border-color: rgba(69, 198, 178, 0.48);
}

.hero h1 {
  max-width: 830px;
  margin: 22px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.8vw, 82px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.hero-proof {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-proof figure {
  position: relative;
  height: 188px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.team-chip {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 24, 36, 0.88);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.team-chip strong {
  color: var(--amber-2);
  font-size: 16px;
}

.hero-proof figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.86) contrast(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-proof:hover figure img {
  transform: scale(1.045);
}

.hero-proof-content {
  padding: 24px 26px 26px;
}

.hero-proof-content > span {
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof ol {
  margin: 18px 0 20px;
  padding: 0;
  counter-reset: proof;
  list-style: none;
}

.hero-proof li {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof li::before {
  counter-increment: proof;
  content: "0" counter(proof);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.hero-proof small {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.5;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-ribbon .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-ribbon .container > div {
  min-height: 100px;
  padding: 21px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-ribbon .container > div + div {
  border-left: 1px solid var(--line);
}

.trust-ribbon strong,
.trust-ribbon span {
  display: block;
}

.trust-ribbon strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.05;
}

.trust-ribbon span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.content-stack {
  padding-block: 0 96px;
}

.quick-facts {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-facts-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-facts div {
  padding: 26px 30px;
}

.quick-facts div + div {
  border-left: 1px solid var(--line);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.quick-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.content-section {
  padding-block: 90px;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading span {
  color: #9c6815;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.cta-panel h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.content-section p {
  max-width: 860px;
}

.lead {
  font-size: 21px;
  line-height: 1.6;
}

.surface {
  margin-inline: -40px;
  padding-inline: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.52);
}

.pattern-panel {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.72);
  background-image: radial-gradient(circle at 1px 1px, rgba(8, 24, 36, 0.075) 1px, transparent 0);
  background-size: 20px 20px;
}

.pattern-panel > * {
  position: relative;
  z-index: 1;
}

.dark-section {
  margin-inline: -40px;
  padding-inline: 40px;
  border: 0 !important;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.dark-section .section-heading span {
  color: var(--teal);
}

.dark-section p,
.dark-section li {
  color: rgba(255, 255, 255, 0.74);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  --card-image: url("assets/modern-door-lock.webp");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 220px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(8, 24, 36, 0.13);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.info-card::before,
.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.info-card::before {
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.02);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 700ms ease;
}

.info-card::after {
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(5, 20, 30, 0.94) 0%, rgba(8, 29, 40, 0.82) 58%, rgba(8, 24, 36, 0.66) 100%),
    linear-gradient(to top, rgba(8, 24, 36, 0.78), transparent 54%);
}

.card-grid .info-card:nth-child(7n + 1) {
  --card-image: url("assets/unlocking-door.webp");
}

.card-grid .info-card:nth-child(7n + 2) {
  --card-image: url("assets/modern-door-lock.webp");
}

.card-grid .info-card:nth-child(7n + 3) {
  --card-image: url("assets/key-cutting.jpg");
}

.card-grid .info-card:nth-child(7n + 4) {
  --card-image: url("assets/lock-hardware.webp");
}

.card-grid .info-card:nth-child(7n + 5) {
  --card-image: url("assets/key-in-lock.jpg");
}

.card-grid .info-card:nth-child(7n + 6) {
  --card-image: url("assets/corporate-team.jpg");
}

.card-grid .info-card:nth-child(7n) {
  --card-image: url("assets/istanbul-bosphorus.webp");
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 185, 66, 0.52);
  box-shadow: 0 24px 54px rgba(8, 24, 36, 0.22);
}

.info-card:hover::before {
  transform: scale(1.075);
  filter: saturate(1.02) contrast(1.08);
}

.dark-section .info-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.card-number {
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.info-card h3 {
  margin: 42px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
  color: var(--white);
}

.info-card h3 a {
  color: var(--white);
  text-decoration: none;
}

.info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.dark-section .info-card p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid var(--line);
}

.dark-section .check-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.call-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.call-card span,
.call-card strong {
  display: block;
}

.call-card span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.call-card strong {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.call-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.campaign-call {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 185, 66, 0.42);
}

.campaign-call::after {
  content: "%20";
  position: absolute;
  right: -12px;
  bottom: -32px;
  color: rgba(244, 185, 66, 0.09);
  font: 950 92px/1 ui-sans-serif, sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.campaign-call > * {
  position: relative;
  z-index: 1;
}

.campaign-call small {
  margin-top: 14px;
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.transparency-note {
  margin: 34px 0 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  border: 1px solid #d5bf88;
  border-radius: var(--radius-sm);
  background: #fff8df;
  color: #5b4a21;
}

.transparency-note strong {
  font-size: 13px;
}

.transparency-note p {
  margin: 0;
  font-size: 13px;
}

.district-directory,
.location-list {
  margin: 30px 0 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(135deg, rgba(4, 18, 28, 0.9), rgba(8, 42, 54, 0.72)),
    url("assets/istanbul-bosphorus.webp");
  background-position: center 58%;
  background-size: cover;
  box-shadow: 0 25px 65px rgba(8, 24, 36, 0.18);
  list-style: none;
}

.district-directory li,
.location-list li {
  position: relative;
  min-height: 88px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(8, 24, 36, 0.58);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.district-directory li::after,
.location-list li::after {
  content: "→";
  position: absolute;
  right: 17px;
  top: 50%;
  color: var(--amber-2);
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-8px, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.district-directory li:hover,
.location-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 185, 66, 0.62);
  background: rgba(8, 24, 36, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.district-directory li:hover::after,
.location-list li:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.district-directory a,
.location-list a {
  padding-right: 28px;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.district-directory span,
.location-list span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.source-note,
.fine-print {
  color: var(--muted);
  font-size: 12px;
}

.claim-note,
.photo-credit {
  color: var(--muted);
  font-size: 12px;
}

.visual-story {
  margin: 64px -40px 0;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.visual-copy > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-copy h2 {
  margin: 14px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.visual-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.visual-copy .button {
  margin-top: 14px;
}

.visual-mosaic {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.visual-mosaic figure,
.editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #173340;
}

.visual-mosaic .visual-main {
  grid-row: 1 / span 2;
}

.visual-mosaic img,
.editorial-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 900ms ease;
}

.visual-mosaic figure:hover img,
.editorial-image:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.visual-mosaic figcaption,
.editorial-image figcaption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 24, 36, 0.84);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.visual-story .photo-credit {
  grid-column: 1 / -1;
  margin: -20px 0 0;
  color: rgba(255, 255, 255, 0.44);
}

.editorial-image {
  min-height: 470px;
  box-shadow: var(--shadow);
}

.section-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enterprise-showcase {
  margin: 70px -40px 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 10%, rgba(69, 198, 178, 0.14), transparent 34%),
    linear-gradient(145deg, #071723, #102f3d);
  color: var(--white);
  box-shadow: 0 34px 85px rgba(8, 24, 36, 0.2);
}

.enterprise-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #173340;
}

.enterprise-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 20, 30, 0.8), transparent 48%);
}

.enterprise-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1), filter 800ms ease;
}

.enterprise-showcase:hover .enterprise-visual img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.enterprise-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 750;
}

.team-seal {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  width: 138px;
  aspect-ratio: 1;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(8, 24, 36, 0.86);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(14px);
  animation: seal-float 4.5s ease-in-out infinite;
}

.team-seal strong {
  color: var(--amber-2);
  font: 700 38px/1 Georgia, serif;
}

.team-seal small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

@keyframes seal-float {
  50% { transform: translateY(-7px); }
}

.enterprise-copy {
  padding: 54px 48px;
  align-self: center;
}

.enterprise-copy h2,
.brand-stage h2,
.experience-stage h2 {
  margin: 14px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.enterprise-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.enterprise-copy .lead {
  color: rgba(255, 255, 255, 0.9);
}

.enterprise-metrics {
  margin: 34px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.enterprise-metrics div {
  padding: 20px 10px 20px 0;
}

.enterprise-metrics strong,
.enterprise-metrics span {
  display: block;
}

.enterprise-metrics strong {
  color: var(--amber-2);
  font: 700 30px/1 Georgia, serif;
}

.enterprise-metrics span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-manifesto {
  position: relative;
  margin: 72px -40px 0;
  padding: 68px 54px 30px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 52px;
  overflow: hidden;
  border: 1px solid rgba(8, 24, 36, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 5%, rgba(244, 185, 66, 0.2), transparent 28%),
    linear-gradient(145deg, #fff, #f0ece2);
  box-shadow: var(--shadow);
}

.service-manifesto::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 46px solid rgba(69, 198, 178, 0.08);
  border-radius: 50%;
}

.manifesto-copy,
.manifesto-values,
.manifesto-note {
  position: relative;
  z-index: 1;
}

.manifesto-copy .section-kicker {
  color: #94620f;
}

.manifesto-copy h2 {
  margin: 15px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.052em;
  line-height: 1;
}

.manifesto-copy p {
  color: var(--muted);
}

.manifesto-copy .lead {
  color: var(--ink-2);
}

.manifesto-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.manifesto-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.manifesto-values article {
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(8, 24, 36, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 13px 32px rgba(8, 24, 36, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.manifesto-values article:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 198, 178, 0.48);
  box-shadow: 0 20px 42px rgba(8, 24, 36, 0.11);
}

.manifesto-values article > span {
  color: #a46c12;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.manifesto-values h3 {
  margin: 42px 0 10px;
  font: 700 25px/1.08 Georgia, serif;
}

.manifesto-values p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.manifesto-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.brand-stage {
  margin: 72px -40px 0;
  padding: 64px 54px;
  overflow: hidden;
  border: 1px solid rgba(8, 24, 36, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #efeade);
  box-shadow: var(--shadow);
}

.brand-stage-heading {
  max-width: 880px;
}

.brand-stage-heading .section-kicker {
  color: #94620f;
}

.brand-stage-heading p {
  max-width: 760px;
  color: var(--muted);
}

.brand-marquee {
  margin: 38px -54px 46px;
  padding-block: 17px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.brand-track {
  width: max-content;
  display: flex;
  animation: brand-scroll 28s linear infinite;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.brand-group span {
  min-width: 150px;
  padding: 13px 18px;
  border: 1px solid rgba(8, 24, 36, 0.13);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 18px rgba(8, 24, 36, 0.06);
}

@keyframes brand-scroll {
  to { transform: translateX(-50%); }
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 38px;
  align-items: center;
}

.brand-feature > div:first-child > span {
  color: #94620f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-feature h3 {
  margin: 12px 0 16px;
  font: 700 clamp(30px, 4vw, 44px)/1.03 Georgia, serif;
  letter-spacing: -0.04em;
}

.brand-feature p {
  color: var(--muted);
}

.brand-visual-grid {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.brand-visual-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d6d1c6;
}

.brand-visual-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.brand-visual-grid figure:hover img {
  transform: scale(1.045);
}

.brand-visual-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(8, 24, 36, 0.84);
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.brand-disclaimer {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.experience-stage {
  margin: 72px -40px 0;
  padding: 66px 54px 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 185, 66, 0.18), transparent 25%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.experience-intro {
  max-width: 900px;
}

.experience-intro > p {
  color: rgba(255, 255, 255, 0.72);
}

.experience-intro blockquote {
  margin: 34px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.92);
  font: italic 700 clamp(20px, 3vw, 30px)/1.4 Georgia, serif;
}

.experience-intro cite {
  margin-top: 10px;
  display: block;
  color: var(--teal);
  font: 850 10px/1.4 ui-sans-serif, sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.experience-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(69, 198, 178, 0.38);
  background: rgba(255, 255, 255, 0.085);
}

.experience-grid article > span {
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.experience-grid h3 {
  margin: 48px 0 12px;
  font: 700 26px/1.1 Georgia, serif;
}

.experience-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.experience-cta {
  margin: 48px -54px 0;
  padding: 30px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--teal);
  color: var(--ink);
}

.experience-cta strong,
.experience-cta span {
  display: block;
}

.experience-cta strong {
  font: 700 24px/1.2 Georgia, serif;
}

.experience-cta span {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.section-link {
  margin-top: 26px;
  font-weight: 850;
}

.section-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 20px;
  color: #a97016;
  font: 800 28px/1 ui-sans-serif, sans-serif;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: -6px 0 24px;
  color: var(--muted);
}

.chip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-links a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cta-panel {
  margin-top: 48px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--amber);
  color: var(--ink);
}

.cta-panel > div > span {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cta-panel h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.cta-panel p {
  margin-bottom: 0;
  color: #4e3a12;
}

.cta-panel small {
  margin-top: 12px;
  display: block;
  max-width: 780px;
  color: rgba(78, 58, 18, 0.74);
  font-size: 11px;
  line-height: 1.5;
}

.site-footer {
  padding: 70px 0 30px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 60px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-company-copy {
  max-width: 520px;
}

.footer-assurance {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-assurance span {
  position: relative;
  padding: 8px 12px 8px 29px;
  border: 1px solid rgba(69, 198, 178, 0.24);
  border-radius: 999px;
  background: rgba(69, 198, 178, 0.065);
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.footer-assurance span::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  color: var(--teal);
  font-size: 10px;
  font-weight: 950;
  transform: translateY(-50%);
}

.footer-assurance span:last-child {
  border-color: rgba(244, 185, 66, 0.3);
  background: rgba(244, 185, 66, 0.065);
}

.footer-assurance span:last-child::before {
  color: var(--amber-2);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--teal);
  font: 900 12px/1.2 ui-sans-serif, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  margin: 8px 0;
  display: block;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.creator-signature {
  margin-top: 24px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(69, 198, 178, 0.055));
}

.signature-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 185, 66, 0.42);
  border-radius: 50%;
  background: rgba(244, 185, 66, 0.08);
  color: var(--amber-2);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.creator-signature div {
  display: flex;
  flex-direction: column;
}

.creator-signature small {
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-signature a {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
  font: 700 17px/1.3 Georgia, "Times New Roman", serif;
  text-decoration-color: rgba(244, 185, 66, 0.48);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.creator-signature a:hover {
  color: var(--amber-2);
}

.creator-signature em {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-style: normal;
}

.desktop-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 44;
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 24, 36, 0.93);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(8, 24, 36, 0.3);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.desktop-actions strong {
  color: var(--amber-2);
  font-size: 15px;
}

.desktop-actions a,
.desktop-actions button {
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.desktop-actions .floating-location {
  background: var(--teal);
  color: var(--ink);
}

.desktop-actions .floating-whatsapp {
  background: #1fae61;
  color: var(--white);
}

.desktop-actions .floating-call {
  background: var(--amber);
  color: var(--ink);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease var(--reveal-delay, 0ms), transform 780ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms);
}

.mobile-call {
  display: none;
}

@media (max-width: 960px) {
  body {
    font-size: 16px;
  }

  .main-nav {
    display: none;
  }

  .language-menu {
    margin-left: auto;
  }

  .header-call {
    margin-left: 0;
  }

  .hero-grid,
  .split,
  .footer-grid,
  .visual-story,
  .enterprise-showcase,
  .service-manifesto,
  .brand-feature {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-proof {
    max-width: 560px;
  }

  .card-grid,
  .district-directory,
  .location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-ribbon .container,
  .quick-facts-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-ribbon .container > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-ribbon .container > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .enterprise-visual {
    min-height: 520px;
  }

  .enterprise-copy {
    padding: 42px 36px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article {
    min-height: auto;
  }

  .manifesto-values article {
    min-height: 210px;
  }

  .experience-grid h3 {
    margin-top: 26px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .utility-bar span {
    display: inline;
  }

  .utility-bar .container {
    justify-content: center;
  }

  .utility-slogan {
    max-width: 360px;
    font-size: 9px;
    letter-spacing: 0.045em;
    line-height: 1.45;
  }

  .nav-shell {
    min-height: 70px;
    gap: 10px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand-logo {
    width: 44px;
    padding: 4px;
  }

  .header-call {
    min-height: 42px;
    padding: 10px 14px;
  }

  .language-menu-label {
    display: none;
  }

  .language-menu summary {
    padding-inline: 10px;
  }

  .language-panel {
    right: -72px;
  }

  .hero > .container {
    padding: 20px 0 64px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    text-align: center;
  }

  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-ribbon .container {
    grid-template-columns: 1fr 1fr;
  }

  .trust-ribbon .container > div {
    min-height: 112px;
    padding: 18px 14px;
  }

  .trust-ribbon .container > div:nth-child(odd) {
    border-left: 0;
  }

  .trust-ribbon strong {
    font-size: 18px;
  }

  .ticker-group span {
    padding-inline: 26px;
    font-size: 10px;
  }

  .visual-story {
    margin-inline: -8px;
    padding: 28px 20px;
    border-radius: var(--radius);
  }

  .enterprise-showcase,
  .service-manifesto,
  .brand-stage,
  .experience-stage {
    margin-inline: -8px;
    border-radius: var(--radius);
  }

  .enterprise-showcase {
    padding: 8px;
  }

  .enterprise-visual {
    min-height: 430px;
    border-radius: 14px;
  }

  .team-seal {
    top: 14px;
    left: 14px;
    width: 112px;
  }

  .team-seal strong {
    font-size: 31px;
  }

  .enterprise-copy {
    padding: 32px 18px 28px;
  }

  .enterprise-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .enterprise-actions .button {
    width: 100%;
  }

  .service-manifesto {
    padding: 44px 20px 28px;
    gap: 36px;
  }

  .manifesto-actions .button {
    width: 100%;
  }

  .manifesto-values {
    grid-template-columns: 1fr;
  }

  .manifesto-values article {
    min-height: auto;
  }

  .manifesto-values h3 {
    margin-top: 24px;
  }

  .brand-stage {
    padding: 42px 20px;
  }

  .brand-marquee {
    margin-inline: -20px;
  }

  .brand-visual-grid {
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.75fr;
  }

  .experience-stage {
    padding: 44px 20px 0;
  }

  .experience-intro blockquote {
    padding: 20px;
  }

  .experience-cta {
    margin-inline: -20px;
    padding: 26px 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .experience-cta .button {
    width: 100%;
  }

  .visual-mosaic {
    min-height: 620px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr 0.75fr;
  }

  .visual-mosaic .visual-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .visual-mosaic figcaption {
    inset: auto 7px 7px;
    padding: 7px 9px;
    border-radius: 10px;
    font-size: 9px;
  }

  .content-section {
    padding-block: 64px;
  }

  .surface,
  .dark-section {
    margin-inline: -8px;
    padding-inline: 20px;
    border-radius: var(--radius);
  }

  .card-grid,
  .district-directory,
  .location-list {
    grid-template-columns: 1fr;
  }

  .district-directory,
  .location-list {
    padding: 10px;
    border-radius: var(--radius);
    background-position: center;
  }

  .district-directory li,
  .location-list li {
    min-height: 82px;
  }

  .info-card {
    min-height: 185px;
  }

  .transparency-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-panel {
    padding: 30px 24px;
    border-radius: var(--radius);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .creator-signature {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .creator-signature em {
    width: 100%;
    margin-left: 56px;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .mobile-call {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 80;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(8, 24, 36, 0.96);
    color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    font-size: 11px;
    backdrop-filter: blur(14px);
  }

  .mobile-call a,
  .mobile-call button {
    flex: 1 1 33.333%;
    padding: 11px 8px;
    border: 0;
    border-radius: 999px;
    background: var(--amber);
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
  }

  .mobile-call .mobile-location {
    background: var(--teal);
    color: var(--ink);
  }

  .mobile-call .mobile-whatsapp {
    background: #1fae61;
    color: var(--white);
  }

  .mobile-call .mobile-phone {
    background: var(--amber);
    color: var(--ink);
  }

  .translation-toast {
    bottom: 88px;
  }

  .location-toast {
    right: 18px;
    bottom: 88px;
  }

  .desktop-actions {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand-logo {
    width: 40px;
    padding: 4px;
  }

  .header-call {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .language-menu summary {
    min-height: 40px;
    padding: 7px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
