:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --text: #1f2937;
  --muted: #4b5563;
  --primary: #0b5bd3;
  --primary-dark: #0949a8;
  --accent: #1f9d7a;
  --border: #dbe1ea;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  --container: 1140px;
  --container-hero: 1360px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 8% 10%, rgba(11, 91, 211, 0.08), transparent 32%),
    radial-gradient(circle at 92% 16%, rgba(31, 157, 122, 0.07), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 42%, #f7fbfa 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Siteye hafif canlılık katmak için yumuşak geçişler */
body,
.card,
.service-card,
.blog-card,
.region-hub-card,
.region-group,
.process-card,
.faq-item {
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.22s ease, text-shadow 0.3s ease, filter 0.22s ease, opacity 0.2s ease;
}

a:hover {
  text-decoration: none;
  color: var(--primary-dark);
  filter: brightness(1.07);
  text-shadow: 0 0 20px rgba(11, 91, 211, 0.24);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

a.btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-whatsapp:hover {
  filter: none;
  text-shadow: none;
}

a.btn-primary:hover {
  color: #fff;
}

a.btn-secondary:hover {
  color: var(--primary);
}

a.btn-whatsapp:hover {
  color: #fff;
}

a.brand:hover {
  filter: none;
  text-shadow: none;
  color: var(--text);
  opacity: 0.92;
}

a.floating-cta__btn:hover {
  filter: none;
  text-shadow: none;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  a {
    transition: color 0.15s ease;
  }

  a:hover {
    filter: none;
    text-shadow: none;
  }

  a.brand:hover {
    opacity: 1;
  }

  .site-nav a:hover,
  .site-footer a:hover,
  #blog-onizleme .blog-card h3 a:hover {
    text-shadow: none;
    filter: none;
  }

  .site-footer a:hover {
    color: #fff;
  }
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  box-sizing: border-box;
}

/* Üst şerit + hero: geniş sütun flex ile yatayda kesin ortalanır */
.site-header .container {
  width: min(100%, var(--container-hero));
  max-width: var(--container-hero);
  margin-inline: 0;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.hero.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero > .container {
  width: min(100%, var(--container-hero));
  max-width: var(--container-hero);
  margin-inline: 0;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.section {
  padding: var(--space-6) 0;
  position: relative;
  overflow-x: clip;
}

.section > .container > h2,
.section > .container > .section-lead,
.section > .container > .region-kicker {
  animation: riseIn 0.55s ease both;
}

.section-alt {
  background:
    linear-gradient(145deg, rgba(238, 244, 255, 0.92), rgba(243, 250, 248, 0.9)),
    var(--bg-alt);
  border-top: 1px solid rgba(210, 223, 244, 0.6);
  border-bottom: 1px solid rgba(210, 223, 244, 0.6);
}

.narrow {
  max-width: 760px;
}

.about-wide {
  max-width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #d8e2f2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 2rem);
}

.about-wide h2 {
  margin-bottom: 0.75rem;
}

.about-wide p {
  max-width: 100%;
  color: #374151;
}

.about-wide p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--space-3);
}

h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-3);
}

p {
  margin-top: 0;
}

.section-lead {
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: var(--space-3);
  top: var(--space-3);
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border);
  padding: var(--space-2) var(--space-3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  min-width: 0;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(200px, 38vw);
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

/* Logo yanı başlık — hero H1 ile aynı tonlar, yavaş akan gradient */
.brand-wordmark {
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  white-space: nowrap;
  background: linear-gradient(
    120deg,
    #0b2c66,
    #0b5bd3 22%,
    #1f9d7a 48%,
    #0b5bd3 72%,
    #0b2c66 100%
  );
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brandWordmarkGradient 14s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .brand-wordmark {
    animation: none;
    background-size: 100% 100%;
  }
}

@keyframes brandWordmarkGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-weight: 600;
}

.site-nav {
  display: none;
}

.site-nav.open {
  display: block;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: var(--space-3);
}

.site-nav a {
  display: block;
  padding: var(--space-2) 0;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.25s ease;
}

.site-nav a:hover {
  color: var(--primary);
  font-weight: 600;
  filter: none;
  text-shadow: 0 2px 18px rgba(11, 91, 211, 0.35);
}

