/* Rekor Vida */

:root {
  --brand-950: #060d18;
  --brand-900: #0a1628;
  --brand-800: #0f2847;
  --brand-700: #163a5f;
  --brand-600: #1e5080;
  --accent: #d94f3d;
  --accent-hover: #c04434;
  --accent-soft: rgba(217, 79, 61, 0.1);
  --gold: #c4a035;
  --surface: #f3f5f8;
  --surface-2: #e8ecf2;
  --surface-3: #dde3eb;
  --surface-elevated: #ffffff;
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --border: rgba(15, 23, 42, 0.09);
  --border-strong: rgba(15, 23, 42, 0.13);
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --header-h: 72px;
  --wrap: min(1140px, 92vw);
  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1);
  --ease: ease;
}

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

html { scroll-behavior: smooth; }

body.site {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

body.site.has-bar { padding-bottom: 68px; }

@media (min-width: 992px) {
  body.site.has-bar { padding-bottom: 0; }
}

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

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header.is-scrolled {
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header.is-scrolled .nav__item > a {
  color: rgba(255, 255, 255, 0.82);
}

.header.is-scrolled .nav__item > a:hover,
.header.is-scrolled .nav__item > a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header.is-scrolled .header__tel {
  color: rgba(255, 255, 255, 0.9);
}

.header.is-scrolled .header__tel:hover {
  color: var(--accent);
}

.header.is-scrolled .logo img {
  filter: brightness(0) invert(1);
}

.header.is-scrolled .nav-toggle span {
  background: #fff;
}

.header.is-scrolled .btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(217, 79, 61, 0.35);
}

.header.is-scrolled .btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.header--over-hero:not(.is-scrolled) {
  border-bottom-color: transparent;
  box-shadow: none;
}

.header--over-hero:not(.is-scrolled) .nav__item > a,
.header--over-hero:not(.is-scrolled) .header__tel {
  color: rgba(255, 255, 255, 0.88);
}

.header--over-hero:not(.is-scrolled) .nav__item > a:hover,
.header--over-hero:not(.is-scrolled) .nav__item > a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header--over-hero:not(.is-scrolled) .logo img {
  filter: brightness(0) invert(1);
}

.header--over-hero:not(.is-scrolled) .nav-toggle span {
  background: #fff;
}

.header--over-hero:not(.is-scrolled) .btn--primary {
  background: #fff;
  color: var(--brand-800);
  box-shadow: none;
}

.header__inner {
  width: var(--wrap);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo img { height: 42px; width: auto; }

.nav { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item { position: relative; }

.nav__item > a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav__item > a:hover,
.nav__item > a.is-active {
  color: var(--brand-800);
  background: var(--surface-2);
}

.nav__item--dropdown {
  position: relative;
}

.nav__item--dropdown > a {
  position: relative;
  padding-right: 1.75rem;
}

.nav__arrow {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.25rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  pointer-events: none;
}

@media (min-width: 992px) {
  .nav__item--dropdown .nav__arrow { display: none; }
}

.nav__drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.22s var(--ease);
}

.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__drop a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-2);
  border-radius: 6px;
}

.nav__drop a:hover {
  background: var(--surface-2);
  color: var(--brand-800);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__tel {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-800);
  white-space: nowrap;
}

.header__tel:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s;
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--brand-800);
  color: #fff;
  box-shadow: 0 2px 8px rgba(15, 40, 71, 0.25);
}

.btn--primary:hover {
  background: var(--brand-900);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(217, 79, 61, 0.35);
}

.btn--accent:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--brand-600);
  color: var(--brand-800);
}

.btn--white {
  background: #fff;
  color: var(--brand-800);
}

.btn--white:hover {
  background: var(--surface-2);
  color: var(--brand-900);
}

