@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/poppins-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/poppins-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/poppins-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/poppins-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #27358f;
  --primary-dark: #182466;
  --primary-soft: #eef2ff;
  --secondary: #00a48c;
  --secondary-dark: #007c6b;
  --secondary-soft: #e8f9f5;
  --ink: #17223a;
  --muted: #617089;
  --line: #dfe5ed;
  --surface: #f5f8fb;
  --white: #ffffff;
  --shadow-sm: 0 10px 32px rgba(32, 47, 78, 0.08);
  --shadow-lg: 0 28px 70px rgba(22, 39, 77, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --transition: 180ms var(--ease-out);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
summary,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h3 {
  font-size: 1.2rem;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(0, 164, 140, 0.65);
  outline-offset: 4px;
}

.topbar {
  position: relative;
  z-index: 52;
  color: #dce4ff;
  background: var(--primary-dark);
  font-size: 0.82rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.topbar-links a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  border-color: rgba(39, 53, 143, 0.08);
  box-shadow: 0 10px 30px rgba(17, 33, 71, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  min-width: 168px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 168px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-cta) {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #39445a;
  transition: color var(--transition);
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.primary-nav > a:hover,
.primary-nav > a.active {
  color: var(--primary);
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(39, 53, 143, 0.18);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  background: var(--secondary-dark);
  box-shadow: 0 10px 25px rgba(0, 124, 107, 0.2);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-radius: 9px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 58px 0 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(0, 164, 140, 0.09), transparent 31%),
    linear-gradient(90deg, #fff 0%, #fff 55%, #f7fbfa 100%);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-orb {
  display: none;
}

.hero-grid {
  min-height: 620px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(430px, 0.93fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 42px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--secondary-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.eyebrow b {
  color: var(--primary);
  font-weight: 700;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
  position: relative;
  z-index: 0;
}

.hero h1 em::after {
  display: none;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button svg,
.text-link svg,
.service-card a svg,
.product-info a svg {
  transition: transform var(--transition);
}

.button:hover svg,
.text-link:hover svg,
.service-card a:hover svg,
.product-info a:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(39, 53, 143, 0.2);
}

.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 17px 38px rgba(39, 53, 143, 0.25);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(39, 53, 143, 0.18);
}

.button-ghost:hover {
  color: var(--white);
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.button-service {
  color: var(--primary-dark);
  background: var(--white);
  border-color: rgba(39, 53, 143, 0.2);
  box-shadow: 0 10px 28px rgba(25, 43, 80, 0.07);
}

.button-service > svg:first-child {
  color: var(--secondary-dark);
}

.button-service:hover {
  color: var(--white);
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.button-service:hover > svg:first-child {
  color: currentColor;
  transform: none;
}

.button-outline {
  color: var(--primary);
  background: var(--white);
  border-color: rgba(39, 53, 143, 0.2);
}

.button-outline:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.button-light {
  color: var(--primary-dark);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--secondary);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #44516a;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(39, 53, 143, 0.3);
  text-underline-offset: 4px;
}

.hero-trust > a svg {
  width: 15px;
  height: 15px;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: var(--white);
  background: var(--secondary);
  border-radius: 50%;
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.product-stage {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform-style: preserve-3d;
}

.product-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 12%;
  border: 1px dashed rgba(39, 53, 143, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.system-map {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.system-line {
  fill: none;
  stroke: rgba(39, 53, 143, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 5 9;
}

.system-line-secondary {
  stroke: rgba(0, 164, 140, 0.28);
}

.system-map circle {
  fill: #fff;
  stroke: var(--secondary);
  stroke-width: 2;
}

.hero-product-motion {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.hero-product {
  width: min(82%, 430px);
  position: relative;
  filter: drop-shadow(0 42px 28px rgba(17, 35, 65, 0.23));
  transform: translateZ(42px) rotate(-1.5deg);
  transform-style: preserve-3d;
  transition: transform 180ms var(--ease-out);
}

.product-ground {
  position: absolute;
  z-index: 1;
  right: 16%;
  bottom: 14%;
  left: 20%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(16, 35, 61, 0.25), transparent 68%);
  filter: blur(12px);
}

.stage-index {
  position: absolute;
  top: 6%;
  left: 0;
  color: #7d899c;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.authority-mark,
.service-plate {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(39, 53, 143, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(21, 38, 73, 0.1);
}

.authority-mark {
  top: 12%;
  right: 0;
  padding: 13px 18px 13px 23px;
}

.authority-mark > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--secondary);
}

.authority-mark small,
.authority-mark strong,
.service-plate small,
.service-plate strong,
.service-plate > span {
  display: block;
}

.authority-mark small {
  color: var(--secondary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.authority-mark strong {
  font-family: var(--font-display);
  font-size: 0.86rem;
}

.service-plate {
  bottom: 10%;
  left: -2%;
  width: 255px;
  padding: 15px 18px;
}

.service-plate small {
  color: var(--secondary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-plate strong {
  margin: 3px 0 1px;
  font-family: var(--font-display);
  font-size: 0.76rem;
}

.service-plate strong i {
  color: var(--secondary);
  font-style: normal;
}

.service-plate > span {
  color: var(--muted);
  font-size: 0.65rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  margin: 0;
  padding-left: 12px;
  color: var(--primary-dark);
  border-left: 1px solid rgba(39, 53, 143, 0.18);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
}

.hero-phone > svg {
  width: 24px !important;
  height: 24px !important;
  padding: 5px;
  color: var(--secondary-dark);
  background: var(--secondary-soft);
  border-radius: 50%;
}

.hero-phone span,
.hero-phone strong {
  display: inline;
}

.hero-phone strong {
  color: var(--primary);
  font-size: 0.78rem;
}

@media (prefers-reduced-motion: no-preference) {
  .product-stage::before {
    animation: technical-orbit 22s linear infinite;
  }

  .hero-product-motion {
    animation: product-depth 5.8s cubic-bezier(0.45, 0, 0.15, 1) infinite;
  }
}

@keyframes technical-orbit {
  to { transform: rotate(360deg); }
}

@keyframes product-depth {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(2deg) rotateY(-9deg) rotateZ(-1.5deg); }
  25% { transform: translate3d(0, -10px, 0) rotateX(0deg) rotateY(-2deg) rotateZ(0.8deg); }
  50% { transform: translate3d(0, -14px, 0) rotateX(-2deg) rotateY(9deg) rotateZ(1.8deg); }
  75% { transform: translate3d(0, -7px, 0) rotateX(0deg) rotateY(2deg) rotateZ(0.2deg); }
}

.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-metrics div {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  position: relative;
}

.hero-metrics div + div::before {
  content: "";
  width: 1px;
  height: 42px;
  position: absolute;
  left: 0;
  background: var(--line);
}

.hero-metrics strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.2;
}

.hero-metrics div:nth-child(2) strong {
  color: var(--secondary-dark);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-metrics div:nth-child(3) strong {
  font-size: 1.08rem;
}

.about {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
}

.solution-map {
  position: relative;
  min-height: 520px;
  padding: 38px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4f7ff, #fff 58%, #edfaf7);
  border: 1px solid rgba(39, 53, 143, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.solution-map::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  bottom: -180px;
  border: 1px dashed rgba(0, 164, 140, 0.24);
  border-radius: 50%;
}

.solution-map-head span,
.solution-map-head strong {
  display: block;
}

.solution-map-head span {
  color: var(--secondary-dark);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.solution-map-head strong {
  max-width: 330px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.solution-product {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 10px 12px;
}

.solution-product img {
  width: 205px;
  filter: drop-shadow(0 24px 20px rgba(24, 43, 77, 0.2));
}

.solution-product > span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
  text-align: right;
}

.solution-product > span strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

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

.solution-steps li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  border-top: 1px solid rgba(39, 53, 143, 0.1);
}

.solution-steps li > span {
  color: var(--secondary-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
}

.solution-steps strong,
.solution-steps small {
  display: block;
}

.solution-steps strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.solution-steps small {
  color: var(--muted);
  font-size: 0.7rem;
}

.about-badge {
  position: absolute;
  right: -10px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--primary);
  border: 6px solid var(--white);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.72rem;
  line-height: 1.35;
}

.solution-map .about-badge {
  right: 20px;
  bottom: 20px;
  border-width: 0;
}

.dot-pattern {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: -1;
  top: -25px;
  left: -32px;
  background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.35;
}

.about-copy .lead {
  color: #34435c;
  font-size: 1.02rem;
  font-weight: 600;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
}

.authority-proof {
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 12px;
  margin: 24px 0 4px;
  padding: 12px 14px;
  color: var(--primary-dark);
  background: #f8fafc;
  border: 1px solid rgba(39, 53, 143, 0.12);
  border-left: 3px solid var(--secondary);
  border-radius: 7px;
  transition: border-color var(--transition), background var(--transition);
}

.authority-proof > svg:first-child {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--secondary-dark);
  background: var(--secondary-soft);
  border-radius: 50%;
}

.authority-proof > svg:last-child {
  color: var(--primary);
}

.authority-proof span,
.authority-proof small {
  display: block;
}

.authority-proof span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
}

.authority-proof small {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
}

.authority-proof:hover {
  background: var(--secondary-soft);
  border-color: rgba(0, 164, 140, 0.35);
}

.value-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.value-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-list > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--secondary-dark);
  background: var(--secondary-soft);
  border-radius: 50%;
}

.value-list > div > span svg {
  width: 17px;
  stroke-width: 2.6;
}

.value-list strong,
.value-list small {
  display: block;
}

.value-list strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.value-list small {
  color: var(--muted);
  font-size: 0.78rem;
}

.text-link,
.service-card a,
.product-info a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
}

.services {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

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

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(39, 53, 143, 0.12);
  border-bottom: 1px solid rgba(39, 53, 143, 0.12);
}

.service-card {
  min-height: 360px;
  position: relative;
  padding: 34px 27px 28px;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(39, 53, 143, 0.1);
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  transform: none;
}

.service-card:hover::after {
  transform: scaleY(1);
}

.service-card:last-child {
  border-right: 0;
}

.card-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #dfe4ec;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 13px;
}

.service-card:nth-child(even) .service-icon {
  color: var(--secondary-dark);
  background: var(--secondary-soft);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  min-height: 55px;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

.service-card a {
  margin-top: auto;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 30px;
}

.category-strip span {
  padding: 8px 12px;
  color: #4c5b73;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.filter-button:hover,
.filter-button.active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  border-color: rgba(39, 53, 143, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

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

.product-media {
  height: 264px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 164, 140, 0.11), transparent 27%),
    linear-gradient(145deg, #f9fbfd, #eef3f8);
  overflow: hidden;
}

.product-media::before {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  border: 1px solid rgba(39, 53, 143, 0.09);
  border-radius: 50%;
}

.product-media img {
  max-width: 72%;
  max-height: 190px;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 13px rgba(31, 49, 70, 0.15));
  transition: transform 200ms var(--ease-out);
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-card:first-child .product-media img {
  max-height: 205px;
}

.product-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 5px 10px;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 5px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-tag.green {
  color: var(--secondary-dark);
  background: var(--secondary-soft);
}

.product-info {
  min-height: 178px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.product-info small {
  margin-bottom: 7px;
  color: var(--secondary-dark);
  font-weight: 700;
}

.product-info h3 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.product-info a {
  margin-top: auto;
}

.products-cta {
  margin-top: 32px;
  padding: 23px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--primary-soft);
  border: 1px solid rgba(39, 53, 143, 0.08);
  border-radius: 12px;
}

.products-cta p {
  margin: 0;
  font-weight: 600;
}

.products-cta .button {
  flex: 0 0 auto;
}

.why-us {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 22%, rgba(0, 164, 140, 0.24), transparent 27%),
    linear-gradient(125deg, #17225f, #24358d 55%, #087a78);
  overflow: hidden;
}

.why-us::after {
  content: "";
  width: 600px;
  height: 600px;
  position: absolute;
  top: -300px;
  right: -180px;
  border: 90px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.section-kicker.light {
  color: #79ead5;
}

.why-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.why-copy > p {
  margin-bottom: 30px;
  color: #cdd5ee;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-item {
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-item > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #72ead6;
  background: rgba(0, 164, 140, 0.18);
  border-radius: 10px;
}

.why-item h3 {
  margin: 2px 0 8px;
  font-size: 0.98rem;
}

.why-item p {
  margin: 0;
  color: #c9d1e8;
  font-size: 0.78rem;
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 95px;
}

.faq-intro p {
  color: var(--muted);
}

.faq-intro .text-link {
  margin-top: 16px;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-list details[open] {
  border-color: rgba(39, 53, 143, 0.18);
  box-shadow: 0 9px 22px rgba(21, 40, 74, 0.05);
}

.faq-list summary {
  min-height: 68px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 22px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 auto;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  width: 10px;
  height: 1.5px;
  position: absolute;
  top: 11px;
  left: 7px;
  background: currentColor;
  transition: transform var(--transition);
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-section {
  position: relative;
  padding-top: 112px;
  background: var(--white);
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info {
  padding: 58px 52px;
  background:
    radial-gradient(circle at 20% 5%, rgba(0, 164, 140, 0.24), transparent 28%),
    linear-gradient(145deg, var(--primary-dark), var(--primary));
}

.contact-info h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.contact-info > p {
  color: #ccd5f2;
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  border-radius: 9px;
  transition: background var(--transition);
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-list a > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #71ead4;
  background: rgba(0, 164, 140, 0.16);
  border-radius: 9px;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: #aeb9dc;
  font-size: 0.66rem;
}

.contact-list strong {
  font-size: 0.86rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form-wrap {
  padding: 58px 56px;
  color: var(--ink);
  background: var(--white);
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.form-head span {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.form-head small {
  color: var(--secondary-dark);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 13px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #35425b;
  font-size: 0.74rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  height: 50px;
  padding: 0 15px;
}

.field textarea {
  min-height: 104px;
  padding: 13px 15px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 164, 140, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c73535;
}

.field-error {
  min-height: 17px;
  display: block;
  padding-top: 2px;
  color: #b72727;
  font-size: 0.66rem;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.form-status {
  min-height: 22px;
  margin-top: 7px;
  color: var(--secondary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.map-wrap {
  height: 410px;
  margin-top: 48px;
  background: var(--surface);
  filter: saturate(0.8);
}

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

.site-footer {
  color: #bfc9dd;
  background: #111a2d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 0.9fr 0.9fr;
  gap: 65px;
  padding-top: 72px;
  padding-bottom: 55px;
}

.footer-brand img {
  width: 168px;
  padding: 10px;
  background: var(--white);
  border-radius: 7px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 20px;
  font-size: 0.82rem;
}

.footer-main h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.9rem;
}

.footer-main > div:not(.footer-brand) a {
  min-height: 34px;
  display: flex;
  align-items: center;
  font-size: 0.77rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-main > div:not(.footer-brand) a:hover {
  color: #6fe6d1;
  transform: translateX(3px);
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.whatsapp-button {
  width: 64px;
  height: 64px;
  min-height: 64px;
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(8, 91, 55, 0.28), 0 0 0 1px rgba(8, 91, 55, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.whatsapp-button:hover {
  background: #1fbd5c;
  box-shadow: 0 16px 34px rgba(8, 91, 55, 0.34), 0 0 0 4px rgba(37, 211, 102, 0.16);
  transform: translateY(-2px) scale(1.03);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.9;
}

.whatsapp-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.whatsapp-button::after {
  content: "WhatsApp ile yazın";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(39, 53, 143, 0.12);
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-button:hover::after,
  .whatsapp-button:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@media (max-width: 1050px) {
  .primary-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
  }

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

  .service-card {
    min-height: 330px;
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(39, 53, 143, 0.1);
  }

  .why-grid {
    gap: 60px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 46px 38px;
  }

  .footer-main {
    gap: 38px;
  }
}

@media (max-width: 860px) {
  .topbar p {
    display: none;
  }

  .topbar-inner {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 100%);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 28px 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #ffffff;
    border-top: 1px solid var(--line);
    transform: scaleX(0.98);
    transform-origin: right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms var(--ease-out), opacity 150ms ease, visibility 0s linear 180ms;
  }

  body.menu-open .site-header {
    background: #ffffff;
    backdrop-filter: none;
  }

  .primary-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 240ms var(--ease-drawer), opacity 180ms ease, visibility 0s;
  }

  .primary-nav > a:not(.nav-cta) {
    min-height: 54px;
    padding: 0 10px;
    font-size: 1rem;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: flex-start;
  }

  .hero-copy > p {
    margin-inline: 0;
  }

  .hero-visual {
    min-height: 440px;
  }

  .product-stage {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .hero-product {
    width: 330px;
  }

  .authority-mark {
    top: 8%;
  }

  .service-plate {
    bottom: 4%;
    left: 0;
  }

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

  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 65px;
  }

  .about-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .why-grid {
    gap: 45px;
  }

  .faq-grid {
    gap: 45px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 52px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .topbar-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .topbar-links a {
    font-size: 0.72rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 145px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    row-gap: 20px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-copy > p { order: 3; }
  .hero-copy .hero-actions { order: 4; }
  .hero-visual { order: 5; }
  .hero-copy .hero-trust { order: 6; }
  .hero-copy .hero-phone { order: 7; }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.65rem);
  }

  .hero-copy > p {
    font-size: 0.96rem;
  }

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

  .hero-trust {
    gap: 10px 15px;
    font-size: 0.73rem;
  }

  .hero-visual {
    min-height: 330px;
    margin-top: -4px;
  }

  .product-stage {
    width: 330px;
    max-width: 100%;
  }

  .hero-product {
    width: 255px;
  }

  .authority-mark {
    top: 6%;
    right: 0;
    padding: 10px 13px 10px 17px;
  }

  .service-plate {
    bottom: 1%;
    left: 0;
    width: min(228px, 72%);
    padding: 10px 12px;
  }

  .stage-index {
    left: 3%;
  }

  .hero-phone {
    min-height: 44px;
  }

  .hero-trust > a {
    min-height: 44px;
  }

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

  .hero-metrics div:nth-child(3)::before {
    display: none;
  }

  .hero-metrics div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-map {
    min-height: 500px;
    padding: 28px 24px;
  }

  .solution-product img {
    width: 175px;
  }

  .solution-map .about-badge {
    right: 16px;
    bottom: 16px;
    padding: 13px 16px;
    border-width: 0;
  }

  .about-badge strong {
    font-size: 1.5rem;
  }

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

  .service-grid,
  .product-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(39, 53, 143, 0.1);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .category-strip {
    margin-top: -8px;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .product-media {
    height: 250px;
  }

  .products-cta {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .contact-section {
    padding-top: 80px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 38px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .map-wrap {
    height: 350px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    justify-content: center;
  }
}

.button:active,
.nav-cta:active,
.filter-button:active,
.menu-toggle:active,
.whatsapp-button:active {
  transform: scale(0.97);
  transition: transform 120ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-product {
    will-change: transform;
  }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .nav-cta:hover,
  .service-card:hover,
  .product-card:hover,
  .product-card:hover .product-media img,
  .why-item:hover,
  .whatsapp-button:hover,
  .footer-main > div:not(.footer-brand) a:hover {
    transform: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
  }

  .hero-product,
  .button,
  .nav-cta,
  .service-card,
  .product-card,
  .product-media img,
  .why-item,
  .whatsapp-button {
    transform: none !important;
  }
}
