:root {
  --ink: #132127;
  --muted: #5c6b73;
  --paper: #f7fbfb;
  --white: #ffffff;
  --line: #dce7e8;
  --blue: #0878a8;
  --blue-dark: #075475;
  --aqua: #38bfc3;
  --green: #2e7d59;
  --coral: #d96f43;
  --magenta: #d4147a;
  --sand: #f2efe8;
  --shadow: 0 22px 70px rgba(18, 33, 39, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 138px;
}

section[id],
.payment-strip[id] {
  scroll-margin-top: 128px;
}

body {
  width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 50;
  width: min(var(--max), calc(100% - 40px));
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(190px, auto) minmax(0, 1fr) auto;
  grid-template-areas:
    "brand actions actions"
    "nav nav nav";
  align-items: center;
  gap: 14px 22px;
  padding: 18px 20px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: rgba(8, 24, 31, 0.78);
  box-shadow: 0 24px 80px rgba(7, 22, 28, 0.26);
  backdrop-filter: blur(20px);
  transition:
    top 260ms ease,
    width 260ms ease,
    min-height 260ms ease,
    padding 260ms ease,
    border-radius 260ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 76px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: rgba(8, 24, 31, 0.78);
  box-shadow: 0 16px 34px rgba(7, 22, 28, 0.22);
  transition: opacity 200ms ease, transform 260ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: min(1040px, calc(100% - 40px));
  min-height: 66px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav actions";
  gap: 18px;
  padding: 9px 12px 9px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(19, 33, 39, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(19, 33, 39, 0.12);
}

.site-header.is-scrolled::after {
  opacity: 0;
  transform: translateX(-50%) translateY(-8px) scaleX(0.72);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 4px;
  transition: width 260ms ease, height 260ms ease, flex-basis 260ms ease, padding 260ms ease;
}

.site-header:not(.is-scrolled) .brand-logo {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  padding: 5px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  font-weight: 800;
}

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

.brand strong {
  font-size: 1rem;
  transition: font-size 260ms ease;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.74rem;
  transition: opacity 220ms ease, margin 260ms ease;
}

.site-header:not(.is-scrolled) .brand strong {
  font-size: 1.08rem;
}

.site-header.is-scrolled .brand small {
  opacity: 0;
  margin-top: 0;
  height: 0;
  overflow: hidden;
}

.site-nav {
  grid-area: nav;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  transition: padding 260ms ease, background 220ms ease, border-color 220ms ease, border-radius 260ms ease;
}

.site-header.is-scrolled .site-nav {
  justify-self: center;
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: currentColor;
  opacity: 0.88;
  transition: background 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(8, 120, 168, 0.08);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-actions {
  grid-area: actions;
  justify-self: end;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.link-button:hover,
.blog-card a:hover {
  transform: translateY(-1px);
}

.link-button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.link-button.primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.link-button.subtle {
  color: currentColor;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.phone-link {
  gap: 9px;
}

.phone-link::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.4 22 2 13.6 2 3.4 2 2.7 2.5 2.2 3.2 2.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-header.is-scrolled .link-button.subtle {
  background: rgba(8, 120, 168, 0.08);
  border-color: rgba(8, 120, 168, 0.12);
}

.link-button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
}

.link-button.large {
  min-height: 50px;
  padding-inline: 22px;
  font-size: 1rem;
}

.menu-toggle {
  grid-area: toggle;
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(19, 33, 39, 0.16);
  background: rgba(8, 120, 168, 0.07);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: #0d242c;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("images/tap-water.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroScale 14s ease-out forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 22, 28, 0.9) 0%, rgba(6, 22, 28, 0.68) 42%, rgba(6, 22, 28, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 22, 28, 0.72) 0%, rgba(6, 22, 28, 0.05) 45%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 60px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--aqua);
  font-size: 0.79rem;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  margin-top: 30px;
}

.subpage-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: #0d242c;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.blog-page-hero::before {
  background-image: url("images/cafe-coffee.jpg");
}

.tech-page-hero::before {
  background-image: url("images/under-sink.jpg");
}

.subpage-hero-inner {
  position: relative;
  padding: 150px 0 78px;
}

.subpage-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 6.2rem);
  line-height: 0.92;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
}

.trust-strip {
  position: relative;
  z-index: 3;
  padding: 0;
  background: var(--white);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(360px, 1.12fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 18px;
  transform: translateY(-34px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-copy,
.partner-logos,
.cert-badges {
  min-width: 0;
}

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

.trust-copy span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-copy strong {
  margin-top: 6px;
  font-size: 1.05rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

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

.partner-logos img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  padding: 12px 14px;
  border: 1px solid rgba(19, 33, 39, 0.1);
  border-radius: var(--radius);
  background: #fbfefe;
}

.cert-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cert-badges img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  padding: 6px 8px;
  border: 1px solid rgba(19, 33, 39, 0.1);
  border-radius: var(--radius);
  background: #fbfefe;
}

.section,
.intro-band {
  padding: 82px 0;
}

.intro-band {
  padding-top: 36px;
  background: var(--white);
}

.quality-intro {
  padding-top: 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.intro-copy > p:not(.section-kicker) {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy h2,
.section-heading h2,
.technology-copy h2,
.estimator-copy h2,
.impact-copy h2,
.about-grid h2,
.faq-grid h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-points,
.reference-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-points article,
.solution-card,
.reference-card,
.blog-card,
.impact-metrics article,
.estimator-panel,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(19, 33, 39, 0.03);
}

.intro-points article,
.solution-card,
.reference-card,
.blog-card,
.impact-metrics article {
  padding: 24px;
}

.quality-cards {
  align-items: stretch;
}

.quality-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: block;
  padding: 14px;
  border-radius: 20px;
  background: #fbfefe;
  box-shadow: 0 18px 48px rgba(19, 33, 39, 0.08);
  isolation: auto;
}

.quality-card::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 360ms ease;
}

.quality-card::after {
  display: none;
}

.quality-card:hover::before {
  transform: scale(1.06);
}

.quality-card h3,
.quality-card p {
  color: var(--ink);
}

.quality-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.tap-card::before {
  background-image: url("images/tap-water.jpg");
}

.bottle-card::before {
  background-image: url("images/kitchen-filter.jpg");
}

.filter-card::before {
  background-image: url("images/under-sink.jpg");
}

.intro-points span,
.solution-number,
.process-list span,
.reference-card span,
.blog-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

.intro-points h3,
.solution-card h3,
.process-list h3,
.reference-card h3,
.blog-card h3 {
  margin: 12px 0 8px;
  line-height: 1.08;
  font-size: 1.22rem;
}

.intro-points p,
.solution-card p,
.risk-card p,
.tech-step p,
.process-list p,
.reference-card p,
.blog-card p,
.section-heading p,
.technology-copy > p,
.estimator-copy p,
.impact-copy p,
.about-copy p,
.faq-list p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.decision-section,
.advantage-section {
  background: #eef6f6;
}

.section-heading.wide {
  max-width: 980px;
}

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

.advantage-card {
  min-height: 190px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 34px 28px;
  border: 1px solid rgba(19, 33, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(19, 33, 39, 0.08);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 18px 32px rgba(8, 120, 168, 0.22);
}

.advantage-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.taste-card .advantage-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 7.1 5.5 10.9 5.5 14.2a6.5 6.5 0 0 0 13 0C18.5 10.9 16 7.1 12 2Zm0 18a4.2 4.2 0 0 1-4.2-4.2c0-.8.2-1.6.7-2.4.9 2.7 2.5 4.1 5.2 4.4-.6 1.3-1 2.2-1.7 2.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 7.1 5.5 10.9 5.5 14.2a6.5 6.5 0 0 0 13 0C18.5 10.9 16 7.1 12 2Zm0 18a4.2 4.2 0 0 1-4.2-4.2c0-.8.2-1.6.7-2.4.9 2.7 2.5 4.1 5.2 4.4-.6 1.3-1 2.2-1.7 2.2Z'/%3E%3C/svg%3E");
}

.silent-card .advantage-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 14c2.4-2.4 4.6-2.4 7 0s4.6 2.4 7 0l2 2c-3.4 3.4-6.6 3.4-10 0-1.4-1.4-2.6-1.4-4 0Zm0-6c2.4-2.4 4.6-2.4 7 0s4.6 2.4 7 0l2 2c-3.4 3.4-6.6 3.4-10 0-1.4-1.4-2.6-1.4-4 0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 14c2.4-2.4 4.6-2.4 7 0s4.6 2.4 7 0l2 2c-3.4 3.4-6.6 3.4-10 0-1.4-1.4-2.6-1.4-4 0Zm0-6c2.4-2.4 4.6-2.4 7 0s4.6 2.4 7 0l2 2c-3.4 3.4-6.6 3.4-10 0-1.4-1.4-2.6-1.4-4 0Z'/%3E%3C/svg%3E");
}

.service-card .advantage-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m21.7 19.3-6.4-6.4a7 7 0 0 0-8.2-9.7l4.2 4.2-3.8 3.8-4.2-4.2a7 7 0 0 0 9.7 8.2l6.4 6.4a1.6 1.6 0 0 0 2.3-2.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m21.7 19.3-6.4-6.4a7 7 0 0 0-8.2-9.7l4.2 4.2-3.8 3.8-4.2-4.2a7 7 0 0 0 9.7 8.2l6.4 6.4a1.6 1.6 0 0 0 2.3-2.3Z'/%3E%3C/svg%3E");
}

