@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_24pt-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eef3fb;
  --bg-soft: #f7faff;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --border: #d9e4f4;
  --navy-950: #001426;
  --navy-900: #001f3c;
  --navy-850: #0a2c55;
  --navy-700: #22456d;
  --orange-500: #ff8c00;
  --orange-400: #ffab3f;
  --green-500: #22b65a;
  --text-900: #102742;
  --text-700: #325276;
  --text-600: #466282;
  --text-500: #59738f;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --shadow-sm: 0 8px 22px rgba(8, 33, 68, 0.08);
  --shadow-md: 0 16px 40px rgba(8, 33, 68, 0.12);
  --shadow-lg: 0 28px 56px rgba(8, 33, 68, 0.16);
  --container: 1240px;
  --font-head: "Manrope", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-900);
  background:
    radial-gradient(circle at 12% -8%, rgba(255, 140, 0, 0.11), transparent 42%),
    radial-gradient(circle at 93% 6%, rgba(0, 31, 60, 0.08), transparent 34%),
    var(--bg);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

main {
  overflow: clip;
}

.container {
  width: min(var(--container), 100% - 2.6rem);
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

#product-catalog {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.section-head {
  margin-bottom: 2.1rem;
  max-width: 72ch;
}

.section-head p {
  margin-top: 0.8rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--orange-500);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-900);
  font-family: var(--font-head);
}

h1 {
  font-size: clamp(1.68rem, 3.75vw, 3.24rem);
}

h2 {
  font-size: clamp(1.3rem, 2.45vw, 2.14rem);
}

h3 {
  font-size: clamp(0.94rem, 1.65vw, 1.14rem);
}

h4 {
  font-size: clamp(0.9rem, 1.38vw, 1.02rem);
}

h5 {
  font-size: clamp(0.84rem, 1.2vw, 0.94rem);
}

h6 {
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
}

p {
  margin: 0;
  color: var(--text-600);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 0.9rem 0 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(238, 243, 251, 0.95), rgba(238, 243, 251, 0));
  pointer-events: none;
}

.nav-shell {
  width: min(var(--container), 100% - 2.6rem);
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 36, 73, 0.92);
  backdrop-filter: blur(9px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0 0.95rem 0 1.2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.2rem 0.28rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(1, 12, 28, 0.16);
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(190px, 16vw, 250px);
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.menu-toggle {
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.main-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  padding: 0.75rem;
  border-radius: 16px;
  background: rgba(4, 36, 73, 0.98);
  box-shadow: var(--shadow-lg);
  display: none;
}

.main-nav[data-open="true"] {
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.main-nav a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: rgba(240, 247, 255, 0.95);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.header-cta {
  display: none;
}

@media (max-width: 1099px) {
  .header-cta {
    display: none !important;
  }
}

.home-page .site-header-hero {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 140;
  padding-top: 1rem;
  transition: padding-top 0.24s ease;
}

.home-page .site-header-hero::before {
  display: none;
}

.home-page .site-header-hero .nav-shell {
  position: relative;
  width: min(var(--container), 100% - 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(148deg, rgba(2, 30, 58, 0.96), rgba(5, 44, 78, 0.9));
  box-shadow: 0 12px 28px rgba(1, 12, 28, 0.32);
  backdrop-filter: none;
  transition: background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-page .site-header-hero .nav-shell::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -20px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(6, 41, 74, 0.26), rgba(6, 41, 74, 0));
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.home-page .site-header-hero .main-nav a {
  color: rgba(235, 244, 255, 0.96);
}

.home-page .site-header-hero .main-nav a:hover,
.home-page .site-header-hero .main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
}

.home-page .hero-unified {
  padding-top: clamp(6.75rem, 9vw, 7.35rem);
}

.home-page .site-header-hero.is-scrolled {
  padding-top: 0.52rem;
}

.home-page .site-header-hero.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(148deg, rgba(1, 25, 50, 0.98), rgba(4, 40, 72, 0.94));
  box-shadow: 0 10px 24px rgba(1, 10, 24, 0.3);
}

.home-page .site-header-hero.is-scrolled .nav-shell::after {
  opacity: 0.45;
}

.home-page .hero-shell::before {
  content: "";
  position: absolute;
  top: -0.86rem;
  left: clamp(0.9rem, 2.2vw, 1.5rem);
  right: clamp(0.9rem, 2.2vw, 1.5rem);
  height: 36px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(7, 45, 80, 0.48), rgba(7, 45, 80, 0));
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.28rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 140, 0, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  color: #191818;
  box-shadow: 0 10px 28px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #0e3768, #09315e);
  color: #ffffff;
}

.btn-outline {
  border-color: rgba(16, 39, 66, 0.2);
  color: var(--navy-850);
  background: rgba(255, 255, 255, 0.75);
}

.btn-whatsapp {
  background: var(--green-500);
  color: #ffffff;
}

.hero {
  --hero-stack-gap: clamp(1.05rem, 2vh, 1.45rem);
  position: relative;
  min-height: 100svh;
  padding: clamp(6rem, 10vw, 7rem) 0 clamp(1rem, 2.6vh, 2rem);
  overflow: clip;
}

@supports (min-height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero-unified {
  background: #031225;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(760px 320px at 84% 0%, rgba(255, 140, 0, 0.28), transparent 62%),
    linear-gradient(108deg, rgba(0, 15, 31, 0.92) 20%, rgba(0, 23, 46, 0.78) 54%, rgba(0, 21, 43, 0.5) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.hero-main {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(2, 26, 50, 0.78), rgba(5, 43, 76, 0.66));
  box-shadow: 0 18px 42px rgba(0, 9, 20, 0.34);
  backdrop-filter: none;
  overflow: hidden;
}

.hero-main h1,
.hero-main p,
.hero-main li {
  color: rgba(244, 249, 255, 0.95);
}

.hero-main h1 {
  margin-bottom: clamp(1.15rem, 2.1vw, 1.55rem);
  font-size: clamp(1.44rem, 3.55vw, 2.62rem);
  line-height: 1.28;
  max-width: 24ch;
}

.hero-line {
  display: block;
  text-wrap: balance;
}

.hero-line:first-child {
  color: #ffffff;
}

.hero-line:nth-child(2) {
  color: #ffffff;
  font-weight: 750;
}

.hero-line:nth-child(3) {
  margin-top: 0.18rem;
  color: #ffc36b;
  font-size: 0.78em;
  font-weight: 800;
  line-height: 1.3;
}

.hero-text {
  max-width: 52ch;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  color: #d5e3f3;
  line-height: 1.72;
}

.hero-highlights {
  margin-top: clamp(1.15rem, 2vw, 1.45rem);
  display: grid;
  gap: 0.72rem;
  list-style: none;
  max-width: 50ch;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.08rem;
  color: #e7f0fa;
  font-size: clamp(0.86rem, 0.96vw, 0.96rem);
  font-weight: 700;
  line-height: 1.42;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffc36b;
  box-shadow: 0 0 0 4px rgba(255, 195, 107, 0.16);
}

.hero-actions {
  margin-top: auto;
  padding-top: clamp(1.55rem, 2.4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr;
  align-content: stretch;
  justify-items: center;
  height: 100%;
}

.hero-media {
  position: relative;
  width: 100%;
  height: clamp(390px, calc(100svh - 310px), 540px);
  margin: 0;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 10, 24, 0.26);
  background: #031326;
  contain: paint;
}

@supports (height: 100dvh) {
  .hero-media {
    height: clamp(390px, calc(100dvh - 310px), 540px);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(3, 19, 38, 0), rgba(3, 19, 38, 0.9));
}

.hero-media-poster,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-media-poster {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media video {
  position: absolute;
  inset: 0;
  display: block;
  object-position: center top;
  opacity: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: opacity 0.28s ease;
}

.hero-media.is-video-ready video {
  opacity: 1;
}

.hero-keywords {
  margin-top: var(--hero-stack-gap);
  padding: 0.58rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 29, 56, 0.58);
  display: flex;
  align-items: center;
  gap: 0.72rem;
  overflow: hidden;
}

.hero-keywords-label {
  flex: 0 0 auto;
  color: #ffd49b;
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-keywords-marquee {
  flex: 1 1 auto;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero-keywords-track {
  flex: 0 0 auto;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  animation: hero-keywords-scroll 28s linear infinite;
}

.hero-keywords-track span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #e7f0fa;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.32rem 0.56rem;
}

@keyframes hero-keywords-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-keywords-track {
    animation: none;
  }

}

.surface {
  background: var(--surface);
  border: 1px solid rgba(16, 39, 66, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
}

.surface p + p {
  margin-top: 0.8rem;
}

.about-page .about-image-card {
  padding: 0.9rem;
  align-self: start;
}

.about-page .about-image-card img {
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.split {
  display: grid;
  gap: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 1024px) {
  .cards-grid.project-experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--surface);
  border: 1px solid rgba(16, 39, 66, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
  display: grid;
  gap: 0.62rem;
}

.card-body p {
  font-size: 0.92rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.card-tags span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-700);
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 66, 0.15);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.32rem 0.56rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.pill-list li {
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 66, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-700);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.38rem 0.62rem;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-700);
}

.inline-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: invert(15%) sepia(27%) saturate(1373%) hue-rotate(169deg) brightness(90%) contrast(93%);
}