.btn--lg { padding: 0.9rem 1.75rem; font-size: 0.95rem; }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  background: var(--brand-950);
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 80, 128, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(217, 79, 61, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, var(--brand-950) 0%, var(--brand-900) 40%, var(--brand-800) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__content { color: #fff; }

.eyebrow {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  max-width: 20ch;
}

.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: relative;
}

.hero__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float { display: none; }

/* Stats bar in hero bottom */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

.hero__stats .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .hero__stats .wrap { grid-template-columns: repeat(4, 1fr); }
}

.hero__stat {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat:last-child { border-right: none; }

.hero__stat b {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero__scroll { display: none; }

.hero__stat small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--muted { background: var(--surface-2); }

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head .label { display: none; }

.section-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-2);
  font-size: 1.05rem;
}

/* Product cards */
.products-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-page {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .category-page { grid-template-columns: 1fr 1fr; }
}

.category-page__visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.category-page__text p {
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}

.p-card:hover {
  border-color: var(--brand-600);
  box-shadow: var(--shadow);
}

.p-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-3);
}

.p-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.p-card:hover .p-card__media img { transform: none; }

.p-card__media::after { display: none; }

.p-card__arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(8px, 8px);
  transition: 0.35s var(--ease);
  z-index: 1;
}

.p-card__arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand-800);
  border-top: 2px solid var(--brand-800);
  transform: rotate(45deg);
  margin-top: 2px;
}

.p-card:hover .p-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.p-card__body { padding: 1.35rem 1.35rem 1.5rem; flex: 1; }

.p-card__body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.p-card__body p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.p-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-700);
  margin-top: auto;
}

.p-card:hover .p-card__link { color: var(--accent); }

/* Pillars */
.pillars {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  padding: 2rem 1.75rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.pillar__icon { display: none; }

.pillar {
  padding: 1.25rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.pillar:hover {
  border-color: var(--border-strong);
  box-shadow: none;
}

.cta-home .label { display: none; }

.mission-band { display: none; }

.process-step__num { display: none; }

.process-step { padding-left: 1.25rem; }

.stats-band { display: none; }

.pillar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.pillar__icon svg {
  width: 24px;
  height: 24px;
}

.pillar h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; }
}

.about__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__visual img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.about__text p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.cert-row span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--brand-800);
}

.cert-row .is-main {
  background: var(--brand-800);
  color: #fff;
  border-color: var(--brand-800);
}

/* Tools */
.tools-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
}

.tool {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: 0.25s var(--ease);
  min-height: 100%;
}

.tool:hover {
  border-color: var(--brand-600);
}

.tool__num { display: none; }

.tool h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.tool p {
  font-size: 0.85rem;
  color: var(--text-2);
  margin: 0 0 auto;
  padding-bottom: 1rem;
}

.tool span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-700);
}

.tool:hover span { color: var(--accent); }

/* CTA */
.cta-panel {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-800) 100%);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
  .cta-panel { grid-template-columns: 1fr 1fr; }
}

.cta-panel h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.cta-panel > div > p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
  max-width: 40ch;
}

.cta-panel__form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.form-success {
  padding: 0.75rem 1rem;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.form-success[hidden] { display: none; }

.cta-panel .btn--accent { width: 100%; margin-top: 0.25rem; }

.cta-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--brand-950);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer__top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.2fr repeat(3, 1fr); }
}

.footer .logo img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer__brand p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.6;
  font-size: 0.85rem;
}

.footer h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}

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

.footer li { margin-bottom: 0.45rem; }