.silent-card .advantage-icon {
  background: linear-gradient(135deg, var(--green), var(--aqua));
  box-shadow: 0 18px 32px rgba(46, 125, 89, 0.2);
}

.service-card .advantage-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.advantage-card h3 {
  margin: 18px 0 8px;
  font-size: 1.36rem;
}

.advantage-card p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
}

.risk-grid,
.tech-step-grid,
.source-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.risk-card,
.tech-step,
.source-stat-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.risk-card span,
.tech-step span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.risk-card h3,
.tech-step h3 {
  margin: 14px 0 10px;
  line-height: 1.08;
  font-size: 1.25rem;
}

.risk-card.highlight {
  color: var(--white);
  border-color: transparent;
  background: #0f2b33;
}

.risk-card.highlight span,
.risk-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.evidence-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 120, 168, 0.16);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
}

.evidence-note strong {
  flex: 0 0 auto;
}

.evidence-note span {
  color: var(--muted);
  text-align: right;
}

.inline-cta,
.center-actions {
  margin-top: 28px;
}

.center-actions {
  display: flex;
  justify-content: center;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

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

.solution-card {
  min-height: 310px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover,
.solution-card.active {
  transform: translateY(-4px);
  border-color: rgba(8, 120, 168, 0.34);
  box-shadow: var(--shadow);
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
  color: #314249;
  font-size: 0.96rem;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 999px;
}

.split-section {
  background: #f2efe8;
}

.split-grid,
.estimator-grid,
.impact-grid,
.about-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.product-showcase {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.brand-carousel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(205px, 1fr) auto;
  gap: 16px;
  min-height: 320px;
  padding: 20px;
  border: 1px solid rgba(8, 120, 168, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 18%, rgba(56, 191, 195, 0.2), transparent 34%),
    linear-gradient(145deg, #ffffff, #f4fbfb);
  box-shadow: 0 22px 70px rgba(19, 33, 39, 0.11);
  overflow: hidden;
}

.brand-carousel.accent {
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 120, 168, 0.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #f7fbfb);
}

.brand-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 820;
}

.brand-carousel-head img {
  width: 120px;
  height: 38px;
  object-fit: contain;
}

.product-stage {
  position: relative;
  min-height: 205px;
}

.product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 360ms ease, transform 360ms ease;
  pointer-events: none;
}

.product-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.product-slide img {
  width: min(82%, 360px);
  height: 186px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(19, 33, 39, 0.18));
}