.icon-list .inline-icon {
  margin-top: 0.12rem;
  flex: 0 0 auto;
}

.menu-toggle .inline-icon { width: 22px; height: 22px; filter: invert(1) brightness(2); }
.product-usage-icon .inline-icon { width: 14px; height: 14px; filter: invert(1) brightness(2); }
.product-bundle-icon .inline-icon { width: 18px; height: 18px; }
.icon-list .inline-icon,
.inline-icon[src$="icon-check.svg"] { filter: invert(51%) sepia(90%) saturate(471%) hue-rotate(92deg) brightness(94%) contrast(87%); }
.why-item .inline-icon,
.coverage-point-icon .inline-icon { width: 22px; height: 22px; filter: invert(1) brightness(2); }

.stats-bar {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.stats-cell {
  border-radius: 14px;
  padding: 0.85rem 0.75rem;
  border: 1px solid rgba(16, 39, 66, 0.11);
  background: rgba(255, 255, 255, 0.82);
}

.stats-cell .label {
  display: block;
  color: var(--text-500);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

.stats-cell strong {
  font-family: var(--font-head);
  color: var(--navy-850);
  font-size: 1.4rem;
}

.category-center-grid {
  display: grid;
  gap: 1rem;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.category-box {
  --category-accent-rgb: 255, 140, 0;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.82rem;
  height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(16, 39, 66, 0.12);
  background: linear-gradient(154deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.94));
  box-shadow: 0 16px 34px rgba(7, 30, 60, 0.12);
  overflow: hidden;
}

.category-box::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  top: -130px;
  right: -120px;
  background: radial-gradient(circle, rgba(var(--category-accent-rgb), 0.3), rgba(var(--category-accent-rgb), 0));
  pointer-events: none;
}

.category-box.is-boya {
  --category-accent-rgb: 241, 143, 1;
}

.category-box.is-kimyasal {
  --category-accent-rgb: 28, 126, 214;
}

.category-box.is-yalitim {
  --category-accent-rgb: 18, 155, 127;
}

.category-box.is-kuruyapi {
  --category-accent-rgb: 140, 91, 255;
}

.category-box.is-duvar {
  --category-accent-rgb: 217, 118, 45;
}

.category-box-head {
  display: grid;
  gap: 0.46rem;
  padding-bottom: 0.68rem;
  border-bottom: 1px solid rgba(var(--category-accent-rgb), 0.24);
}

.category-badge {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(var(--category-accent-rgb), 0.58);
  background: rgba(var(--category-accent-rgb), 0.14);
  color: var(--navy-850);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.62rem;
}

.category-box-head h3 {
  color: var(--navy-850);
  font-size: clamp(1.04rem, 1.48vw, 1.22rem);
  line-height: 1.24;
}

.category-box-head p {
  font-size: 0.88rem;
  color: var(--text-600);
}

.category-product-list {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.category-product-card {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 0.66rem;
  min-height: 126px;
  border-radius: 15px;
  border: 1px solid rgba(16, 39, 66, 0.12);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.category-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--category-accent-rgb), 0.52);
  box-shadow: 0 12px 24px rgba(8, 31, 60, 0.14);
}

.category-product-image {
  width: 122px;
  height: 126px;
  min-height: 126px;
  overflow: hidden;
}

.category-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-product-content {
  padding: 0.62rem 0.66rem 0.62rem 0;
  display: grid;
  gap: 0.34rem;
  align-content: center;
}

.category-product-content h4 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text-900);
  font-family: var(--font-head);
}

.category-product-content p {
  font-size: 0.8rem;
  line-height: 1.42;
  color: var(--text-600);
}

.category-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: max-content;
  margin-top: 0.1rem;
  padding: 0.31rem 0.54rem;
  border: 1px solid rgba(var(--category-accent-rgb), 0.32);
  border-radius: 999px;
  background: rgba(var(--category-accent-rgb), 0.12);
  color: var(--navy-850);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.category-product-cta::after {
  content: "→";
  font-size: 0.88rem;
  line-height: 1;
  transition: transform 0.24s ease;
}

.category-product-card:hover .category-product-cta::after {
  transform: translateX(3px);
}

.category-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: start;
  color: var(--navy-850);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.category-explore-link span {
  color: rgb(var(--category-accent-rgb));
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.24s ease;
}

.category-explore-link:hover span {
  transform: translateX(3px);
}

.product-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "a"
    "b"
    "c"
    "d"
    "e";
  gap: 1rem;
}

.editorial-a {
  grid-area: a;
}

.editorial-b {
  grid-area: b;
}

.editorial-c {
  grid-area: c;
}

.editorial-d {
  grid-area: d;
}

.editorial-e {
  grid-area: e;
}

.editorial-tile {
  border-radius: 24px;
  border: 1px solid rgba(16, 39, 66, 0.14);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 30, 60, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.editorial-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(7, 30, 60, 0.18);
  border-color: rgba(255, 140, 0, 0.45);
}

.editorial-link {
  display: block;
  height: 100%;
  color: inherit;
}

.editorial-media {
  position: relative;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  display: grid;
  gap: 0.55rem;
}

.editorial-eyebrow {
  display: inline-flex;
  justify-self: start;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.editorial-cta {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.editorial-feature {
  border-color: rgba(255, 195, 126, 0.35);
}

.editorial-feature .editorial-link {
  position: relative;
  min-height: 410px;
}

.editorial-feature .editorial-media {
  position: absolute;
  inset: 0;
}

.editorial-feature .editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 220px at 100% 0%, rgba(255, 141, 26, 0.35), rgba(255, 141, 26, 0)),
    linear-gradient(180deg, rgba(2, 14, 29, 0.16), rgba(2, 14, 29, 0.8));
}

.editorial-feature .editorial-copy {
  position: relative;
  z-index: 1;
  align-content: end;
  min-height: 410px;
  padding: 1.18rem;
}

.editorial-feature .editorial-eyebrow {
  border: 1px solid rgba(255, 202, 133, 0.85);
  background: rgba(255, 145, 30, 0.22);
  color: #ffe2b5;
}

.editorial-feature h3,
.editorial-feature p {
  color: rgba(242, 248, 255, 0.97);
}

.editorial-feature h3 {
  font-size: clamp(1.14rem, 2.35vw, 1.58rem);
  line-height: 1.24;
}

.editorial-feature p {
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 46ch;
}

.editorial-feature .editorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.editorial-feature .editorial-tags span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #edf5ff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.32rem 0.58rem;
}

.editorial-feature .editorial-cta {
  color: #ffd08c;
}

.editorial-overlay-card .editorial-link {
  position: relative;
  min-height: 286px;
}

.editorial-overlay-card .editorial-media {
  position: absolute;
  inset: 0;
}

.editorial-overlay-card .editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 19, 38, 0.04), rgba(3, 19, 38, 0.78));
}

.editorial-overlay-card .editorial-copy {
  position: relative;
  z-index: 1;
  align-content: end;
  min-height: 286px;
  padding: 0.98rem;
}

.editorial-overlay-card .editorial-eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.13);
  color: #eaf2fd;
}

.editorial-overlay-card h3,
.editorial-overlay-card p {
  color: rgba(242, 248, 255, 0.96);
}

.editorial-overlay-card h3 {
  font-size: 1.05rem;
}

.editorial-overlay-card p {
  font-size: 0.86rem;
  line-height: 1.52;
}

.editorial-overlay-card .editorial-cta {
  color: #ffc97f;
}

.editorial-panel-card {
  border-color: rgba(16, 39, 66, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.94));
}

.editorial-panel-card .editorial-link {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 224px;
}

.editorial-panel-card .editorial-media {
  min-height: 100%;
}

.editorial-panel-card .editorial-copy {
  align-content: center;
  padding: 0.96rem 0.96rem 0.98rem;
}

.editorial-panel-card .editorial-eyebrow {
  border: 1px solid rgba(16, 39, 66, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy-850);
}

.editorial-panel-card h3 {
  font-size: 1.06rem;
}