.nav-link.active {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-content h1 {
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, #0b2c66, #0b5bd3 55%, #1f9d7a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.04rem;
  color: #334155;
  max-width: 62ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid #d6e5fb;
  color: #1f3f73;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-grid,
.contact-grid {
  display: grid;
  gap: var(--space-4);
}

.hero-grid {
  width: 100%;
  margin-inline: 0;
}

.hero-grid > * {
  min-width: 0;
}

.hero-media {
  margin: 0;
  padding: 0;
  width: 100%;
  justify-self: stretch;
  align-self: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  filter: blur(6px);
}

.hero::before {
  width: 220px;
  height: 220px;
  background: rgba(11, 91, 211, 0.12);
  top: 10px;
  left: -60px;
}

.hero::after {
  width: 260px;
  height: 260px;
  background: rgba(31, 157, 122, 0.1);
  right: -60px;
  bottom: -30px;
}

.hero-media figcaption {
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media img {
  border: 1px solid #dbe6f7;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.1);
}

.hero-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius);
  border: 1px solid #dbe6f7;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.1);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-illustration.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-media figcaption {
  margin-top: var(--space-2);
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
}

.btn:hover::after {
  left: 130%;
  transition: left 0.45s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1fb857;
}

.trust-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.trust-list li {
  margin-bottom: 0.2rem;
}

.hero-metrics {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-metrics article {
  background: #fff;
  border: 1px solid #d6e3f5;
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
}

.hero-metrics strong {
  color: #0f3f8c;
  font-size: 0.92rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
}

.grid {
  display: grid;
  gap: var(--space-3);
}

.grid > * {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.grid > *.reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card,
.service-card,
.region-card,
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}

.card:hover,
.service-card:hover,
.region-group:hover,
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
}

#blog-onizleme .section-head {
  margin-bottom: var(--space-4);
}

#blog-onizleme .text-link {
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

#blog-onizleme .text-link:hover {
  border-color: var(--primary);
  text-decoration: none;
}

#blog-onizleme .blog-card {
  position: relative;
  overflow: hidden;
  border-color: #d8e2f2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#blog-onizleme .blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

#blog-onizleme .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
  border-color: #bfd2ef;
}

#blog-onizleme .blog-card .meta {
  display: inline-flex;
  align-items: center;
  background: #eef4ff;
  color: #1f3f73;
  border: 1px solid #d6e3fb;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

#blog-onizleme .blog-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

#blog-onizleme .blog-card h3 a {
  color: var(--text);
}

#blog-onizleme .blog-card h3 a:hover {
  color: var(--primary);
  text-decoration: none;
  filter: brightness(1.05);
  text-shadow: 0 0 16px rgba(11, 91, 211, 0.28);
}

#blog-onizleme .blog-card p:last-child {
  margin-bottom: 0;
}

.service-card h3,
.region-card h3 {
  margin-bottom: var(--space-2);
}

#hizmetler .service-card {
  position: relative;
  border-color: #d6e2f3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#hizmetler .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

#hizmetler .service-card:hover {
  transform: translateY(-3px);
  border-color: #b9ceed;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.11);
}

#hizmetler .service-card h3 {
  margin-bottom: 0.45rem;
}

#hizmetler .service-card p {
  margin: 0;
  color: var(--muted);
}

.region-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  background: #eaf2ff;
  border: 1px solid #cfdef6;
  color: #0f458e;
  font-size: 0.8rem;
  font-weight: 700;
}

.region-grid .region-card {
  position: relative;
  border-color: #d5e2f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.region-grid .region-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.region-grid .region-card:hover {
  transform: translateY(-3px);
  border-color: #b7ceed;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.1);
}

.region-grid .region-card h3 {
  margin-bottom: 0.35rem;
}

.region-grid .region-card p {
  margin-bottom: 0.7rem;
}

.region-grid .region-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.region-grid .region-card a::after {
  content: ">";
  font-size: 0.75rem;
}

.region-hub-grid {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: stretch;
}

.region-metrics {
  display: grid;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
}

.region-metrics article {
  background: #ffffff;
  border: 1px solid #d4e2f7;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.region-metrics strong {
  color: #0b3f91;
  font-size: 1rem;
}

.region-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
}