.product-slide figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 850;
  font-size: 0.86rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 33, 39, 0.22);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 24px;
  background: var(--blue);
}

#teknoloji .split-grid {
  align-items: stretch;
}

#teknoloji .technology-copy {
  display: grid;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(8, 120, 168, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(56, 191, 195, 0.14), transparent 34%),
    #ffffff;
  box-shadow: 0 22px 70px rgba(19, 33, 39, 0.09);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--white);
  background: rgba(8, 31, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.floating-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

#teknoloji .technology-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

#teknoloji .process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.process-list div {
  padding: 0 0 18px 28px;
  border-left: 2px solid rgba(8, 120, 168, 0.18);
}

#teknoloji .process-list div {
  padding: 16px;
  border: 1px solid rgba(8, 120, 168, 0.14);
  border-radius: 16px;
  background: #f7fbfb;
}

.process-list div:last-child {
  padding-bottom: 0;
}

.process-list h3 {
  margin-top: 4px;
}

.process-list p {
  margin: 0;
}

.contrast-section {
  color: var(--white);
  background: #0f2b33;
}

.contrast-section .section-kicker {
  color: #6de0d4;
}

.estimator-copy p,
.contrast-section .source-note span {
  color: rgba(255, 255, 255, 0.74);
}

#tasarruf .estimator-grid {
  width: min(1280px, calc(100% - 40px));
  grid-template-columns: minmax(280px, 0.62fr) minmax(720px, 1.38fr);
  gap: 44px;
}

#tasarruf .estimator-copy {
  max-width: 500px;
}