.editorial-panel-card p {
  font-size: 0.86rem;
  line-height: 1.52;
  color: var(--text-600);
}

.editorial-panel-card .editorial-cta {
  color: var(--navy-850);
}

.editorial-e .editorial-link {
  grid-template-columns: 46% 54%;
}

.editorial-e .editorial-copy {
  background: linear-gradient(145deg, rgba(6, 38, 70, 0.96), rgba(10, 60, 104, 0.92));
}

.editorial-e .editorial-eyebrow {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #e8f2fe;
}

.editorial-e h3,
.editorial-e p {
  color: #edf4ff;
}

.editorial-e .editorial-cta {
  color: #ffd39a;
}

.campaign-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.brand-partners {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.brand-partners-shell {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 140, 0, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 255, 0.56));
  border: 1px solid rgba(16, 39, 66, 0.08);
}

.brand-partners-head {
  margin: 0 auto 1.8rem;
  max-width: 78ch;
  text-align: center;
}

.brand-partners-head .kicker {
  margin-bottom: 0.45rem;
}

.brand-partners-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 66ch;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1rem;
}

.brand-logo-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-logo-card {
  min-height: 90px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 0.2rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.brand-logo-card:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  width: min(112px, 100%);
  height: 46px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
}

.brand-logo-name {
  display: block;
  color: var(--text-500);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
}

.brand-pill {
  border-radius: 12px;
  padding: 0.75rem 0.6rem;
  text-align: center;
  border: 1px solid rgba(16, 39, 66, 0.14);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy-850);
}

.breadcrumb {
  margin-top: 4.6rem;
  font-size: 0.83rem;
  color: var(--text-700);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.35rem;
}

.page-hero {
  padding: 2.2rem 0 1.1rem;
}

.page-hero p {
  margin-top: 0.8rem;
  max-width: 68ch;
}

.price-list-hero-media {
  align-self: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.price-list-hero-media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

@media (max-width: 720px) {
  .price-list-hero-media img { height: 190px; }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  margin-bottom: 0.9rem;
}

.filter-btn {
  border: 1px solid rgba(16, 39, 66, 0.18);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-700);
  cursor: pointer;
}

.filter-btn[aria-pressed="true"] {
  border-color: var(--navy-850);
  background: var(--navy-850);
  color: #ffffff;
}

.data-card[data-hidden="true"] {
  display: none;
}

.products-page .category-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 1.35rem;
}

.products-page .category-filter-card {
  min-height: 112px;
  padding: 0.9rem 0.78rem;
  border-radius: 16px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.72rem;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.22;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(8, 33, 68, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.products-page .category-filter-card:hover {
  border-color: rgba(10, 44, 85, 0.42);
  box-shadow: 0 12px 26px rgba(8, 33, 68, 0.11);
  transform: translateY(-2px);
}

.products-page .category-filter-card:focus-visible {
  outline: 3px solid rgba(255, 140, 0, 0.35);
  outline-offset: 3px;
}

.products-page .category-filter-card[aria-pressed="true"] {
  border-color: var(--navy-850);
  background: var(--navy-850);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(10, 44, 85, 0.2);
}

.products-page .category-filter-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--navy-850);
  background: rgba(10, 44, 85, 0.08);
}

.products-page .category-filter-icon .inline-icon {
  width: 32px;
  height: 32px;
}

.products-page .category-filter-card[aria-pressed="true"] .category-filter-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.products-page .category-filter-card[aria-pressed="true"] .category-filter-icon .inline-icon {
  filter: invert(1) brightness(2);
}

.products-page .brand-filter-shell {
  margin: -0.25rem 0 0.95rem;
}

.products-page .brand-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.72rem;
  border: 1px solid rgba(16, 39, 66, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 18px rgba(8, 33, 68, 0.05);
}

.products-page .brand-filter-group[hidden],
.products-page .brand-filter-summary[hidden] {
  display: none;
}

.products-page .brand-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.78rem;
  font-size: 0.78rem;
}

.products-page .brand-filter-summary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0.82rem;
  border: 1px solid rgba(16, 39, 66, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.88));
  box-shadow: 0 10px 24px rgba(8, 33, 68, 0.07);
}

.products-page .brand-filter-summary img {
  width: 86px;
  height: 68px;
  padding: 0.4rem;
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
}

.products-page .brand-filter-summary span {
  display: block;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-page .brand-filter-summary strong {
  display: block;
  margin-top: 0.08rem;
  color: var(--navy-850);
  font-size: clamp(0.98rem, 1.5vw, 1.18rem);
  line-height: 1.24;
}

.products-page .brand-filter-summary p {
  margin-top: 0.28rem;
  color: var(--text-600);
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 520px) {
  .products-page .brand-filter-group {
    gap: 0.42rem;
    padding: 0.6rem;
  }

  .products-page .brand-filter-chip {
    flex: 1 1 calc(50% - 0.42rem);
  }

  .products-page .brand-filter-summary {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.68rem;
  }

  .products-page .brand-filter-summary img {
    width: 68px;
    height: 58px;
  }
}

.products-page .cards-grid .card-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: clamp(0.7rem, 2.5vw, 1.15rem);
  background: linear-gradient(145deg, #ffffff, #f3f7fc);
}

.products-page .cards-grid .card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.7rem;
}

.meta-cell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 39, 66, 0.12);
  border-radius: 12px;
  padding: 0.8rem;
}

.meta-cell dt {
  margin: 0;
  color: var(--text-700);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.meta-cell dd {
  margin: 0.36rem 0 0 0;
  color: var(--text-900);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(16, 39, 66, 0.12);
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: left;
  color: var(--text-900);
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1rem 0.95rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.advantage-card {
  position: relative;
  min-height: 100%;
}

.advantage-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--navy-850);
  background: rgba(255, 140, 0, 0.12);
}

.service-area-grid {
  display: grid;
  gap: 1rem;
}

.service-area-card {
  display: grid;
  gap: 0.8rem;
}

.district-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.district-list a,
.district-list span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 66, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-700);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.66rem;
}

.district-list a {
  color: var(--navy-850);
}

.quote-form {
  display: grid;
  gap: 0.7rem;
}

.form-grid {
  display: grid;
  gap: 0.65rem;
}

.form-group {
  display: grid;
  gap: 0.32rem;
}

.form-group label {
  color: var(--text-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(16, 39, 66, 0.2);
  border-radius: 11px;
  background: #ffffff;
  padding: 0.72rem 0.78rem;
  font-size: 0.92rem;
  color: var(--text-900);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  color: var(--text-500);
  font-size: 0.8rem;
}

.status-message {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-700);
}

.status-message.is-success {
  color: #15803d;
}

.status-message.is-error {
  color: #dc2626;
}

.quote-form button[type="submit"]:disabled {
  cursor: progress;
  opacity: 0.72;
}

.why-section {
  padding-top: 4.4rem;
  padding-bottom: 4.9rem;
}

.why-shell {
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 250, 255, 0.94) 100%),
    radial-gradient(circle at 15% -12%, rgba(255, 140, 0, 0.1), transparent 42%);
  border: 1px solid rgba(16, 39, 66, 0.08);
  box-shadow: 0 26px 58px rgba(8, 33, 68, 0.11);
}

.why-grid {
  display: grid;
  gap: 1.1rem;
}

.why-content h2 {
  margin-top: 0.45rem;
  margin-bottom: 0.72rem;
}

.why-intro {
  color: var(--text-600);
  max-width: 66ch;
}

.why-features {
  margin-top: 1rem;
  display: grid;
  gap: 0.68rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  padding: 0.76rem 0.78rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 39, 66, 0.1);
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 33, 68, 0.12);
  border-color: rgba(16, 39, 66, 0.18);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--orange-400);
  background: linear-gradient(155deg, #0a2c55 0%, #163e6f 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.why-item h3 {
  font-size: 0.95rem;
  color: var(--text-900);
  margin-bottom: 0.26rem;
}

.why-item p {
  font-size: 0.86rem;
  color: var(--text-600);
  line-height: 1.55;
}

.why-visual {
  display: grid;
  gap: 0.72rem;
}

.why-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 66, 0.09);
  box-shadow: 0 18px 34px rgba(8, 33, 68, 0.14);
}

.why-img.tall {
  min-height: 238px;
}

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