.footer a { color: rgba(255, 255, 255, 0.65); }
.footer a:hover { color: #fff; }
.footer__bottom a { color: rgba(255, 255, 255, 0.5); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Mobile bar */
.m-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  padding: 0.45rem;
  gap: 0.45rem;
  background: var(--brand-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.m-bar a {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.m-bar .wa { background: #25d366; color: #fff; }
.m-bar .quote { background: var(--accent); color: #fff; }

@media (min-width: 992px) {
  .m-bar { display: none; }
  .header__tel { display: block; }
  .header__actions .btn--primary { display: inline-flex; }
  .header__tools { display: none; }
  .nav__head { display: none; }
  .nav__scroll { padding: 0; overflow: visible; }
  .nav-overlay { display: none; }
}

@media (max-width: 991px) {
  :root { --header-h: 60px; }

  body.site { padding-top: var(--header-h); }
  body.site.nav-open { overflow: hidden; }

  .header {
    background: var(--brand-900);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .header__inner {
    gap: 1rem;
    justify-content: space-between;
  }

  .logo img {
    height: 34px;
    width: auto;
  }

  .header .logo img,
  .header--over-hero:not(.is-scrolled) .logo img {
    filter: brightness(0) invert(1);
  }

  .header__tel,
  .header__actions .btn--primary { display: none; }

  .header__tools {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: 0;
    padding: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s, border-color 0.2s;
  }

  .header .nav-toggle span,
  .header--over-hero:not(.is-scrolled) .nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 1px;
  }

  .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .nav-toggle.is-active {
    background: var(--accent);
    border-color: var(--accent);
  }

  .nav-toggle.is-active span { background: #fff; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(6, 13, 24, 0.62);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(340px, 92vw);
    margin-left: 0;
    padding: 0;
    background:
      radial-gradient(ellipse 120% 80% at 100% 0%, rgba(30, 80, 128, 0.35) 0%, transparent 55%),
      linear-gradient(180deg, var(--brand-900) 0%, var(--brand-950) 100%);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    max-height: none;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 999;
    pointer-events: none;
  }

  .nav.is-open {
    display: flex;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav__head {
    flex-shrink: 0;
    padding: calc(var(--header-h) + 1rem) 1.25rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav__head-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__head-text { min-width: 0; }

  .nav__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.15rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .nav__close svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .nav__close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .nav__head-label {
    margin: 0 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .nav__head-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .nav__scroll {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav__item:last-child { border-bottom: none; }

  .nav__item > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.05rem 1.5rem;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    border: none;
    transition: color 0.2s, background 0.2s;
  }

  .nav__item > a:hover,
  .nav__item > a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav__item > a.is-active {
    box-shadow: inset 3px 0 0 var(--accent);
  }

  .nav__item--dropdown > a {
    padding-right: 3rem;
  }

  .nav__item--dropdown.is-open > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav__item--dropdown > .nav__arrow {
    display: block;
    top: 50%;
    right: 1.5rem;
    margin-top: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
    border-color: rgba(255, 255, 255, 0.45);
    transition: transform 0.22s ease, border-color 0.2s;
    pointer-events: none;
  }

  .nav__item--dropdown.is-open > .nav__arrow {
    transform: rotate(-135deg);
    margin-top: -0.05rem;
    border-color: var(--accent);
  }

  .nav__drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem;
    margin: 0;
    display: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .nav__item.is-open .nav__drop { display: block; }

  .nav__drop li {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav__drop a {
    display: block;
    padding: 0.8rem 1.5rem 0.8rem 2.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    border-radius: 0;
    position: relative;
  }

  .nav__drop a::before {
    content: "";
    position: absolute;
    left: 1.5rem;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.2s;
  }

  .nav__drop a:hover,
  .nav__drop a.is-active {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  .nav__drop a:hover::before,
  .nav__drop a.is-active::before {
    background: var(--accent);
  }

  .nav__mobile-cta { display: none !important; }
  .header__call-btn { display: none !important; }

  .hero {
    padding-top: calc(var(--header-h) + 1.25rem);
  }

  .hero__grid {
    gap: 1.75rem;
    padding-bottom: 2rem;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stat {
    padding: 1rem 0.5rem;
  }

  .hero__stat b { font-size: 1.05rem; }

  .hero__stat small { font-size: 0.68rem; }

  .hero__float { position: static; margin-top: 1rem; max-width: none; }

  .section-head p { font-size: 0.95rem; }

  .m-bar {
    padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  }

  .m-bar a {
    padding: 0.65rem 0.35rem;
    font-size: 0.72rem;
  }

  .page-banner--rich .page-banner__inner {
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .page-banner--rich h1 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .page-banner__actions {
    flex-direction: column;
  }

  .page-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Sub pages */
body.site.sub { padding-top: var(--header-h); }
body.site.sub .header { position: fixed; }

.page-hero {
  padding: 2.5rem 0;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.page-hero p { margin: 0; color: var(--text-2); }

/* İç sayfa üst bandı — görsel yok, kurumsal gradient */
.page-banner {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-banner--rich {
  color: #fff;
  padding-bottom: 0;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(30, 80, 128, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(217, 79, 61, 0.1) 0%, transparent 50%),
    linear-gradient(155deg, var(--brand-950) 0%, var(--brand-900) 50%, var(--brand-800) 100%);
  pointer-events: none;
}

.page-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem 0 2rem;
}

.page-banner--rich .page-banner__inner {
  padding: calc(var(--header-h) + 1rem) 0 1.15rem;
}

.page-banner--rich .crumb {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.page-banner--rich .crumb a:hover {
  color: #fff;
}

.page-banner--rich .eyebrow {
  margin-bottom: 0.85rem;
}

.page-banner .label {
  margin-bottom: 0.65rem;
}

.page-banner--rich .label { display: none; }

.page-banner h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.page-banner--rich h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: none;
  margin-bottom: 0.4rem;
}

.page-banner__lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-banner--rich .page-banner__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 46ch;
}

.page-banner__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.page-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-banner__chips li {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.page-banner--rich .page-banner__chips li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
}



.page-banner--rich .page-banner__actions .btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.page-banner__chips a {
  font-weight: 600;
}

.page-banner--rich .page-banner__chips a {
  color: #fff;
}

.page-banner--rich .page-banner__chips a:hover {
  color: var(--gold);
}

.page-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-banner__stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.page-banner__stats .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .page-banner__stats .wrap { grid-template-columns: repeat(4, 1fr); }
}

.page-banner__stat {
  padding: 0.65rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner__stat:last-child { border-right: none; }

.page-banner__stat b {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.page-banner__stat small {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.1rem;
}

/* Açık varyant (ürün sayfaları vb.) */
.page-banner:not(.page-banner--rich) {
  padding: 2rem 0 2.25rem;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

.page-banner:not(.page-banner--rich) .page-banner__lead {
  color: var(--text-2);
}

.page-banner:not(.page-banner--rich) .page-banner__chips li {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.page-banner:not(.page-banner--rich) .page-banner__chips a {
  color: var(--brand-700);
}

.page-banner:not(.page-banner--rich) .page-banner__chips a:hover {
  color: var(--accent);
}

body.site.page-inner {
  padding-top: 0;
}

body.site.page-inner.sub .header {
  position: fixed;
}

.crumb {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

.crumb a:hover { color: var(--brand-700); }

/* Home CTA band */
.section--cta-home { padding-block: clamp(2.5rem, 5vw, 3.5rem); }

.cta-home {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-800) 100%);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-home h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.cta-home p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 42ch;
}

.cta-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-home .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-home .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-700);
  transition: color 0.2s, gap 0.2s;
}

.link-arrow:hover {
  color: var(--accent);
  gap: 0.55rem;
}

.nav__item a.is-active { color: var(--accent); }

/* Inner pages */
.content-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .content-grid--2 { grid-template-columns: 1fr 1fr; align-items: start; }
}

.content-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.content-block p {
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
  padding: 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

.timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.timeline__item:last-child { border-bottom: none; padding-bottom: 0; }

.timeline__year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline__item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.timeline__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-layout { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}

.contact-card a,
.contact-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-card a:hover { color: var(--accent); }

.form-panel {
  padding: 2rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.form--light .form-field input,
.form--light .form-field textarea,
.form--light .form-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-elevated);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form--light .form-field input:focus,
.form--light .form-field textarea:focus,
.form--light .form-field select:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(30, 80, 128, 0.12);
}

.form--light .form-field {
  margin-bottom: 0;
}

.form--light .form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form--light .form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: var(--text);
}

.form--light .btn--accent { width: 100%; margin-top: 0.5rem; }

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: var(--surface-2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form--light .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form--light .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-2);
}

.page-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Catalog (ürün listesi) */
.catalog-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .catalog-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

.filter-panel {
  padding: 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.filter-panel h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.filter-panel h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin: 1.25rem 0 0.5rem;
}

.filter-panel h3:first-of-type { margin-top: 0; }

.filter-panel select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-family: var(--font);
  font-size: 0.875rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-2);
  cursor: pointer;
}

.filter-check input { accent-color: var(--brand-700); }

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catalog-toolbar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

.catalog-toolbar strong { color: var(--text); }

.catalog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

.catalog-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.catalog-card:hover {
  border-color: rgba(30, 80, 128, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.catalog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.catalog-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.catalog-card:hover .catalog-card__media img { transform: scale(1.05); }

.catalog-card__din {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--brand-900);
  color: #fff;
  border-radius: 6px;
}

.catalog-card__body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-card__body h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.35;
}

.catalog-card__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}

.catalog-card__spec {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-3);
}

.catalog-card__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.catalog-card__actions .btn { flex: 1; font-size: 0.8rem; padding: 0.55rem 0.75rem; }

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--brand-600);
  color: var(--brand-700);
  background: var(--surface-2);
}

/* Ürün detay */
.page-banner--product .page-banner__inner {
  padding-bottom: 1.35rem;
}

.page-banner--product h1 {
  max-width: none;
}

.section--product-top {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.product-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .product-layout__buy {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.product-gallery-card {
  position: relative;
  padding: 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-gallery__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--brand-900);
  color: #fff;
  border-radius: 6px;
}

.product-gallery-card .product-gallery {
  border: none;
  box-shadow: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--surface-2) 0%, #fff 100%);
  min-height: 300px;
}

.product-gallery-card .product-thumbs {
  margin-top: 1rem;
}

.product-buy-card {
  padding: 1.75rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.product-buy-card__en {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}

.product-buy-card__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
}

.product-code-box {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
}

.product-code-box__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}

.product-code {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--brand-800);
  letter-spacing: 0.02em;
}

.product-spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.product-spec-list div {
  padding: 0.65rem 0.75rem;
  background: var(--surface-2);
  border-radius: 8px;
}

.product-spec-list dt {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 0.15rem;
}

.product-spec-list dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.product-actions--stack {
  flex-direction: column;
  margin-bottom: 1rem;
}

.product-actions--stack .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.product-trust {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.product-trust li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.product-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.product-tabs-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-tabs-card .tabs {
  margin-top: 0;
}

.detail-prose {
  max-width: 68ch;
}

.detail-prose p {
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .related-products { grid-template-columns: repeat(4, 1fr); }
}

.related-product-card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s var(--ease);
}

.related-product-card:hover {
  border-color: rgba(30, 80, 128, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.related-product-card__img {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 0.75rem;
}

.related-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-product-card__img--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
}

.related-product-card__img--cta span {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
}

.related-product-card h3 {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.related-products--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .related-products--3 { grid-template-columns: repeat(3, 1fr); }
}

.section--compact {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.product-gallery-card--simple {
  padding: 1rem;
}

.product-gallery--static {
  cursor: default;
  min-height: 280px;
  padding: 1.5rem;
}

.product-gallery--static img {
  max-height: 260px;
}

.tech-badges--compact {
  margin-bottom: 1rem;
}

.panel-soon {
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  opacity: 0.92;
}

.panel-soon__badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface-3);
  color: var(--text-3);
  border-radius: 4px;
}

.panel-soon__title {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.panel-soon__text {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
}

.panel-soon__sample {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-3);
}

.panel-soon__sample span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.panel-soon__sample code {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-700);
}

.btn.is-disabled,
.btn.is-disabled:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  color: var(--text-3);
  border: 1px solid var(--border);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  opacity: 0.85;
}

.product-tabs-card--simple {
  padding: 1.5rem;
}

.product-tabs-card--simple .tabs__nav {
  margin-bottom: 1.25rem;
}

.tabs__hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-2);
}

