:root {
  --navy: #071f38;
  --navy-soft: #123b5e;
  --blue: #0b76bc;
  --blue-dark: #064f82;
  --cyan: #2fc6df;
  --cyan-soft: #e8f9fc;
  --ice: #f5fafd;
  --gray: #edf4f8;
  --line: rgba(177, 204, 221, 0.7);
  --text-dark: #071f38;
  --text-muted: #607588;
  --text: var(--text-dark);
  --muted: var(--text-muted);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 56, 0.13);
  --shadow-soft: 0 14px 36px rgba(7, 31, 56, 0.08);
  --ring: rgba(47, 198, 223, 0.3);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-container: 1400px;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --fs-eyebrow: 13px;
  --fs-body: 16px;
  --fs-card-body: 15.5px;
  --fs-body-lg: 18px;
  --fs-nav: 15px;
  --fs-button: 15px;
  --fs-card-title: 22px;
  --fs-section-title: clamp(32px, 3.2vw, 48px);
  --fs-page-title: clamp(42px, 5vw, 68px);
  --fs-subpage-title: clamp(40px, 4.2vw, 60px);
  --fs-category-title: clamp(28px, 2.4vw, 40px);
  --fs-pill: 14.5px;
  --fs-footer-title: 18px;
  --fs-footer: 15.5px;
  --fs-credit: 13px;
  --lh-tight: 1.05;
  --lh-title: 1.15;
  --lh-body: 1.7;
  --lh-card: 1.65;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-main);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background:
    radial-gradient(circle at top left, rgba(47, 198, 223, 0.13), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--ice) 44%, #edf6fb 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(53, 195, 223, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  transition: transform 180ms ease;
}

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

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

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(246, 250, 253, 0.76);
  border-bottom: 1px solid rgba(216, 229, 238, 0.54);
  backdrop-filter: blur(20px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(94%, var(--header-container));
  min-height: 72px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(177, 204, 221, 0.56);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 48px rgba(7, 31, 56, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 148px;
  max-width: 38vw;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(216, 229, 238, 0.65);
  border-radius: 999px;
  background: rgba(245, 250, 253, 0.72);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  color: #3b586f;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 31, 56, 0.08);
}

.header-actions,
.nav-actions,
.hero-actions,
.cta-actions,
.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions {
  flex: 0 0 auto;
  gap: 8px;
}

.header-actions .button {
  min-height: 46px;
  padding: 0 16px;
}

.nav-actions {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--fs-button);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 16px 30px rgba(6, 79, 130, 0.24);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(177, 204, 221, 0.82);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(7, 31, 56, 0.06);
}

.button-whatsapp {
  color: #063d28;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 40%),
    linear-gradient(135deg, #dff9ed 0%, #a6efd1 100%);
  border-color: #96e5c7;
  box-shadow: 0 14px 28px rgba(24, 142, 94, 0.15);
}

.button-map {
  color: var(--navy);
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-soft) 100%);
  border-color: #bfeaf2;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(177, 204, 221, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--navy);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

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

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

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

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
.page-title {
  margin-bottom: 0;
  color: var(--navy);
  font-size: var(--fs-page-title);
  font-weight: 850;
  line-height: var(--lh-tight);
  letter-spacing: -0.035em;
}

h2 {
  color: var(--navy);
  font-size: var(--fs-section-title);
  font-weight: 800;
  line-height: var(--lh-title);
  letter-spacing: -0.028em;
}

h3 {
  color: var(--navy);
  font-size: var(--fs-card-title);
  font-weight: 750;
  line-height: 1.25;
}

.lead {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(177, 204, 221, 0.72);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
    radial-gradient(circle at 80% 18%, rgba(47, 198, 223, 0.28), transparent 11rem),
    linear-gradient(145deg, #ffffff 0%, #eaf7fc 58%, #dceff8 100%);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.hero-visual::before {
  width: 270px;
  height: 270px;
  right: -68px;
  top: -48px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent),
    rgba(47, 198, 223, 0.14);
}

.hero-visual::after {
  width: 160px;
  height: 160px;
  left: 44px;
  bottom: 38px;
  background: rgba(11, 118, 188, 0.09);
}

.service-device {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 50px;
  min-height: 145px;
  padding: 26px;
  border: 1px solid rgba(177, 204, 221, 0.76);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 253, 0.82));
  box-shadow:
    0 20px 42px rgba(7, 31, 56, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.device-line {
  width: 54%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-dark), var(--cyan));
}