.why-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.why-stat-box {
  min-height: 112px;
  border-radius: 14px;
  padding: 0.8rem 0.82rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  box-shadow: 0 16px 26px rgba(8, 33, 68, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.why-stat-box:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.why-stat-box.orange {
  background: linear-gradient(140deg, #ff9f2e 0%, #f07d00 100%);
}

.why-stat-box.info {
  background: linear-gradient(145deg, #19635f 0%, #0f4742 100%);
}

.why-stat-box.navy {
  background: linear-gradient(145deg, #0b2f5d 0%, #072341 100%);
}

.why-stat-box.light {
  background: linear-gradient(145deg, #5b3873 0%, #3e234f 100%);
}

.why-stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.18rem, 2.2vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.why-stat-label {
  margin-top: 0.26rem;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(245, 249, 255, 0.9);
}

.guzel-evim-banner-section {
  width: 100%;
  background: #ffffff;
  line-height: 0;
}

.guzel-evim-banner-link {
  display: block;
  width: 100%;
}

.guzel-evim-banner-link picture {
  display: block;
  width: 100%;
}

.guzel-evim-banner-link img {
  display: block;
  width: 100%;
  height: auto;
}

.guzel-evim-banner-link:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: -3px;
}

.coverage-section {
  padding-top: 4.6rem;
  padding-bottom: 4.9rem;
  background:
    radial-gradient(circle at 90% -12%, rgba(255, 140, 0, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(247, 250, 255, 0.7));
}

.coverage-shell {
  border-radius: var(--radius-xl);
  padding: 1.15rem;
  border: 1px solid rgba(16, 39, 66, 0.1);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 56px rgba(8, 33, 68, 0.12);
}

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

.coverage-content h2 {
  margin-top: 0.45rem;
  margin-bottom: 0.7rem;
}

.coverage-intro {
  color: var(--text-600);
  max-width: 68ch;
}

.coverage-intro + .coverage-intro {
  margin-top: 0.62rem;
}

.coverage-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.66rem;
}

.coverage-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  padding: 0.74rem;
  border: 1px solid rgba(16, 39, 66, 0.1);
  border-radius: 14px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(8, 33, 68, 0.12);
}

.coverage-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0a2c55 0%, #163f72 100%);
  color: #ffb65c;
  display: grid;
  place-items: center;
}

.coverage-point h3 {
  font-size: 0.95rem;
  margin-bottom: 0.24rem;
}

.coverage-point p {
  font-size: 0.85rem;
  color: var(--text-600);
}

.coverage-visual {
  display: grid;
  gap: 0.72rem;
}

.coverage-map-card {
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(16, 39, 66, 0.12);
  box-shadow: 0 18px 34px rgba(8, 33, 68, 0.14);
}

.coverage-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-map-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 39, 66, 0.16);
  border-radius: 11px;
  padding: 0.44rem 0.58rem;
  display: grid;
  gap: 0.1rem;
  box-shadow: var(--shadow-sm);
}

.coverage-map-badge span {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--orange-500);
}

.coverage-map-badge strong {
  font-size: 0.75rem;
  color: var(--navy-900);
}

.coverage-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.coverage-metric {
  border-radius: 12px;
  padding: 0.66rem 0.68rem;
  background: linear-gradient(160deg, #0a2c55 0%, #103a67 100%);
  color: rgba(244, 250, 255, 0.96);
  box-shadow: 0 12px 24px rgba(8, 33, 68, 0.2);
}

.coverage-metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.1;
}

.coverage-metric span {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.72rem;
  color: rgba(221, 234, 249, 0.93);
}

.coverage-bottom {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(16, 39, 66, 0.11);
  padding-top: 0.88rem;
}

.coverage-bottom h3 {
  font-size: 1.05rem;
}

.coverage-chip-list {
  margin-top: 0.58rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.coverage-chip-list li {
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 66, 0.16);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-700);
}

.coverage-bottom p {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-600);
}

.coverage-bottom p a {
  color: var(--navy-850);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-section {
  padding-top: 4.1rem;
  padding-bottom: 5rem;
}

.blueprint-bg {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 140, 0, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(7, 34, 66, 0.04), rgba(7, 34, 66, 0));
}

.form-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 34px 74px rgba(0, 19, 42, 0.18);
  border: 1px solid rgba(6, 37, 69, 0.08);
  background: #ffffff;
  display: grid;
}

.form-left {
  background:
    linear-gradient(165deg, rgba(0, 28, 56, 0.98), rgba(8, 48, 96, 0.95)),
    radial-gradient(circle at 80% 16%, rgba(255, 171, 63, 0.2), transparent 42%);
  padding: 2.2rem 1.35rem 2rem;
}

.form-kicker {
  margin-bottom: 0.75rem;
  color: #ffd4a1;
}

.form-left-title {
  color: #ffffff;
  line-height: 1.14;
  margin-bottom: 0.9rem;
}

.form-left-sub {
  color: #b8d1ec;
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-checklist {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.form-check svg {
  color: var(--orange-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check span {
  color: rgba(241, 247, 255, 0.96);
  font-size: 0.89rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-contact {
  margin-top: 1.2rem;
  color: #d7e8fb;
  font-size: 0.88rem;
}

.form-contact strong {
  color: #ffffff;
}

.form-contact a {
  color: #ffd4a1;
  font-weight: 700;
}

.form-right {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  padding: 2rem 1.35rem;
}

.form-right-title {
  color: var(--navy-900);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 0.35rem;
}

.form-right-sub {
  color: var(--text-600);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.quote-form-lp {
  display: grid;
  gap: 0.78rem;
}

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

.form-section .form-group {
  display: grid;
  gap: 0.4rem;
}

.form-section .form-label {
  color: var(--text-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-section .form-control {
  width: 100%;
  border: 1px solid rgba(16, 39, 66, 0.18);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.78rem 0.86rem;
  font-size: 0.92rem;
  color: var(--text-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-section .form-control:focus {
  outline: none;
  border-color: var(--navy-850);
  box-shadow: 0 0 0 3px rgba(34, 69, 109, 0.14);
}

.form-section textarea.form-control {
  min-height: 118px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: none;
  border-radius: 13px;
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #ff9b22, #ff7a00);
  box-shadow: 0 14px 28px rgba(255, 140, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.form-submit:hover {
  filter: brightness(1.03);
  box-shadow: 0 16px 30px rgba(255, 140, 0, 0.32);
}

.form-submit:active {
  transform: translateY(1px);
}

.form-section .form-note-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-500);
  font-size: 0.79rem;
}

.form-section .status-message {
  margin-top: 0.05rem;
  min-height: 1.1em;
}

.article-layout {
  display: grid;
  gap: 1rem;
}

.toc-box {
  border: 1px solid rgba(16, 39, 66, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem;
}

.toc-box h2 {
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
}

.toc-box ol {
  list-style: decimal;
  padding-left: 1.08rem;
  display: grid;
  gap: 0.35rem;
}

.toc-box a {
  color: var(--text-700);
  font-size: 0.88rem;
}

.toc-box a:hover {
  color: var(--navy-850);
}

.toc-box .toc-subitem {
  margin-left: 0.45rem;
  list-style: circle;
}

.prose {
  display: grid;
  gap: 1.05rem;
}

.prose h2,
.prose h3 {
  scroll-margin-top: 120px;
}

.prose p {
  color: var(--text-700);
}

.prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.prose li {
  color: var(--text-700);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-meta span {
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 66, 0.15);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.34rem 0.58rem;
}

.blog-page .blog-card {
  min-height: 330px;
}

.blog-page .blog-card a {
  position: relative;
  min-height: 330px;
  display: block;
  overflow: hidden;
}

.blog-page .blog-card .card-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.blog-page .blog-card .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 19, 38, 0.05), rgba(3, 19, 38, 0.34) 38%, rgba(3, 19, 38, 0.86)),
    radial-gradient(circle at 18% 18%, rgba(255, 140, 0, 0.22), transparent 42%);
}

.blog-page .blog-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.28s ease;
}

.blog-page .blog-card:hover .card-media img {
  transform: scale(1.06);
}

.blog-page .blog-card .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem;
  gap: 0.52rem;
}

.blog-page .blog-card .card-body h2 {
  color: #ffffff;
  font-size: clamp(0.9rem, 1.55vw, 1.04rem);
  line-height: 1.26;
}

.blog-page .blog-card .card-body p {
  color: rgba(238, 246, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.45;
}

.blog-page .blog-card .article-meta {
  gap: 0.36rem;
}

.blog-page .blog-card .article-meta span {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(245, 249, 255, 0.9);
  font-size: 0.68rem;
  padding: 0.22rem 0.46rem;
}

.blog-detail-shell {
  padding: 0.85rem 0 3.6rem;
}

.blog-detail-grid {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.blog-article-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.blog-article-header {
  padding: 0 0 0.72rem;
}

.blog-article-header h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.96rem);
  line-height: 1.24;
}

.blog-meta-list {
  list-style: none;
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.blog-meta-list li {
  border: 1px solid rgba(16, 39, 66, 0.13);
  border-radius: 999px;
  background: rgba(247, 250, 255, 0.95);
  color: var(--text-700);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.52rem;
}

.blog-article-cover {
  margin: 0 0 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 66, 0.11);
}

.blog-article-cover img {
  width: 100%;
  height: clamp(180px, 24vw, 300px);
  object-fit: cover;
}

.blog-article-content {
  padding: 0;
  display: grid;
  gap: 0.86rem;
}

.blog-article-content h2,
.blog-article-content h3 {
  border-left: 3px solid var(--orange-500);
  padding-left: 0.68rem;
  line-height: 1.3;
}

.blog-article-content h2 {
  font-size: clamp(1.04rem, 1.85vw, 1.38rem);
}

.blog-inline-cards {
  display: grid;
  gap: 0.6rem;
}

.blog-inline-card {
  border: 1px solid rgba(16, 39, 66, 0.13);
  border-radius: 12px;
  background: rgba(248, 251, 255, 0.9);
  padding: 0.76rem;
}

.blog-inline-card h3 {
  border-left: 0;
  padding-left: 0;
  font-size: 1.01rem;
}

.blog-inline-card p {
  margin-top: 0.48rem;
  font-size: 0.88rem;
  color: var(--text-600);
}

.blog-inline-card ul {
  margin-top: 0.62rem;
  list-style: disc;
  padding-left: 1rem;
  display: grid;
  gap: 0.3rem;
}

.blog-inline-card li {
  font-size: 0.8rem;
}

.blog-sidebar {
  display: grid;
  gap: 0.72rem;
}

.blog-side-card {
  border: 1px solid rgba(16, 39, 66, 0.13);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 0.82rem;
}

.blog-author-card {
  text-align: center;
}

.blog-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 0.68rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, #0c315d, #1f5b98);
  box-shadow: 0 12px 26px rgba(8, 33, 68, 0.18);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
}

.blog-author-card h2 {
  font-size: 1.08rem;
}

.blog-author-role {
  margin-top: 0.34rem;
  font-size: 0.8rem;
  color: var(--text-600);
}

.blog-author-bio {
  margin-top: 0.56rem;
  font-size: 0.82rem;
}

.blog-side-link {
  margin-top: 0.62rem;
  display: inline-block;
  color: var(--navy-850);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-side-link:hover {
  color: var(--orange-500);
}

.blog-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #072b52, #0d3f74 68%, #145396);
}

.blog-cta-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -75px;
  right: -85px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.26), rgba(255, 140, 0, 0));
}

.blog-cta-card h2,
.blog-cta-card p {
  position: relative;
  color: rgba(255, 255, 255, 0.96);
}

.blog-cta-card h2 {
  font-size: 1.35rem;
  line-height: 1.22;
}

.blog-cta-card p {
  margin-top: 0.6rem;
  font-size: 0.84rem;
}

.blog-cta-btn {
  margin-top: 0.88rem;
  width: 100%;
  justify-content: center;
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #1d1d1d;
}

.blog-cta-btn:hover {
  background: var(--orange-400);
  border-color: var(--orange-400);
}

.blog-related-card h2 {
  font-size: 1.06rem;
}

.blog-related-list {
  margin-top: 0.5rem;
  list-style: none;
  display: grid;
  gap: 0.54rem;
}

.blog-related-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
}

.blog-related-item img {
  width: 66px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(16, 39, 66, 0.1);
}

.blog-related-item h3 {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.35;
  color: var(--text-900);
}

.blog-related-item span {
  margin-top: 0.15rem;
  display: block;
  font-size: 0.72rem;
  color: var(--text-500);
}

.blog-related-item:hover h3 {
  color: var(--navy-850);
}

.product-detail-shell {
  padding: 1.1rem 0 3rem;
}

.product-hero-grid {
  display: grid;
  gap: 1.05rem;
  align-items: start;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 39, 66, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 255, 0.9));
  box-shadow: var(--shadow-sm);
  padding: 0.95rem;
  position: relative;
  overflow: hidden;
}