#tasarruf .estimator-copy h2 {
  font-size: clamp(2.35rem, 3.7vw, 3.8rem);
}

.source-note {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.estimator-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.calculator-block {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calculator-inputs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #ffffff;
}

.calculator-results {
  gap: 18px;
  background: #eef7f7;
  border-color: rgba(8, 120, 168, 0.2);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.estimator-panel.is-calculated .calculator-results {
  border-color: rgba(46, 125, 89, 0.34);
  box-shadow: 0 18px 42px rgba(46, 125, 89, 0.14);
}

.calculator-block-head {
  display: grid;
  gap: 5px;
  grid-column: 1 / -1;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(8, 120, 168, 0.14);
}

.calculator-block-head span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-block-head strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.calculator-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: stretch;
  margin-top: 2px;
}

.calculator-actions .link-button {
  width: 100%;
  justify-content: center;
}

.estimator-panel label,
.contact-form label {
  display: grid;
  align-content: start;
  gap: 7px;
  color: #314249;
  font-weight: 750;
}

.field-label {
  color: var(--ink);
  line-height: 1.15;
}

.field-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 550;
  line-height: 1.25;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8, 120, 168, 0.22);
  border-radius: 8px;
  background: #fbfefe;
}

.input-row input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfefe;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-row input {
  border: 0;
  background: transparent;
}

.input-row small {
  padding-right: 14px;
  color: var(--muted);
}

.contact-form textarea {
  padding-top: 12px;
  resize: vertical;
}

.input-row input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(8, 120, 168, 0.65);
  box-shadow: 0 0 0 4px rgba(8, 120, 168, 0.1);
}

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

.result-grid output {
  min-width: 0;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(8, 120, 168, 0.14);
  border-radius: 12px;
  background: #ffffff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.estimator-panel:not(.is-calculated) .result-grid output {
  opacity: 0.72;
}

.result-grid small {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
}

.result-grid strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.result-highlight {
  background: #e8f7ef !important;
  border-color: rgba(46, 125, 89, 0.28) !important;
}

.result-message {
  min-height: 124px;
  margin: 0;
  padding: 15px 16px;
  border: 1px solid rgba(46, 125, 89, 0.2);
  border-radius: 12px;
  color: #24413d;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  line-height: 1.45;
}

.estimator-panel:not(.is-calculated) .result-message {
  color: var(--muted);
  border-color: rgba(8, 120, 168, 0.14);
}

.impact-section {
  background: var(--white);
}

.payment-strip {
  padding: 40px 0;
  background: var(--white);
  overflow: hidden;
}

.payment-panel {
  display: grid;
  gap: 22px;
  text-align: center;
}

.payment-panel p {
  margin: 0;
  color: #314249;
  font-style: italic;
  font-weight: 650;
}

.bank-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
}

.bank-marquee::before,
.bank-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.bank-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.bank-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.bank-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: bankMarquee 34s linear infinite;
}

.bank-track img {
  width: auto;
  height: 50px;
  flex: 0 0 auto;
  max-width: 190px;
  object-fit: contain;
  padding: 9px 16px;
  border: 1px solid rgba(19, 33, 39, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(19, 33, 39, 0.05);
}

.bank-track img.logo-on-dark {
  padding: 8px 18px;
  border-color: rgba(11, 31, 38, 0.2);
  background: #122a32;
}

.bank-marquee span {
  color: #6d7478;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  filter: grayscale(1);
  white-space: nowrap;
}

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

.impact-metrics article {
  min-height: 160px;
  display: grid;
  align-content: end;
}

.impact-metrics strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  color: var(--blue);
}

.impact-metrics span {
  margin-top: 14px;
  color: var(--muted);
}

.gallery-strip {
  padding-top: 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(9, 28, 35, 0.68);
  border-radius: 8px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.reference-grid {
  margin-top: 30px;
}

.testimonial-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(56, 191, 195, 0.15), transparent 28%),
    linear-gradient(135deg, #0b1d23 0%, #103442 100%);
}

.testimonial-section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  padding: 10px 16px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  letter-spacing: 0.04em;
}

.testimonial-section .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: stretch;
}

.testimonial-summary {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 20px;
  height: 100%;
}

.testimonial-summary h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 0.94;
}

.testimonial-summary > p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.score-card,
.score-bars div,
.testimonial-list article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.score-card {
  padding: 22px;
}

.score-card span {
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 900;
}

.score-card strong {
  display: block;
  margin-top: 8px;
  font-size: 3.4rem;
  line-height: 0.9;
}