.tech-table--flat {
  margin-bottom: 0;
}

.product-buy-card {
  padding: 1.5rem;
}

.product-detail {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .product-detail { grid-template-columns: 1fr 1fr; align-items: start; }
}

.product-gallery {
  padding: 2rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  cursor: zoom-in;
  overflow: hidden;
}

.product-gallery img {
  max-height: 280px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}

.product-gallery.zoomed { cursor: zoom-out; }

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.thumb-btn {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  color: var(--text-2);
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.thumb-btn:hover,
.thumb-btn.is-active {
  border-color: var(--brand-600);
  background: var(--accent-soft);
  color: var(--brand-800);
}

.product-info h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
  letter-spacing: -0.02em;
}

.product-info__sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-3);
}

.product-info__lead {
  margin: 0 0 1.25rem;
  color: var(--text-2);
  line-height: 1.65;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tech-badge {
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--brand-800);
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tech-table th,
.tech-table td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  text-align: left;
}

.tech-table th {
  width: 38%;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--text);
}

.tech-table code {
  font-size: 0.85em;
  color: var(--brand-700);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.variant-box {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

.variant-box__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin: 0 0 0.75rem;
}

.variant-box__label span { color: var(--brand-700); }

.variant-group-label {
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text-2);
}

.variant-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.variant-btn {
  min-width: 2.75rem;
  padding: 0.45rem 0.75rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-elevated);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.variant-btn:hover { border-color: var(--brand-600); }