.product-hero-grid::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: -95px;
  top: -95px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2), rgba(255, 140, 0, 0));
}

.product-hero-grid > * {
  position: relative;
  z-index: 1;
}

.product-media-card {
  height: clamp(220px, 34vw, 360px);
  border-radius: 16px;
  border: 1px solid rgba(16, 39, 66, 0.16);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.product-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-info {
  display: grid;
  gap: 0.75rem;
}

.product-kicker {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-700);
}

.product-title {
  margin: 0;
  font-size: clamp(1.48rem, 2.55vw, 2.36rem);
  line-height: 1.2;
}

.product-summary {
  font-size: 0.92rem;
  color: var(--text-600);
  line-height: 1.66;
  max-width: 62ch;
}

.product-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.product-status-item {
  border-radius: 12px;
  border: 1px solid rgba(16, 39, 66, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.74rem;
}

.product-status-item dt {
  margin: 0;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-500);
}

.product-status-item dd {
  margin: 0.32rem 0 0;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-900);
}

.product-status-dot {
  color: var(--green-500);
}

.product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-flags span {
  border-radius: 999px;
  border: 1px solid rgba(16, 39, 66, 0.14);
  background: rgba(247, 250, 255, 0.95);
  color: var(--text-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.52rem;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.52rem;
}

.product-actions .btn {
  border-radius: 12px;
  padding: 0.78rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.btn.btn-whatsapp.btn-solid {
  background: linear-gradient(135deg, #1dad54, #27bf62);
  border-color: #1dad54;
  color: #ffffff;
}

.btn.btn-whatsapp.btn-solid:hover {
  filter: brightness(1.05);
}

.product-detail-grid {
  margin-top: 1.45rem;
  display: grid;
  gap: 1.1rem;
  align-items: start;
}

.product-main {
  display: grid;
  gap: 0.92rem;
}

.product-block {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 39, 66, 0.11);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.product-block p + p {
  margin-top: 0.68rem;
}

.product-block h2 {
  margin: 0 0 0.86rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(16, 39, 66, 0.12);
  font-size: clamp(1.02rem, 1.78vw, 1.4rem);
}

.product-price-panel {
  background: linear-gradient(145deg, rgba(255, 249, 240, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(232, 118, 0, 0.24);
}

.product-price-kicker {
  margin-bottom: 0.32rem;
  color: #b45309;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-price-grid {
  display: grid;
  gap: 0.66rem;
  margin-top: 0.86rem;
}

.product-price-card {
  border: 1px solid rgba(232, 118, 0, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.74rem;
}

.product-price-card h3 {
  margin: 0;
  font-size: 0.9rem;
}

.product-price-card p {
  margin-top: 0.28rem;
  color: var(--text-600);
  font-size: 0.8rem;
}

.product-price-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 0.85rem;
  margin-top: 0.86rem;
}

.product-price-links a {
  color: #a44905;
  font-size: 0.83rem;
  font-weight: 800;
}

.product-related-card {
  color: inherit;
  text-decoration: none;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(16, 39, 66, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(8, 33, 68, 0.07);
}

.product-spec-table th,
.product-spec-table td {
  border-bottom: 1px solid rgba(16, 39, 66, 0.1);
  padding: 0.66rem 0.72rem;
  font-size: 0.84rem;
  text-align: left;
  vertical-align: top;
  color: var(--text-700);
}

.product-spec-table tr:last-child th,
.product-spec-table tr:last-child td {
  border-bottom: 0;
}

.product-spec-table th {
  width: 36%;
  font-weight: 700;
  color: var(--text-900);
  background: rgba(247, 250, 255, 0.95);
}

.product-usage-cards {
  margin-top: 0.78rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-usage-card {
  border: 1px solid rgba(16, 39, 66, 0.14);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95));
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.product-usage-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--navy-850);
  color: #ffffff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.product-usage-card h3 {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.32;
}

.product-usage-card p {
  margin-top: 0.22rem;
  font-size: 0.77rem;
  color: var(--text-500);
}

.product-steps {
  list-style: none;
  display: grid;
  gap: 0.78rem;
}

.product-step {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
}

.product-step::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 31px;
  bottom: -9px;
  width: 2px;
  background: rgba(16, 39, 66, 0.13);
}

.product-step:last-child::before {
  display: none;
}

.product-step-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--navy-850);
  color: #ffffff;
  font-size: 0.79rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(8, 33, 68, 0.24);
}

.product-step h3 {
  margin: 0;
  font-size: 0.87rem;
}

.product-step p {
  margin-top: 0.2rem;
  font-size: 0.81rem;
  line-height: 1.55;
  color: var(--text-600);
}

.product-bundle-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.72rem;
}