.score-card small {
  display: block;
  margin-top: 12px;
  color: #64d8d2;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.score-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.score-bars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
}

.score-bars div {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
}

.score-bars span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.score-bars strong {
  font-size: 1.25rem;
}

.testimonial-list {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}

.testimonial-list article {
  position: relative;
  min-height: 160px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
}

.testimonial-list article::after {
  content: "”";
  position: absolute;
  top: 10px;
  right: 22px;
  color: var(--aqua);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 900;
}

.testimonial-list p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 680;
}

.testimonial-list div {
  display: grid;
  gap: 3px;
}

.testimonial-list span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.reference-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.reference-card p {
  margin-top: auto;
  font-size: 1.02rem;
}

.about-section {
  background: var(--sand);
}

.about-grid {
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin: 0;
  font-size: 1.07rem;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.about-list span {
  padding: 10px 12px;
  border: 1px solid rgba(8, 120, 168, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 780;
  font-size: 0.92rem;
}

.blog-section {
  background: var(--white);
}

.blog-showcase {
  overflow: hidden;
}

.blog-section .section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

.compact-heading {
  display: block;
  max-width: 820px;
}

.compact-heading p:not(.section-kicker) {
  margin-bottom: 0;
}

.home-blog-slider {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.home-blog-slider::before,
.home-blog-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 72px;
  pointer-events: none;
}

.home-blog-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.home-blog-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.home-blog-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: blogMarquee 56s linear infinite;
}

.home-blog-slider:hover .home-blog-track {
  animation-play-state: paused;
}

.home-blog-card {
  width: 238px;
  min-height: 252px;
  display: grid;
  grid-template-rows: 128px auto auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfefe;
  box-shadow: 0 18px 44px rgba(19, 33, 39, 0.08);
}

.home-blog-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  border-radius: 12px;
  background: #dce7e8;
}

.home-blog-card span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-blog-card strong {
  line-height: 1.12;
  font-size: 1.04rem;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.blog-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 780;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.blog-filters button.active,
.blog-filters button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.blog-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.blog-card.is-hidden {
  display: none;
}

.blog-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 850;
}

.compact-blog-grid .blog-card {
  min-height: 230px;
}

.stats-section {
  padding: 0;
  background: var(--white);
}

.source-stat-grid {
  transform: translateY(-34px);
  position: relative;
  z-index: 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.source-stat-grid article {
  min-height: 180px;
  display: grid;
  align-content: end;
  box-shadow: var(--shadow);
}

.source-stat-grid strong {
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
}

.source-stat-grid span {
  margin-top: 10px;
  font-weight: 850;
}

.source-stat-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.priority-grid .blog-card {
  min-height: 250px;
}

.title-library-section {
  background: #eef6f6;
}

.library-controls {
  position: sticky;
  top: 96px;
  z-index: 4;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(19, 33, 39, 0.08);
  backdrop-filter: blur(14px);
}

.library-controls label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #314249;
  font-weight: 850;
}

.library-controls input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfefe;
  outline: none;
}

.library-controls input:focus {
  border-color: rgba(8, 120, 168, 0.65);
  box-shadow: 0 0 0 4px rgba(8, 120, 168, 0.1);
}

.library-count {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.title-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.title-library [data-title-item] {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.title-library [data-title-item]:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 120, 168, 0.26);
  box-shadow: 0 14px 34px rgba(19, 33, 39, 0.08);
}

.title-card-link {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 100%;
  padding: 10px;
}

.title-card-link img {
  width: 120px;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
  background: #dce7e8;
}

.title-library [data-title-item][hidden] {
  display: none;
}

.title-card-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.title-card-copy strong {
  display: block;
  line-height: 1.16;
}

.title-card-copy small {
  color: var(--muted);
  font-weight: 700;
}

.library-load-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.library-load-wrap [hidden] {
  display: none;
}

.article-page {
  background: var(--white);
}

.article-hero-image {
  margin: 0;
  position: relative;
  height: min(82svh, 860px);
  min-height: 620px;
  overflow: hidden;
  background: #0d242c;
}

.article-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 28, 0.26) 0%, rgba(6, 22, 28, 0.68) 100%),
    linear-gradient(90deg, rgba(6, 22, 28, 0.48), rgba(6, 22, 28, 0.08));
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-header {
  position: relative;
  z-index: 2;
  margin-top: -450px;
  padding-bottom: 170px;
  color: var(--white);
}

.article-header h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.98;
}