.variant-btn.is-active,
.variant-btn.active {
  border-color: var(--brand-700);
  background: var(--brand-800);
  color: #fff;
}

/* Tabs */
.tabs { margin-top: 3rem; }

.page-product .tabs { margin-top: 0; }

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.tabs__btn {
  padding: 0.65rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.tabs__btn:hover { color: var(--text); }

.tabs__btn.is-active {
  color: var(--brand-800);
  border-bottom-color: var(--accent);
  font-weight: 600;
}

.tabs__panel { display: none; }

.tabs__panel.is-active { display: block; }

.tabs__panel p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.coating-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .coating-grid { grid-template-columns: repeat(2, 1fr); }
}

.coating-card {
  padding: 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.coating-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.coating-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-2);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .usage-grid { grid-template-columns: repeat(3, 1fr); }
}

.usage-box {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.usage-box svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.5rem;
  color: var(--brand-600);
}

.usage-box p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.download-list {
  display: grid;
  gap: 0.65rem;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}

.download-item:hover {
  border-color: var(--brand-600);
  background: var(--surface-2);
}

.download-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
}

.download-item strong {
  display: block;
  font-size: 0.95rem;
}

.download-item p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--text-2);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(4, 1fr); }
}

.related-mini {
  display: block;
  padding: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-mini:hover {
  border-color: var(--brand-600);
  box-shadow: var(--shadow);
}

.related-mini .tech-badge { margin-bottom: 0.5rem; }

.related-mini p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.detail-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.detail-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.detail-section--form {
  padding: 2rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.table-scroll { overflow-x: auto; }

.datasheet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.datasheet-table th,
.datasheet-table td {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  text-align: center;
}

.datasheet-table thead {
  background: var(--brand-900);
  color: #fff;
}

.contact-strip {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-strip { grid-template-columns: repeat(3, 1fr); }
}

.contact-strip__item {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-800));
  border-radius: var(--radius-sm);
  color: #fff;
}