.product-bundle-card {
  border: 1px solid rgba(16, 39, 66, 0.14);
  border-radius: 12px;
  background: #ffffff;
  padding: 0.86rem 0.72rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-bundle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(8, 33, 68, 0.14);
}

.product-bundle-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.5rem;
  border-radius: 12px;
  background: rgba(16, 39, 66, 0.07);
  color: var(--navy-850);
  display: grid;
  place-items: center;
}

.product-bundle-card h3 {
  margin: 0;
  font-size: 0.9rem;
}

.product-bundle-card p {
  margin-top: 0.34rem;
  font-size: 0.77rem;
  color: var(--text-600);
}

.product-faq-list {
  display: grid;
  gap: 0.58rem;
}

.product-faq-list .faq-question {
  font-size: 0.88rem;
}

.product-form-card {
  border-radius: 12px;
  background: linear-gradient(140deg, #032145, #052f5f 70%, #0c447f);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
  padding: 1rem 0.95rem;
  color: rgba(255, 255, 255, 0.96);
  position: relative;
  overflow: hidden;
}

.product-form-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  top: -70px;
  right: -75px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.32), rgba(255, 140, 0, 0));
}

.product-form-card > * {
  position: relative;
  z-index: 1;
}

.product-form-card h2 {
  margin: 0;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.96);
}

.product-form-card p {
  margin-top: 0.32rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}

.product-form-card .form-group label {
  color: rgba(255, 255, 255, 0.92);
}

.product-form-card .form-group input,
.product-form-card .form-group select,
.product-form-card .form-group textarea {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
}

.product-form-card .form-group input:focus-visible,
.product-form-card .form-group select:focus-visible,
.product-form-card .form-group textarea:focus-visible {
  outline: 2px solid rgba(255, 140, 0, 0.45);
  outline-offset: 1px;
}

.product-form-check {
  margin-top: 0.28rem;
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
}

.product-form-check label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.35;
}

.product-form-btn {
  margin-top: 0.42rem;
  width: 100%;
  justify-content: center;
}

.product-form-card .status-message {
  color: rgba(255, 255, 255, 0.9);
}

.product-form-card .status-message.is-success {
  color: #bbf7d0;
}

.product-form-card .status-message.is-error {
  color: #fecaca;
}

.sticky-mobile-actions {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.42rem;
  transform: translateY(-50%);
}

.sticky-mobile-actions::before {
  content: "Hızlı İletişim";
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: center;
  margin-bottom: 0.12rem;
  padding: 0.7rem 0.34rem;
  border-radius: 999px 0 0 999px;
  background: rgba(5, 25, 48, 0.78);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(3, 20, 42, 0.16);
  backdrop-filter: blur(10px);
}

.sticky-mobile-actions a {
  width: 50px;
  min-height: 50px;
  border-radius: 18px 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.56rem;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  font-size: 0;
  font-weight: 900;
  padding: 0 0 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 0;
  transform-origin: right center;
  transition: width 0.22s ease, transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, font-size 0.14s ease;
}

.sticky-mobile-actions a:hover {
  width: 136px;
  transform: translateX(-2px);
  filter: saturate(1.04);
  font-size: 0.8rem;
}