.article-lead {
  max-width: 860px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

.article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-meta span {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 760;
}

.article-layout {
  display: block;
  max-width: 900px;
  padding: 58px 0 84px;
}

.article-content {
  display: grid;
  gap: 38px;
}

.article-section h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
  line-height: 1;
}

.article-section p {
  margin: 16px 0 0;
  color: #43545c;
  font-size: 1.08rem;
}

.article-inline-image {
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d242c;
}

.article-inline-image img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
}

.article-inline-image figcaption {
  padding: 12px 14px;
  color: var(--muted);
  background: #f5fbfb;
  font-size: 0.9rem;
  font-weight: 750;
}

.article-cta-strip {
  margin-top: 10px;
  padding-top: 10px;
}

.article-credit-note {
  margin: 18px 0 0;
  color: #6b7880;
  font-size: 0.72rem;
  line-height: 1.45;
}

.article-credit-note a {
  color: var(--blue-dark);
  font-weight: 720;
}

.article-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfb;
}

.aside-card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.aside-card p,
.aside-card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.aside-card p {
  margin: 0;
}

.aside-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.aside-card a {
  color: var(--blue-dark);
  font-weight: 820;
}

.tech-flow-section {
  background: var(--white);
}

.tech-flow-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 28px;
  max-width: none;
  margin-bottom: 32px;
}

.tech-flow-heading .section-kicker {
  grid-column: 1 / -1;
}

.tech-flow-heading h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  line-height: 1.04;
}

.tech-flow-heading p {
  max-width: 430px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7fbfb;
}

.tech-step {
  min-height: 300px;
}

.tech-visual-section .image-panel img {
  aspect-ratio: 5 / 4;
}

.tech-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.tech-check-grid h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.tech-check-grid p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.74);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-list span {
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 760;
  line-height: 1.35;
}

.comparison-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.comparison-table div {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-table div:last-child {
  border-bottom: 0;
}

.comparison-table strong {
  color: var(--blue-dark);
}

.comparison-table span {
  color: var(--muted);
}

.compact-contact {
  padding: 82px 0;
}

.vertical-actions {
  align-content: center;
  justify-content: start;
  align-items: stretch;
  flex-direction: column;
}

.faq-section {
  background: #eef6f6;
}

.faq-grid {
  align-items: start;
}

.faq-visual {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 18px;
  align-content: center;
  width: 100%;
  min-height: 460px;
  padding: 24px;
  border-radius: 22px;
  color: var(--white);
  background:
    linear-gradient(rgba(11, 31, 38, 0.82), rgba(11, 31, 38, 0.82)),
    url("images/faq-water-pour.jpg") center / cover;
  box-shadow: var(--shadow);
}

.faq-visual h2,
.faq-visual p {
  margin: 0;
}

.faq-visual h2 {
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.faq-visual p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.faq-badge {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.faq-badge strong {
  font-size: 1.6rem;
}

.faq-badge span {
  color: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(19, 33, 39, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.2rem;
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(56, 191, 195, 0.18), transparent 34%),
    #eef6f6;
}

.contact-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
}

.contact-heading p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-hub {
  display: grid;
  gap: 18px;
}

.contact-top-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.contact-info-card,
.contact-action-panel {
  border: 1px solid rgba(19, 33, 39, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(19, 33, 39, 0.08);
}

.contact-map-panel {
  min-width: 0;
  min-height: 392px;
  overflow: hidden;
  border: 1px solid rgba(19, 33, 39, 0.08);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(19, 33, 39, 0.08);
}

.contact-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 392px;
  border: 0;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 210px;
  padding: 24px;
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-dark);
  background: rgba(56, 191, 195, 0.18);
}

.contact-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.pin-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 10.2A3.2 3.2 0 1 1 12 5.8a3.2 3.2 0 0 1 0 6.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 10.2A3.2 3.2 0 1 1 12 5.8a3.2 3.2 0 0 1 0 6.4Z'/%3E%3C/svg%3E");
}

.phone-card-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.4 22 2 13.6 2 3.4 2 2.7 2.5 2.2 3.2 2.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.4 22 2 13.6 2 3.4 2 2.7 2.5 2.2 3.2 2.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2Z'/%3E%3C/svg%3E");
}

.clock-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 .1 0Zm1.2 10.2 3.6 2.2-1.2 2-4.8-2.9V6h2.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 .1 0Zm1.2 10.2 3.6 2.2-1.2 2-4.8-2.9V6h2.4Z'/%3E%3C/svg%3E");
}

.contact-info-card h3,
.contact-action-panel h3 {
  margin: 0;
  line-height: 1.08;
  font-size: 1.28rem;
}