.contact-strip__item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.contact-strip__item a,
.contact-strip__item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.contact-strip__item a:hover { color: var(--gold); }

.gallery-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--text-2);
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  color: var(--brand-600);
}

/* —— Premium inner pages (İletişim, Hakkımızda) —— */
body.site.page-premium {
  padding-top: 0;
}

body.site.page-premium .header--over-hero:not(.is-scrolled) {
  background: transparent;
}

.sub-hero {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 0;
  min-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  background: var(--brand-950);
  overflow: hidden;
}

.sub-hero--short { min-height: min(62vh, 520px); }

.sub-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(30, 80, 128, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 5% 90%, rgba(217, 79, 61, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, var(--brand-950) 0%, var(--brand-900) 45%, var(--brand-800) 100%);
}

.sub-hero__grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .sub-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.sub-hero__content { color: #fff; }

.sub-hero .crumb {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.sub-hero .crumb a:hover { color: #fff; }

.sub-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.sub-hero__lead {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 0 1.75rem;
}

.sub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sub-hero__visual {
  position: relative;
  display: none;
}

@media (min-width: 992px) {
  .sub-hero__visual { display: block; }
}

.sub-hero__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.sub-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero__badge {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--surface-elevated);
  border-radius: var(--radius-sm);
  padding: 1rem 1.35rem;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}

@media (min-width: 992px) {
  .sub-hero__badge { right: -1.5rem; bottom: 1.5rem; }
}

.sub-hero__badge strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--brand-800);
  line-height: 1;
}