.sticky-wa {
  background: linear-gradient(135deg, #1fb85a, var(--green-500));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(34, 182, 90, 0.34);
}

.sticky-wa::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sticky-phone {
  background: linear-gradient(135deg, rgba(5, 25, 48, 0.94), rgba(10, 70, 127, 0.92));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(3, 20, 42, 0.22);
  backdrop-filter: blur(10px);
}

.sticky-phone::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79a15.054 15.054 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24 11.72 11.72 0 003.68.59 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 6a1 1 0 011-1h3.47a1 1 0 011 1 11.72 11.72 0 00.59 3.68 1 1 0 01-.25 1.02l-2.19 2.09z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79a15.054 15.054 0 006.59 6.59l2.2-2.2a1 1 0 011.02-.24 11.72 11.72 0 003.68.59 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 6a1 1 0 011-1h3.47a1 1 0 011 1 11.72 11.72 0 00.59 3.68 1 1 0 01-.25 1.02l-2.19 2.09z'/%3E%3C/svg%3E") center / contain no-repeat;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 560px) {
  .product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .container {
    width: min(var(--container), 100% - 4rem);
  }

  .products-page .category-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-line {
    white-space: nowrap;
  }

  .meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-shell {
    padding: 1.45rem;
  }

  .coverage-shell {
    padding: 1.45rem;
  }

  .coverage-map-card {
    min-height: 306px;
  }

  .coverage-metric strong {
    font-size: 1.2rem;
  }

  .why-stat-box {
    min-height: 136px;
    padding: 0.95rem 0.94rem;
  }

  .form-section .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-logo-grid-large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-area-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .category-center-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "a a"
      "b c"
      "d e";
    gap: 1.18rem;
  }

  .editorial-feature .editorial-link,
  .editorial-feature .editorial-copy {
    min-height: 446px;
  }

  .editorial-panel-card .editorial-link {
    min-height: 238px;
  }

  .product-bundle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .brand-logo-grid-large {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .products-page .category-filters {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .why-shell {
    padding: 2rem;
  }

  .why-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 1.35rem;
    align-items: center;
  }

  .why-features {
    gap: 0.78rem;
  }

  .why-img.tall {
    min-height: 318px;
  }

  .why-stat-box {
    min-height: 156px;
    padding: 1rem;
  }

  .why-stat-label {
    font-size: 0.68rem;
  }

  .coverage-shell {
    padding: 2rem;
  }

  .coverage-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 1.3rem;
    align-items: start;
  }

  .coverage-intro {
    font-size: 0.96rem;
  }

  .coverage-points {
    gap: 0.74rem;
  }

  .coverage-point {
    padding: 0.85rem;
  }

  .coverage-map-card {
    min-height: 332px;
  }

  .coverage-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .form-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .form-left,
  .form-right {
    padding: 2.7rem 2.5rem;
  }

  .form-left-sub {
    font-size: 0.98rem;
  }

  .site-header {
    padding-top: 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-inner {
    min-height: 82px;
    padding: 0 1rem 0 1.4rem;
  }

  .main-nav {
    position: static;
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
    margin-right: 0.55rem;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.34rem;
  }

  .main-nav a {
    padding: 0.55rem 0.76rem;
    border-radius: 999px;
    font-size: 0.85rem;
  }

  .home-page .site-header-hero .nav-shell {
    width: min(calc(var(--container) + 30px), 100% - 2.4rem);
  }

  .home-page .site-header-hero .header-cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f6ff;
    box-shadow: none;
  }

  .hero {
    padding-bottom: clamp(1rem, 2.6vh, 2rem);
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.15rem;
  }

  .hero-media {
    height: clamp(420px, calc(100svh - 300px), 560px);
  }

  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .category-center-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-editorial-grid {
    grid-template-columns: 1.2fr 1.2fr 0.95fr;
    grid-template-areas:
      "a a b"
      "a a c"
      "d e e";
    gap: 1.24rem;
  }

  .editorial-feature .editorial-link,
  .editorial-feature .editorial-copy {
    min-height: 560px;
  }

  .editorial-overlay-card .editorial-link,
  .editorial-overlay-card .editorial-copy {
    min-height: 268px;
  }

  .editorial-panel-card .editorial-link {
    min-height: 252px;
  }

  .product-hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 1.25rem;
    padding: 1.08rem;
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) 332px;
    gap: 1.25rem;
  }

  .product-form-card {
    position: sticky;
    top: 108px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }

  .blog-detail-grid {
    grid-template-columns: minmax(0, 1fr) 266px;
  }

  .blog-sidebar {
    position: sticky;
    top: 108px;
  }

  .blog-inline-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toc-box {
    position: sticky;
    top: 108px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 6.8rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .sticky-mobile-actions {
    top: auto;
    right: 0.75rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    left: 0.75rem;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .sticky-mobile-actions::before {
    content: none;
  }

  .sticky-mobile-actions a {
    width: auto;
    min-height: 48px;
    border-radius: 999px;
    justify-content: center;
    gap: 0.46rem;
    text-align: center;
    font-size: 0.84rem;
    padding: 0.68rem 0.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    transform: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }

  .sticky-mobile-actions a:hover {
    width: auto;
    transform: translateY(-1px);
    font-size: 0.84rem;
  }

  .sticky-phone {
    order: 1;
    background: linear-gradient(135deg, var(--navy-900), #0a467f);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 35, 71, 0.28);
  }

  .sticky-wa {
    order: 2;
  }
}

@media (max-width: 980px) {
  .home-page .site-header-hero {
    padding-top: 0.68rem;
  }

  .home-page .site-header-hero .nav-shell {
    width: min(var(--container), 100% - 1.3rem);
    border-radius: 16px;
  }

  .home-page .site-header-hero .nav-shell::after {
    left: 16px;
    right: 16px;
    bottom: -16px;
  }

  .home-page .hero-unified {
    padding-top: 6.25rem;
  }

  .home-page .hero-shell::before {
    top: -0.76rem;
    left: 0.68rem;
    right: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5.9rem;
    padding-bottom: 2.35rem;
  }

  .hero-media {
    height: clamp(340px, 58vw, 430px);
    min-height: 0;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .product-status-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .product-usage-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .product-hero-grid {
    padding: 0.72rem;
  }

  .product-media-card {
    height: clamp(180px, 54vw, 240px);
  }

  .product-title {
    font-size: clamp(1.22rem, 5.7vw, 1.68rem);
    line-height: 1.22;
  }

  .product-block {
    padding: 0.82rem;
  }

  .product-spec-table th,
  .product-spec-table td {
    font-size: 0.8rem;
    padding: 0.58rem 0.6rem;
  }

  .product-spec-table th {
    width: 44%;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(1.5rem, 7.1vw, 1.98rem);
    line-height: 1.22;
  }

  h2 {
    font-size: clamp(1.16rem, 5.5vw, 1.54rem);
    line-height: 1.24;
  }

  h3 {
    font-size: clamp(0.9rem, 4.1vw, 1.06rem);
    line-height: 1.28;
  }

  h4 {
    font-size: clamp(0.84rem, 3.6vw, 0.96rem);
    line-height: 1.32;
  }

  h5,
  h6 {
    line-height: 1.32;
  }

  .hero-main h1 {
    font-size: clamp(1.34rem, 6.3vw, 1.78rem);
    line-height: 1.22;
  }

  .form-left-title {
    line-height: 1.22;
  }

  .why-shell {
    padding: 0.9rem;
  }

  .coverage-shell {
    padding: 0.9rem;
  }

  .coverage-section {
    padding-top: 4rem;
    padding-bottom: 4.2rem;
  }

  .coverage-point {
    padding: 0.66rem;
  }

  .coverage-point-icon {
    width: 38px;
    height: 38px;
  }

  .coverage-map-card {
    min-height: 224px;
  }

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

  .coverage-chip-list li {
    font-size: 0.72rem;
  }

  .why-item {
    padding: 0.68rem;
  }

  .why-icon {
    width: 40px;
    height: 40px;
  }

  .why-img.tall {
    min-height: 208px;
  }

  .why-stat-box {
    min-height: 102px;
    padding: 0.7rem;
  }

  .why-stat-label {
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .product-editorial-grid {
    gap: 0.94rem;
  }

  .editorial-feature .editorial-link,
  .editorial-feature .editorial-copy {
    min-height: 360px;
  }

  .editorial-overlay-card .editorial-link,
  .editorial-overlay-card .editorial-copy {
    min-height: 246px;
  }

  .editorial-panel-card .editorial-link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-panel-card .editorial-media {
    height: 198px;
  }

  .editorial-feature .editorial-copy,
  .editorial-overlay-card .editorial-copy {
    padding: 0.92rem;
  }

  .editorial-panel-card .editorial-copy {
    padding: 0.88rem 0.86rem 0.94rem;
  }

  .editorial-feature h3 {
    font-size: 1.2rem;
  }

  .category-box {
    gap: 0.74rem;
    padding: 0.84rem;
  }

  .category-product-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 0.56rem;
    min-height: 112px;
  }

  .category-product-image {
    width: 104px;
    height: 112px;
    min-height: 112px;
  }

  .category-product-content {
    gap: 0.27rem;
    padding: 0.54rem 0.54rem 0.54rem 0;
  }

  .category-product-content h4 {
    font-size: 0.9rem;
  }

  .category-product-content p {
    font-size: 0.76rem;
  }

  .category-product-cta {
    padding: 0.27rem 0.46rem;
    font-size: 0.67rem;
  }

  .home-page .hero-unified {
    padding-top: 5.95rem;
  }

  .home-page .site-header-hero .nav-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.1rem;
  }

  .hero-main {
    border-radius: 20px;
  }

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

  .hero-keywords {
    border-radius: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.48rem;
    padding: 0.62rem 0.68rem;
  }

  .hero-keywords-label {
    font-size: 0.64rem;
  }

  .hero-keywords-marquee {
    width: 100%;
  }

  .blog-detail-shell {
    padding: 0.55rem 0 3.4rem;
  }
}


.brand-logo-card img[src*="icon_stt-yatirim"] {
    filter: brightness(0);
}

.brand-showcase {
  overflow: hidden;
  padding: 1rem 0 2.6rem;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.brand-showcase-hero {
  position: relative;
  z-index: 1;
  padding: 0.62rem 0 var(--hero-stack-gap);
  background: transparent;
}

.brand-showcase-head {
  max-width: 62ch;
  margin: 0 auto 1.3rem;
  text-align: center;
}

.brand-showcase-head .kicker {
  margin-bottom: 0.45rem;
}

.brand-showcase-head p {
  margin-top: 0.5rem;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.65rem 0;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.brand-marquee-track {
  --brand-marquee-gap: 0.85rem;
  display: flex;
  width: max-content;
  gap: 0;
  animation: brand-marquee-left-to-right 42s linear infinite;
  animation-direction: normal;
  backface-visibility: hidden;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
}

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

.brand-marquee-card {
  display: grid;
  flex: 0 0 164px;
  margin-right: var(--brand-marquee-gap);
  min-height: 94px;
  place-items: center;
  gap: 0.35rem;
  padding: 0.7rem;
  border: 1px solid rgba(16, 39, 66, 0.1);
  border-radius: 14px;
  background: #fff;
  color: var(--text-600);
  cursor: pointer;
  font: inherit;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.15;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-marquee-card:hover,
.brand-marquee-card:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(16, 39, 66, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.brand-marquee-card img {
  width: 112px;
  height: 42px;
  object-fit: contain;
}

.brand-marquee-card img[src*="icon_stt-yatirim"] {
  filter: brightness(0);
}

.brand-showcase-hero .brand-marquee {
  padding: 0.16rem 0;
  mask-image: none;
}

.brand-showcase-hero .brand-marquee-track {
  --brand-marquee-gap: 0.45rem;
  animation-duration: 46s;
}

.brand-showcase-hero .brand-marquee-card {
  flex-basis: 124px;
  min-height: 44px;
  grid-template-columns: 1fr;
  padding: 0.2rem 0.36rem;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  color: var(--text-700);
  font-size: 0.63rem;
  contain: paint;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.brand-showcase-hero .brand-marquee-card:hover,
.brand-showcase-hero .brand-marquee-card:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
  transform: translateY(-1px);
}

.brand-showcase-hero .brand-marquee-card img {
  width: 98px;
  height: 32px;
}

@keyframes brand-marquee-left-to-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

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

.brand-gallery-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.brand-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 29, 0.78);
}

.brand-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(86vh, 840px);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 22px 64px rgba(0, 15, 35, 0.34);
}

.brand-gallery-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.brand-gallery-header .kicker {
  margin-bottom: 0.3rem;
}

.brand-gallery-close {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(16, 39, 66, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--text-800);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.brand-gallery-grid {
  display: block;
}

.brand-gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1rem, 2.4vw, 1.35rem);
  align-items: stretch;
}

.brand-gallery-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 39, 66, 0.08);
  border-radius: 15px;
  background: #eef3f8;
  box-shadow: 0 12px 28px rgba(16, 39, 66, 0.1);
}

.brand-gallery-item img {
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 410px);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.brand-gallery-item figcaption {
  padding: 0.68rem 0.78rem;
  color: var(--text-600);
  font-size: 0.8rem;
  font-weight: 700;
}

.brand-gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(0.35rem, 1vw, 0.7rem) 0;
}

.brand-gallery-eyebrow {
  margin-bottom: 0.45rem;
  color: var(--orange-500);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-gallery-copy h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.92rem);
}

.brand-gallery-description {
  margin-top: 0.82rem;
  color: var(--text-700);
  font-size: 0.96rem;
  line-height: 1.65;
}

.brand-gallery-points {
  display: grid;
  gap: 0.52rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.brand-gallery-points li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--text-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

.brand-gallery-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

.brand-gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 1.05rem;
}

.brand-gallery-tags span {
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(16, 39, 66, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-700);
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-gallery-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.15rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
  color: #1b1b1b;
  font-size: 0.86rem;
  font-weight: 800;
}