.contact-info-card p,
.contact-action-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-info-card strong {
  color: var(--ink);
  font-weight: 850;
}

.contact-info-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 850;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
}

.contact-action-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 392px;
  padding: 30px;
  border-color: rgba(56, 191, 195, 0.18);
  background: #0d2f36;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(19, 33, 39, 0.12);
  color: var(--white);
}

.contact-action-panel h3 {
  max-width: 560px;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 0.98;
}

.contact-action-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel-kicker {
  color: #6de0d4;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.whatsapp-cta {
  gap: 9px;
  color: var(--white);
  background: #1fb45b;
  border-color: #1fb45b;
}

.whatsapp-cta img {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  padding: 3px;
  border-radius: 999px;
  background: var(--white);
}

.whatsapp-cta:hover {
  background: #168647;
  border-color: #168647;
}

.contact-small-note {
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #0b1d23;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 50px;
  height: 50px;
  min-height: 0;
  padding: 0;
  color: var(--white);
  border-radius: 999px;
  background: #1fb45b;
  box-shadow: 0 20px 48px rgba(31, 180, 91, 0.28);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  padding: 5px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.whatsapp-float span:last-child {
  display: none;
}

.whatsapp-float strong,
.whatsapp-float small {
  line-height: 1.05;
}

.whatsapp-float strong {
  font-size: 0.84rem;
  white-space: nowrap;
}

.whatsapp-float small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 36px;
  padding: 52px 0 34px;
}

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

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

[data-animate] {
  opacity: 1;
  transform: none;
}