.device-line:nth-child(2) {
  width: 78%;
  margin-top: 18px;
  opacity: 0.24;
}

.device-line:nth-child(3) {
  width: 38%;
  margin-top: 12px;
  opacity: 0.18;
}

.fan {
  position: absolute;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  right: 58px;
  bottom: 56px;
  border: 14px solid rgba(11, 118, 188, 0.13);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(232, 249, 252, 0.72));
  box-shadow:
    0 18px 38px rgba(7, 31, 56, 0.1),
    inset 0 0 0 1px rgba(11, 118, 188, 0.16);
}

.fan-core {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--cyan));
  box-shadow: 0 0 0 12px rgba(47, 198, 223, 0.13);
}

.fan-blade {
  position: absolute;
  width: 22px;
  height: 62px;
  border-radius: 999px 999px 8px 8px;
  transform-origin: center 84px;
  background: linear-gradient(180deg, rgba(11, 118, 188, 0.56), rgba(47, 198, 223, 0.42));
}

.fan-blade:nth-child(1) {
  transform: translateY(-52px) rotate(0deg);
}

.fan-blade:nth-child(2) {
  transform: translateY(-52px) rotate(120deg);
}

.fan-blade:nth-child(3) {
  transform: translateY(-52px) rotate(240deg);
}

.cool-badge {
  position: absolute;
  left: 36px;
  bottom: 62px;
  z-index: 1;
  max-width: 210px;
  padding: 18px;
  border-radius: 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue-dark) 100%);
  box-shadow: 0 20px 36px rgba(7, 31, 56, 0.2);
}

.cool-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: var(--fs-card-title);
  font-weight: 800;
}

.cool-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--fs-card-body);
  line-height: 1.5;
}

.section {
  padding: 54px 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 250, 253, 0.74));
  border-top: 1px solid rgba(216, 229, 238, 0.72);
  border-bottom: 1px solid rgba(216, 229, 238, 0.72);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p,
.content-block p,
.why-card p,
.info-card p,
.footer p,
.footer a,
.contact-item span,
.contact-note {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.service-card p,
.detail-card p,
.category-card p {
  color: var(--muted);
  font-size: var(--fs-card-body);
  line-height: var(--lh-card);
}

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

.service-card,
.why-card,
.info-card,
.detail-card,
.category-card,
.contact-panel,
.contact-item {
  border: 1px solid rgba(177, 204, 221, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 254, 0.86));
  box-shadow: var(--shadow-soft);
}

.service-card,
.why-card,
.info-card,
.detail-card,
.category-card,
.contact-panel {
  padding: 26px;
}

.service-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 260px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 198, 223, 0.48);
  box-shadow: 0 24px 58px rgba(7, 31, 56, 0.13);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card p {
  margin-bottom: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(47, 198, 223, 0.28);
  border-radius: 16px;
  color: var(--blue-dark);
  font-weight: 900;
  background:
    linear-gradient(135deg, #ffffff 0%, var(--cyan-soft) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.text-link {
  align-self: end;
  color: var(--blue-dark);
  font-weight: 900;
  transition: color 160ms ease;
}

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

.text-link::after {
  content: " →";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: start;
}

.why-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li,
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334f66;
  font-size: var(--fs-body);
  line-height: 1.65;
}

.why-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 5px rgba(47, 198, 223, 0.12);
}

.info-card {
  display: grid;
  gap: 16px;
}

.info-card strong {
  color: var(--navy);
  font-size: var(--fs-card-title);
  font-weight: 800;
}

.area-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(177, 204, 221, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(232, 249, 252, 0.92), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.area-tag {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--navy);
  font-size: var(--fs-pill);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(177, 204, 221, 0.72);
  box-shadow: 0 12px 26px rgba(7, 31, 56, 0.07);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 26px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    radial-gradient(circle at right top, rgba(47, 198, 223, 0.3), transparent 18rem),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 58%, var(--blue-dark) 100%);
  box-shadow:
    0 28px 76px rgba(7, 31, 56, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel h2 {
  font-size: var(--fs-section-title);
  line-height: var(--lh-title);
}

.cta-panel p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  opacity: 0.86;
}