body.brand-gallery-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .brand-showcase { padding-bottom: 2rem; }
  .brand-marquee-card { flex-basis: 142px; min-height: 86px; }
  .brand-marquee-track { animation-duration: 34s; }
  .brand-showcase-hero { padding: 0.42rem 0 var(--hero-stack-gap); }
  .brand-showcase-hero .brand-marquee-card { flex-basis: 108px; min-height: 40px; padding: 0.18rem 0.32rem; font-size: 0.58rem; }
  .brand-showcase-hero .brand-marquee-card img { width: 88px; height: 29px; }
  .brand-showcase-hero .brand-marquee-track { animation-duration: 38s; }
  .brand-gallery-feature { grid-template-columns: 1fr; }
  .brand-gallery-item img { height: 230px; }
  .brand-gallery-copy { padding: 0.1rem 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}

.reference-projects-section {
  background: linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}

.reference-projects-section .cards-grid {
  gap: 1rem;
}

.reference-projects-section .card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #102742;
  box-shadow: 0 12px 30px rgba(16, 39, 66, 0.14);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reference-projects-section .card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 34, 0.04) 16%, rgba(5, 20, 34, 0.9) 100%);
  content: "";
}

.reference-projects-section .card:hover,
.reference-projects-section .card:focus-visible {
  box-shadow: 0 18px 40px rgba(16, 39, 66, 0.25);
  outline: 3px solid rgba(234, 120, 39, 0.68);
  outline-offset: 3px;
  transform: translateY(-5px);
}

.reference-projects-section .card-media,
.reference-projects-section .card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reference-projects-section .card-media img {
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.reference-projects-section .card:hover .card-media img {
  opacity: 1;
  transform: scale(1.06);
}

.reference-projects-section .card-body {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  color: #fff;
}

.reference-projects-section .card-body::before {
  position: absolute;
  top: -2rem;
  right: 1.15rem;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.reference-projects-section .card:hover .card-body::before {
  transform: rotate(90deg);
}

.reference-projects-section .card h3,
.reference-projects-section .card p {
  color: #fff;
}

.reference-projects-section .card h3 {
  font-size: 1.2rem;
}

.reference-projects-section .card p {
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.88;
}

.reference-projects-section .card-tags span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.reference-projects-section .card:nth-child(1) {
  min-height: 400px;
}

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

.reference-modal {
  position: fixed;
  z-index: 2100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.reference-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 29, 0.8);
}

.reference-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  width: min(100%, 1120px);
  max-height: min(88vh, 780px);
  overflow: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

@media (min-width: 769px) {
  .reference-modal-dialog {
    overflow: hidden;
  }
}

.reference-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(16, 39, 66, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--text-800);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.reference-modal-copy {
  padding-right: 2.4rem;
}

.reference-modal-copy .kicker {
  margin-bottom: 0.38rem;
}

.reference-modal-copy p {
  margin-top: 0.75rem;
}

.reference-modal-points {
  display: grid;
  gap: 0.6rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.reference-modal-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-600);
  font-size: 0.88rem;
}

.reference-modal-points li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
}

.reference-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.reference-modal-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  background: #edf2f5;
}

.reference-modal-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reference-modal-gallery figcaption {
  padding: 0.5rem 0.6rem;
  color: var(--text-600);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.category-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.75rem;
}

.category-brand-list span,
.product-taxonomy-grid p {
  color: var(--text-600);
  font-size: 0.74rem;
  font-weight: 800;
}

.category-brand-list span {
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(16, 39, 66, 0.12);
  border-radius: 999px;
  background: #fff;
}

.category-accessory-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.42rem;
}

.category-accessory-visuals figure {
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background: #eef2f5;
}

.category-accessory-visuals img {
  display: block;
  width: 100%;
  height: 62px;
  object-fit: cover;
}

.category-accessory-visuals figcaption {
  padding: 0.32rem 0.38rem;
  color: var(--text-600);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.25;
}

.category-placeholder-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.category-placeholder-products div {
  display: grid;
  gap: 0.18rem;
  min-height: 70px;
  align-content: center;
  padding: 0.6rem;
  border: 1px dashed rgba(16, 39, 66, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.category-placeholder-products strong { color: var(--navy-850); font-size: 0.78rem; }
.category-placeholder-products span { color: var(--text-600); font-size: 0.69rem; line-height: 1.3; }

.card-media-empty,
.product-media-card-empty {
  background: linear-gradient(135deg, #eef2f5, #f9fbfc);
}
.card-media-empty { min-height: 180px; }
.product-media-card-empty { min-height: 300px; }

.product-local-seo {
  margin-top: 0.85rem;
  color: var(--text-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

.category-product-image-empty {
  min-height: 100%;
  background: linear-gradient(135deg, #eef2f5, #f9fbfc);
}

.site-footer-showcase { margin-top: 4rem; padding: clamp(2.5rem, 5vw, 4.5rem) 0 1.1rem; background: #102742; }
.site-footer-showcase .container { max-width: 1240px; }
.site-footer-showcase .product-footer-links { display:grid; grid-template-columns:1.35fr repeat(2,minmax(0,1fr)); gap:clamp(1.5rem,5vw,5rem); padding:0 0 2.2rem; }
.site-footer-showcase .product-footer-links > div > :is(h2, a) { font-family: inherit; line-height: 1.35; }
.site-footer-showcase .product-footer-links > div > h2 { margin:0 0 .75rem; color:#fff; font-size:.78rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.site-footer-showcase .product-footer-links > div > a { display:block; width:fit-content; margin:.42rem 0; color:rgba(255,255,255,.75); font-size:.86rem; font-weight:600; text-decoration:none; transition:color .18s ease,transform .18s ease; }
.site-footer-showcase .product-footer-links > div > a:hover { color:#fff; transform:translateX(3px); }
.site-footer-showcase .product-footer-brands { display:grid; grid-template-columns:repeat(8,minmax(0,1fr)); gap:.65rem; padding:1rem; border-radius:18px; background:#fff; }
.site-footer-showcase .product-footer-brands img { display:block; width:100%; height:46px; padding:.35rem; object-fit:contain; opacity:1; }
.site-footer-showcase .product-footer-brands img[src*="icon_stt-yatirim"] { filter:brightness(0); }
.site-footer-showcase .product-footer-bottom { display:grid; grid-template-columns:1fr auto; gap:1rem 2rem; margin-top:1.6rem; padding:1.25rem 0; border-top:1px solid rgba(255,255,255,.16); color:#fff; }
.site-footer-showcase .product-footer-brand { display:inline-flex; width:fit-content; align-items:center; justify-content:center; padding:.45rem .65rem; border-radius:14px; background:#fff; box-shadow:0 10px 24px rgba(1,12,28,.18); }
.site-footer-showcase .footer-logo { display:block; width:min(190px,56vw); height:auto; max-height:40px; object-fit:contain; }
.site-footer-showcase .product-footer-social { grid-column:1; grid-row:2; color:rgba(255,255,255,.75); font-size:.82rem; }
.site-footer-showcase .product-footer-contact { display:grid; grid-column:2; grid-row:1 / span 2; justify-items:end; gap:.4rem; text-align:right; font-size:.78rem; }
.site-footer-showcase .footer-mini { display:flex; flex-wrap:wrap; gap:.45rem .95rem; margin-top:0; padding-top:1rem; border-top:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.55); font-size:.78rem; }
@media (max-width:980px){.site-footer-showcase .product-footer-brands{grid-template-columns:repeat(4,minmax(0,1fr));}}
@media (max-width:720px){.site-footer-showcase .product-footer-links{grid-template-columns:1fr;}.site-footer-showcase .product-footer-brands{grid-template-columns:repeat(2,minmax(0,1fr));}.site-footer-showcase .product-footer-bottom{grid-template-columns:1fr;}.site-footer-showcase .product-footer-social,.site-footer-showcase .product-footer-contact{grid-column:auto;grid-row:auto;justify-items:start;text-align:left;}}

/* Homepage category center: exactly two priority products per category. */
#product-categories .category-center-grid { align-items: stretch; }
#product-categories .category-box { min-height: 500px; }
#product-categories .category-product-list { display: flex; flex-direction: column; }
#product-categories .category-priority-boya .category-product-card:nth-child(2),
#product-categories .category-priority-kimyasal .category-product-card:nth-child(2),
#product-categories .category-priority-alci .category-product-card:nth-child(1),
#product-categories .category-priority-alci .category-product-card:nth-child(2),
#product-categories .category-priority-alci .category-product-card:nth-child(5),
#product-categories .category-priority-isi-yalitim .category-product-card:nth-child(n + 3) { display: none !important; }
#product-categories .category-priority-alci .category-product-card:nth-child(3),
#product-categories .category-priority-duvar .category-product-card:nth-child(2) { order: -1; }
@media (max-width: 720px) { #product-categories .category-box { min-height: auto; } }