.sub-hero__badge span {
  font-size: 0.8rem;
  color: var(--text-2);
}

.sub-hero__stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.sub-hero__stats .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .sub-hero__stats .wrap { grid-template-columns: repeat(4, 1fr); }
}

.sub-hero__stat {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-hero__stat:last-child { border-right: none; }

.sub-hero__stat b {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #fff;
}

.sub-hero__stat small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

/* Contact hub */
.contact-hub {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .contact-hub {
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.contact-tiles {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-tiles { grid-template-columns: repeat(2, 1fr); }
}

.contact-tile {
  padding: 1.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.contact-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 80, 128, 0.18);
}

.contact-tile--accent {
  background: linear-gradient(145deg, var(--brand-900), var(--brand-800));
  border-color: transparent;
  color: #fff;
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .contact-tile--accent { grid-column: span 2; }
}


.contact-tile--wa {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.08), var(--surface-elevated));
}

.contact-tile__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 11px;
  margin-bottom: 1rem;
}

.contact-tile--accent .contact-tile__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.contact-tile--wa .contact-tile__icon {
  background: rgba(37, 211, 102, 0.15);
  color: #16a34a;
}

.contact-tile__icon svg {
  width: 22px;
  height: 22px;
}

.contact-tile__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}

.contact-tile strong,
.contact-tile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-tile a:hover { color: var(--accent); }

.contact-tile p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}

.contact-tile--accent .contact-tile__label {
  color: rgba(255, 255, 255, 0.65);
}

.contact-tile--accent strong,
.contact-tile--accent a {
  color: #fff;
}

.contact-tile--accent strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 0.15rem;
}

.contact-tile--accent p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-tile--accent a:hover {
  color: var(--gold);
}

.form-panel--premium {
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-lg);
}

.form-panel__head {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
}

.form-panel__head h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
}

.form-panel__head p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.form-panel__body {
  padding: 2rem;
  background: var(--surface-elevated);
}

.map-block {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-block .map-embed {
  margin: 0;
  aspect-ratio: 21/9;
  border: none;
  border-radius: 0;
}

@media (max-width: 767px) {
  .map-block .map-embed { aspect-ratio: 4/3; }
}

.map-block__card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  max-width: 320px;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .map-block__card {
    bottom: auto;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
  }
}

.map-block__card .label { margin-bottom: 0.5rem; }

.map-block__card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.contact-page__map-wrap {
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-lg);
}

.contact-page__map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.contact-page__map-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.contact-page__map-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-700);
}

.contact-page__map-link:hover {
  color: var(--accent);
}

.contact-page__map-embed {
  aspect-ratio: 21/9;
  background: var(--surface-3);
}