.cta-panel .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-summary {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-summary a,
.contact-summary span {
  color: var(--white);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.page-hero {
  padding: 64px 0 34px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: var(--fs-subpage-title);
  line-height: var(--lh-tight);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: var(--fs-pill);
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-dark);
}

.breadcrumb a:hover {
  color: var(--blue);
}

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

.detail-card {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.detail-card::before,
.category-card::before,
.contact-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: 0.72;
}

.detail-card p {
  margin-bottom: 0;
}

.detail-card h2 {
  margin-bottom: 8px;
  font-size: var(--fs-card-title);
  line-height: 1.25;
  letter-spacing: -0.014em;
}

.category-grid {
  display: grid;
  gap: 20px;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.65fr);
  gap: 24px;
  overflow: hidden;
}

.category-card h2 {
  font-size: var(--fs-category-title);
  line-height: var(--lh-title);
}

.service-list,
.check-list,
.footer-list,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.service-list li {
  padding: 11px 13px;
  border: 1px solid rgba(177, 204, 221, 0.54);
  border-radius: 13px;
  color: #315069;
  font-size: var(--fs-pill);
  font-weight: 600;
  line-height: 1.3;
  background: rgba(245, 250, 253, 0.88);
}

.check-list {
  display: grid;
  gap: 10px;
}

.services-page .page-hero {
  padding: 52px 0 22px;
}

.services-page .page-hero h1 {
  max-width: 920px;
  font-size: var(--fs-subpage-title);
  line-height: var(--lh-tight);
  letter-spacing: -0.036em;
}