.has-js [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.has-js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroScale {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes blogMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes bankMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

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

  .has-js [data-animate] {
    opacity: 1;
    transform: none;
  }

  .home-blog-track {
    animation: none;
  }

  .bank-track {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 44px;
    grid-template-areas: "brand toggle";
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    min-width: 0;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    position: relative;
    z-index: 2;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(19, 33, 39, 0.1);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 22px 70px rgba(19, 33, 39, 0.17);
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    justify-self: stretch;
  }

  .site-header.is-open .site-nav {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
    padding: 10px;
    border-color: rgba(8, 120, 168, 0.12);
    background: rgba(8, 120, 168, 0.06);
  }

  .site-header.is-open .site-nav a {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
  }

  .site-header.is-open .header-actions {
    grid-area: actions;
    display: flex;
    padding-top: 8px;
  }

  .site-header.is-open,
  .site-header.is-open.is-scrolled {
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
  }

  .site-header.is-scrolled {
    top: 8px;
    width: auto;
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand toggle";
    padding: 10px 12px;
    border-radius: 18px;
  }

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

  .intro-grid,
  .split-grid,
  .estimator-grid,
  .impact-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .contact-hub,
  .contact-top-grid,
  .contact-info-grid,
  .tech-check-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  #tasarruf .estimator-grid {
    width: min(var(--max), calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #tasarruf .estimator-copy {
    max-width: 760px;
  }

  #tasarruf .estimator-copy h2 {
    max-width: 720px;
    font-size: clamp(2.25rem, 6.2vw, 3.55rem);
  }

  .solution-layout,
  .intro-points,
  .advantage-grid,
  .reference-grid,
  .blog-grid,
  .risk-grid,
  .tech-step-grid,
  .source-stat-grid,
  .priority-grid,
  .title-library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-stat-grid {
    transform: translateY(-24px);
  }

  .article-aside {
    position: static;
  }

  .testimonial-layout,
  .compact-heading {
    grid-template-columns: 1fr;
  }

  .score-bars,
  #teknoloji .process-list {
    grid-template-columns: 1fr;
  }

  .tech-flow-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tech-flow-heading p {
    max-width: 680px;
  }

  .faq-visual {
    position: static;
    height: auto;
    min-height: 360px;
  }

  .contact-map-panel,
  .contact-map-panel iframe {
    min-height: 300px;
  }

  .contact-action-panel {
    min-height: 340px;
  }

  .bank-marquee {
    display: block;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 94px;
  }

  section[id],
  .payment-strip[id] {
    scroll-margin-top: 88px;
  }

  .container,
  .hero-inner,
  .subpage-hero-inner {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
  }

  .site-header {
    top: 0;
    left: 10px;
    right: 10px;
    width: auto;
    max-width: none;
    min-height: 70px;
    padding: 14px 16px 16px;
    overflow: hidden;
  }

  .menu-toggle {
    position: static;
    justify-self: end;
  }

  .site-header.is-scrolled {
    top: 8px;
    min-height: 58px;
  }

  .brand small {
    display: none;
  }

  .header-actions,
  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero {
    min-height: 78svh;
  }

  .subpage-hero {
    min-height: 64svh;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 34px;
  }

  .subpage-hero-inner {
    padding-top: 124px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.8rem);
  }

  .subpage-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.7rem);
  }

  .article-hero-image {
    height: 84svh;
    min-height: 730px;
  }

  .article-header {
    margin-top: -370px;
    padding-bottom: 72px;
  }

  .article-header h1 {
    font-size: clamp(2.12rem, 10vw, 3.8rem);
    line-height: 1;
  }

  .article-lead {
    display: none;
  }

  .article-layout {
    padding: 58px 0;
  }

  .article-meta {
    flex-direction: column;
  }

  .article-meta span {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .article-inline-image img {
    aspect-ratio: 4 / 3;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
  }

  .trust-panel {
    width: auto;
    max-width: none;
    transform: translateY(-24px);
    padding: 16px;
  }

  .partner-logos img {
    height: 50px;
    padding: 10px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logos img:last-child {
    grid-column: auto;
  }

  .cert-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .section,
  .intro-band {
    padding: 68px 0;
  }

  .intro-band {
    padding-top: 44px;
  }

  .intro-points,
  .advantage-grid,
  .solution-layout,
  .reference-grid,
  .blog-grid,
  .risk-grid,
  .tech-step-grid,
  .source-stat-grid,
  .priority-grid,
  .title-library,
  .impact-metrics,
  .result-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #tasarruf .estimator-grid {
    width: auto;
    max-width: none;
    grid-template-columns: 1fr;
  }

  #tasarruf .estimator-copy h2 {
    font-size: clamp(2.05rem, 9.5vw, 3.15rem);
  }

  .estimator-panel {
    gap: 12px;
    padding: 14px;
  }

  .calculator-block,
  .calculator-inputs {
    grid-template-columns: 1fr;
  }

  .calculator-block {
    gap: 14px;
    padding: 14px;
  }

  .result-grid output {
    min-height: 82px;
  }

  .result-message {
    min-height: 0;
    font-size: 0.95rem;
  }

  .estimator-panel {
    grid-template-columns: 1fr;
  }

  .calculator-actions {
    justify-content: stretch;
  }

  .calculator-actions .link-button {
    width: 100%;
    justify-content: center;
  }

  .library-controls {
    position: static;
  }

  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .source-stat-grid {
    transform: none;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .check-list span {
    min-height: 0;
  }

  .evidence-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .evidence-note span {
    text-align: left;
  }

  .gallery-grid figure {
    min-height: 310px;
  }

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

  .quality-card {
    min-height: 250px;
  }

  .quality-card::before {
    height: 150px;
  }

  .advantage-card {
    min-height: 190px;
    border-radius: 16px;
  }

  .brand-carousel {
    min-height: 360px;
    grid-template-rows: auto minmax(230px, 1fr) auto;
    padding: 16px;
    border-radius: 18px;
  }

  .brand-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-stage {
    min-height: 230px;
  }

  .product-slide img {
    width: min(86%, 310px);
    height: 215px;
  }

  .bank-marquee {
    display: block;
  }

  .bank-track {
    gap: 14px;
    animation-duration: 26s;
  }

  .bank-track img {
    height: 46px;
    max-width: 160px;
    padding-inline: 10px;
  }

  .testimonial-summary h2 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .testimonial-list article {
    min-height: 0;
    padding: 26px;
  }

  .compact-heading {
    gap: 10px;
  }

  .home-blog-slider {
    overflow-x: auto;
    padding-bottom: 18px;
  }

  .home-blog-slider::before,
  .home-blog-slider::after {
    display: none;
  }

  .home-blog-track {
    width: max-content;
    animation: none;
  }

  .home-blog-card {
    width: 238px;
  }

  .faq-visual {
    min-height: 330px;
    padding: 24px;
  }

  .contact-map-panel,
  .contact-map-panel iframe {
    min-height: 260px;
  }

  .contact-heading {
    text-align: left;
    margin-bottom: 28px;
  }

  .contact-info-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    padding: 20px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .contact-action-panel {
    min-height: 0;
    padding: 24px;
  }

  .contact-action-buttons {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 0;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .whatsapp-float span:last-child {
    display: none;
  }

  .whatsapp-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    padding: 5px;
    box-shadow: none;
  }

  .link-button.large,
  .contact-actions .link-button,
  .hero-actions .link-button {
    width: 100%;
  }
}