.region-hub-card {
  background: #fff;
  border: 1px solid #cfe0f7;
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.region-hub-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.region-hub-card h3 {
  margin-bottom: 0.45rem;
}

.region-hub-card p {
  margin-bottom: 0.7rem;
  flex: 1;
}

.region-hub-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.region-hub-card a::after {
  content: ">";
  font-size: 0.75rem;
}

.region-groups {
  display: grid;
  gap: var(--space-3);
  align-items: stretch;
}

.region-group {
  background: #fff;
  border: 1px solid #d7e2f1;
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.region-group h3 {
  margin-bottom: 0.35rem;
}

.region-group p {
  color: var(--muted);
  margin-bottom: 0.6rem;
  min-height: 2.4rem;
}

.region-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: var(--space-3);
  margin-top: auto;
}

.region-group li {
  break-inside: avoid;
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.region-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
}

.region-note {
  margin-top: var(--space-3);
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.process-card {
  background: #fff;
  border: 1px solid #d7e2f1;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.07);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #0a3f95;
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.3px;
  margin-bottom: 0.65rem;
}

.process-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid #d7e2f1;
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: #bcd0eb;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.1);
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 3.2rem 1rem 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.faq-item.open .faq-question {
  color: #0a3f95;
  background: #f7faff;
}

.faq-item.open .faq-question::before {
  opacity: 1;
}

.faq-item.open .faq-question::after {
  content: "-";
  background: #dbe9ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  border-top: 1px solid transparent;
}

.faq-answer p {
  margin: 0;
  padding: 0.95rem 1rem 1rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 240px;
  border-top-color: #e3ebf8;
}

.faq-item.open {
  animation: faqPop 0.25s ease;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-list {
  padding-left: 1.1rem;
}

.contact-form {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-4);
}

.contact-form-grid {
  display: grid;
  gap: var(--space-2);
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

/* Bot tuzağı — ekran okuyucu ve klavyeden gizli */
.form-field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.7rem;
  font: inherit;
  margin-bottom: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11, 91, 211, 0.2);
  border-color: var(--primary);
}

.form-message {
  min-height: 1.2rem;
  font-weight: 600;
}

.form-message.error {
  color: #b91c1c;
}

.form-message.success {
  color: #047857;
}

.floating-cta {
  position: fixed;
  right: max(0.65rem, env(safe-area-inset-right, 0px));
  bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  z-index: 95;
  max-width: calc(100vw - 1.3rem - env(safe-area-inset-right, 0px));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}

.floating-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-cta__btn:hover {
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.15);
}

.floating-cta__btn:focus-visible {
  outline: 3px solid rgba(11, 91, 211, 0.45);
  outline-offset: 3px;
}

.floating-cta__btn--whatsapp:focus-visible {
  outline-color: rgba(37, 211, 102, 0.55);
}

.floating-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.floating-cta__btn--call .floating-cta__icon {
  background: rgba(255, 255, 255, 0.22);
}

.floating-cta__btn--whatsapp .floating-cta__icon {
  background: rgba(255, 255, 255, 0.18);
}

.floating-cta__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  padding-right: 0.15rem;
  text-align: left;
}

.floating-cta__title {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.floating-cta__sub {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.88;
}

.floating-cta__btn--call {
  background: linear-gradient(145deg, #0d62e0 0%, var(--primary) 45%, var(--primary-dark) 100%);
  animation: floatCtaCall 3s ease-in-out infinite;
}

.floating-cta__btn--whatsapp {
  background: linear-gradient(145deg, #2fe26f 0%, #25d366 40%, #1fb855 100%);
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta__btn--call {
    animation: none;
  }

  .floating-cta__btn:hover {
    transform: none;
  }
}

@keyframes floatCtaCall {
  0%,
  100% {
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.08),
      0 10px 22px rgba(0, 0, 0, 0.12),
      0 0 0 0 rgba(11, 91, 211, 0.35);
  }
  50% {
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.08),
      0 10px 22px rgba(0, 0, 0, 0.12),
      0 0 0 10px rgba(11, 91, 211, 0);
  }
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding-top: var(--space-5);
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11, 91, 211, 0.22), transparent 70%);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}

.site-footer a {
  color: #e5e7eb;
  transition: color 0.2s ease, text-shadow 0.28s ease, filter 0.2s ease;
}

.site-footer a:hover {
  color: #f9fafb;
  filter: brightness(1.12);
  text-shadow: 0 0 14px rgba(147, 197, 253, 0.45);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid #273244;
  margin-top: var(--space-4);
  padding: var(--space-3) 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.article {
  max-width: 820px;
}

.article p,
.article li {
  color: #374151;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
  }

  .site-nav ul {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    padding: 0;
  }

  .site-nav a {
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(1.75rem, 4vw, 2.75rem);
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero .hero-lead {
    max-width: none;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-cta {
    bottom: max(1.2rem, env(safe-area-inset-bottom, 0px));
    right: max(1.2rem, env(safe-area-inset-right, 0px));
  }

  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-3);
    row-gap: var(--space-2);
  }

  .region-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .region-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .region-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field-full {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes faqPop {
  0% { transform: scale(0.995); }
  100% { transform: scale(1); }
}

@media (min-width: 1024px) {
  .section {
    padding: 4.2rem 0;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.25rem, 5vw, 3.5rem);
    align-items: center;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics article {
    padding: 0.62rem 0.72rem;
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .region-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