.contact-page__map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .contact-page__map-embed { aspect-ratio: 4/3; }
}

.contact-tile p a {
  color: var(--brand-700);
  font-weight: 500;
}

.contact-tile p a:hover {
  color: var(--accent);
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}

.process-step {
  padding: 1.35rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  padding-top: 2.5rem;
}

.process-step__num {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.process-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* About premium */
.mission-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--brand-950);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(217, 79, 61, 0.15), transparent 60%);
  pointer-events: none;
}

.mission-band .wrap {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.mission-band blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.mission-band cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-showcase {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-showcase { grid-template-columns: 1.05fr 1fr; }
}

.about-showcase__media {
  position: relative;
}

.about-showcase__media .about__visual {
  border: 1px solid var(--border);
}

.about-showcase__float { display: none; }

@media (min-width: 992px) {
  .about-showcase__float { left: -1.5rem; bottom: 2rem; }
}

.about-showcase__float div {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--border);
}

.about-showcase__float div:last-child { border-right: none; }

.about-showcase__float b {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-800);
  line-height: 1;
}

.about-showcase__float small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
}

.about-showcase__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.about-showcase__text p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.15rem;
}

.values-grid--premium {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .values-grid--premium { grid-template-columns: repeat(2, 1fr); }
}

.value-card--premium {
  padding: 2rem 1.75rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}

.value-card--premium:hover {
  border-color: rgba(30, 80, 128, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.value-card--premium .pillar__icon { display: none; }

.value-card--premium h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.value-card--premium p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.timeline--premium {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 2rem;
}

.timeline--premium::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--brand-600));
  border-radius: 2px;
}

.timeline--premium .timeline__item {
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 0 0 2rem 1.5rem;
  border-bottom: none;
  position: relative;
}

.timeline--premium .timeline__item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--surface-elevated);
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline--premium .timeline__year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: 0.04em;
}

.timeline--premium .timeline__item h3 {
  font-size: 1.1rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .stats-band { grid-template-columns: repeat(4, 1fr); }
}

.stats-band__item {
  padding: 2rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-900), var(--brand-800));
  color: #fff;
}

.stats-band__item b {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats-band__item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.section--overlap-top {
  padding-top: clamp(5rem, 10vw, 7rem);
}

/* Yüzen iletişim widget'ı */
.contact-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  font-family: var(--font);
}

body.site.has-bar .contact-fab {
  bottom: calc(68px + 0.85rem);
}

@media (min-width: 992px) {
  body.site.has-bar .contact-fab { bottom: 1.25rem; }
}

.contact-fab__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(320px, calc(100vw - 2rem));
  background: var(--surface-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.22);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}

.contact-fab--open .contact-fab__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-fab__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-800) 100%);
  color: #fff;
}

.contact-fab__head h2 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-fab__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-fab__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.contact-fab__list li {
  border-bottom: 1px solid var(--border);
}

.contact-fab__list li:last-child {
  border-bottom: none;
}

.contact-fab__list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}

.contact-fab__list a:hover {
  background: var(--surface-2);
}

.contact-fab__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-800);
  color: #fff;
}

.contact-fab__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-fab__icon--wa {
  background: #25d366;
}

.contact-fab__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-fab__trigger:hover {
  background: #20bd5a;
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.contact-fab__trigger svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-fab--open .contact-fab__trigger {
  background: var(--brand-800);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
}

.contact-fab--open .contact-fab__trigger:hover {
  background: var(--brand-700);
}

.contact-fab__trigger .contact-fab__icon-chat { display: block; }
.contact-fab__trigger .contact-fab__icon-close { display: none; }

.contact-fab--open .contact-fab__trigger .contact-fab__icon-chat { display: none; }
.contact-fab--open .contact-fab__trigger .contact-fab__icon-close { display: block; }

.contact-fab__trigger .contact-fab__icon-close {
  width: 1.25rem;
  height: 1.25rem;
}