.services-page .page-hero .lead {
  max-width: 820px;
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.services-page .page-hero + .section {
  padding-top: 34px;
}

.services-page .section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.services-page .category-grid {
  gap: 16px;
}

.services-page .category-card {
  grid-template-columns: minmax(0, 0.86fr) minmax(270px, 0.68fr);
  gap: 20px;
  padding: 22px 24px 22px 26px;
  border-color: rgba(177, 204, 221, 0.62);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(7, 31, 56, 0.07);
}

.services-page .category-card::before {
  width: 3px;
  opacity: 0.5;
}

.services-page .category-card h2 {
  max-width: 13.5em;
  margin-bottom: 12px;
  font-size: var(--fs-category-title);
  line-height: var(--lh-title);
  letter-spacing: -0.028em;
}

.services-page .category-card p {
  margin-bottom: 0;
  font-size: var(--fs-card-body);
  line-height: var(--lh-card);
}

.services-page .service-list {
  align-content: start;
  gap: 8px;
}

.services-page .service-list li {
  min-width: 0;
  padding: 9px 11px;
  border-radius: 11px;
  font-size: var(--fs-pill);
  line-height: 1.35;
}

.services-page .section-light .split {
  align-items: center;
  gap: 28px;
}

.services-page .section-light h2 {
  max-width: 12.5em;
  font-size: var(--fs-section-title);
  line-height: var(--lh-title);
}

.services-page .section-light p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.services-page .check-list {
  gap: 8px;
}

.services-page .check-list li {
  padding-left: 26px;
  font-size: var(--fs-body);
}

.services-page .check-list li::before {
  top: 0.48em;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px rgba(47, 198, 223, 0.1);
}

.services-page .cta-panel {
  padding: 30px;
  gap: 24px;
}

.services-page .cta-panel h2 {
  max-width: 12em;
  font-size: var(--fs-section-title);
  line-height: var(--lh-title);
}

.services-page .cta-panel p:not(.eyebrow) {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 18px;
  box-shadow: none;
}

.contact-item strong {
  color: var(--navy);
  font-size: var(--fs-body);
  font-weight: 800;
}

.contact-item a {
  color: var(--blue-dark);
  font-size: var(--fs-body);
  font-weight: 800;
}

.contact-item a:hover {
  color: var(--blue);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-card {
  --map-height: 360px;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(177, 204, 221, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 253, 0.9)),
    var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.map-card-compact {
  --map-height: 380px;
}

.map-card-large {
  --map-height: 420px;
  grid-template-columns: 1fr;
  padding: 22px;
}

.map-card-content {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.map-card-content h2,
.map-card-content p {
  margin: 0;
}

.map-card-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.map-embed {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(177, 204, 221, 0.66);
  border-radius: 22px;
  background: var(--cyan-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: var(--map-height);
  min-height: 360px;
  border: 0;
}

.site-footer {
  padding: 54px 0 96px;
  background:
    linear-gradient(180deg, #f8fcfe 0%, #eef6fb 100%);
  border-top: 1px solid rgba(177, 204, 221, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.2fr;
  gap: 28px;
}

.footer h2,
.footer h3 {
  margin-bottom: 12px;
  font-size: var(--fs-footer-title);
  font-weight: 800;
}

.footer p,
.footer a,
.footer-list li {
  font-size: var(--fs-footer);
  line-height: 1.7;
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-list a:hover {
  color: var(--blue-dark);
}

.footer-bottom {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(177, 204, 221, 0.7);
  color: var(--muted);
  font-size: var(--fs-footer);
}

.footer-bottom p {
  margin: 0;
}

.site-credit {
  font-size: var(--fs-credit);
  color: #72879a;
  line-height: 1.5;
}

.site-credit a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.site-credit a:hover {
  text-decoration: underline;
}

.mobile-callbar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(177, 204, 221, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(7, 31, 56, 0.2);
  backdrop-filter: blur(14px);
}

.mobile-callbar .button {
  min-height: 48px;
  padding: 0 12px;
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .site-header {
    gap: 8px;
    padding-right: 10px;
    padding-left: 12px;
  }

  .brand-logo {
    width: 132px;
  }

  .site-nav {
    gap: 1px;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0 7px;
    font-size: 13.5px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13.5px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 96px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 46px;
    font-size: var(--fs-nav);
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  .hero-grid,
  .split,
  .cta-panel,
  .category-card,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-page {
    padding-bottom: 96px;
  }

  .services-page .category-card {
    grid-template-columns: 1fr;
  }

  .services-page .category-card > div,
  .services-page .service-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

  .hero {
    padding-top: 42px;
  }

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

  .area-band {
    grid-template-columns: 1fr;
  }

  .mobile-callbar {
    display: grid;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  :root {
    --fs-eyebrow: 12px;
    --fs-body: 15.5px;
    --fs-card-body: 15px;
    --fs-body-lg: 16px;
    --fs-nav: 15px;
    --fs-button: 15px;
    --fs-card-title: 20px;
    --fs-section-title: 32px;
    --fs-page-title: 38px;
    --fs-subpage-title: 38px;
    --fs-category-title: 30px;
    --fs-pill: 14px;
    --fs-footer-title: 17px;
    --fs-footer: 15px;
    --fs-credit: 13px;
    --lh-body: 1.62;
  }

  .eyebrow {
    letter-spacing: 0.14em;
  }

  .map-card {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .map-embed {
    border-radius: 18px;
  }

  .map-embed iframe {
    height: 300px;
    min-height: 300px;
  }

  .services-page .page-hero {
    padding: 42px 0 18px;
  }

  .services-page .page-hero h1 {
    font-size: var(--fs-subpage-title);
    line-height: 1.1;
  }

  .services-page .page-hero .lead {
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body);
  }

  .services-page .section,
  .services-page .page-hero + .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .services-page .category-card {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
    padding: 24px;
    box-sizing: border-box;
  }

  .services-page .category-card h2,
  .services-page .section-light h2,
  .services-page .cta-panel h2 {
    max-width: none;
    line-height: var(--lh-title);
  }

  .services-page .category-card h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .services-page .section-light h2,
  .services-page .cta-panel h2 {
    font-size: var(--fs-section-title);
  }

  .services-page .category-card p,
  .services-page .section-light p:not(.eyebrow),
  .services-page .cta-panel p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.65;
  }

  .services-page .service-list {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 22px;
    transform: none;
  }

  .services-page .service-list li {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    font-size: 15.5px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .services-page .cta-panel {
    padding: 22px;
  }
}

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

  .site-header-wrap {
    padding: 10px 0;
  }

  .site-header {
    min-height: 68px;
    padding: 9px 10px 9px 14px;
    border-radius: 22px;
  }

  .brand-logo {
    width: 120px;
    max-width: 44vw;
  }

  h1,
  .page-title {
    font-size: var(--fs-page-title);
    line-height: 1.1;
  }

  .page-hero h1 {
    font-size: var(--fs-subpage-title);
  }

  h2 {
    font-size: var(--fs-section-title);
    line-height: var(--lh-title);
  }

  h3 {
    font-size: var(--fs-card-title);
  }

  .hero-actions,
  .cta-actions,
  .card-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button,
  .card-actions .button,
  .contact-actions .button {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 330px;
    border-radius: 26px;
  }

  .service-device {
    left: 22px;
    right: 22px;
    top: 28px;
    min-height: 126px;
    padding: 20px;
  }

  .fan {
    width: 132px;
    height: 132px;
    right: 26px;
    bottom: 38px;
    border-width: 10px;
  }

  .fan-blade {
    height: 48px;
    transform-origin: center 66px;
  }

  .fan-blade:nth-child(1) {
    transform: translateY(-40px) rotate(0deg);
  }

  .fan-blade:nth-child(2) {
    transform: translateY(-40px) rotate(120deg);
  }

  .fan-blade:nth-child(3) {
    transform: translateY(-40px) rotate(240deg);
  }

  .cool-badge {
    left: 22px;
    right: 110px;
    bottom: 34px;
    padding: 14px;
  }

  .service-card,
  .why-card,
  .info-card,
  .detail-card,
  .category-card,
  .contact-panel,
  .cta-panel,
  .area-band {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .services-page .category-card {
    padding: 22px 20px;
  }

  .services-page .category-card h2 {
    font-size: 27px;
    line-height: 1.14;
  }

  .services-page .service-list li {
    padding: 13px 15px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .services-page {
    padding-bottom: 110px !important;
  }

  .services-page .service-category-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .services-page .service-category-text,
  .services-page .service-category-tags {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .services-page .service-category-text {
    display: block !important;
  }

  .services-page .service-category-text h2 {
    max-width: 100% !important;
    margin: 0 0 12px !important;
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    overflow-wrap: break-word !important;
  }

  .services-page .service-category-text p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    overflow-wrap: break-word !important;
  }

  .services-page .service-category-tags {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .services-page .service-category-tags li,
  .services-page .service-category-tags span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
    font-size: 15.5px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .services-page .service-category-card {
    padding: 22px 20px !important;
  }

  .services-page .service-category-text h2 {
    font-size: 27px !important;
    line-height: 1.14 !important;
  }

  .services-page .service-category-tags li,
  .services-page .service-category-tags span {
    padding: 13px 15px !important;
    font-size: 15px !important;
  }
}

/* =========================================================
   Hizmetler sayfası - güvenli yeni hizmet kartları düzeni
   Eski category-card/service-list yapısından bağımsızdır.
   ========================================================= */
.fs-services-section {
  padding-top: 34px;
}

.fs-services-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.fs-service-card {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
  padding: 38px 40px;
  border: 1px solid rgba(177, 204, 221, 0.72);
  border-left: 4px solid rgba(47, 198, 223, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(7, 31, 56, 0.07);
  box-sizing: border-box;
  overflow: hidden;
}

.fs-service-content,
.fs-service-tags {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.fs-service-content h2 {
  margin: 0 0 18px;
  color: var(--text-dark);
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

.fs-service-content p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: var(--fs-card-body);
  line-height: var(--lh-card);
}

.fs-service-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.fs-service-tag {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(177, 204, 221, 0.58);
  border-radius: 13px;
  background: rgba(245, 250, 253, 0.9);
  color: #315069;
  font-size: var(--fs-pill);
  line-height: 1.3;
  font-weight: 600;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .fs-services-wrap {
    gap: 24px;
  }

  .fs-service-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding: 32px;
  }

  .fs-service-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .services-page {
    padding-bottom: 116px;
  }

  .fs-services-section {
    padding-top: 28px;
  }

  .fs-services-wrap {
    max-width: 100%;
    gap: 22px;
  }

  .fs-service-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .fs-service-content h2 {
    margin-bottom: 14px;
    font-size: 27px;
    line-height: 1.14;
    letter-spacing: -0.03em;
  }

  .fs-service-content p {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.62;
  }

  .fs-service-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .fs-service-tag {
    width: 100%;
    min-height: auto;
    padding: 13px 15px;
    font-size: 15px;
    line-height: 1.34;
  }
}

@media (max-width: 390px) {
  .fs-service-card {
    padding: 22px 18px;
  }

  .fs-service-content h2 {
    font-size: 25px;
  }

  .fs-service-tag {
    font-size: 14px;
    padding: 12px 14px;
  }
}
