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

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

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

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

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

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

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #002347;
  --navy-80: #002347cc;
  --orange: #ff8c00;
  --orange-l: #ffa833;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --slate: #e6eeff;
  --slate-2: #dde9ff;
  --text: #0d1c2f;
  --muted: #43474e;
  --green: #16a34a;
  --whatsapp: #25d366;
  --border: #c4c6cf33;
  --font-head: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(13, 28, 47, 0.08);
  --shadow-sm: 0 4px 20px rgba(13, 28, 47, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

/* â”€â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

/* â”€â”€â”€ UTILS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.blueprint-bg {
  background-image: radial-gradient(circle, #c4c6cf40 1px, transparent 1px);
  background-size: 32px 32px;
  background-color: var(--off-white);
}

/* â”€â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  padding: 12px 16px 0;
  --menu-top: 92px;
}
@media (min-width: 768px) {
  .site-header {
    padding: 14px 28px 0;
  }
}
@media (min-width: 1200px) {
  .site-header {
    padding: 14px 40px 0;
  }
}
.site-header.is-scrolled {
  padding-top: 8px;
  --menu-top: 82px;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 76px;
  padding: 0 12px 0 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0, 35, 71, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 44px rgba(2, 18, 40, 0.28);
  backdrop-filter: blur(10px);
  transition: height 0.25s, padding 0.25s, background 0.25s, box-shadow 0.25s, border-color 0.25s;
}
@media (min-width: 768px) {
  .header-inner {
    padding: 0 16px 0 22px;
  }
}
.site-header.is-scrolled .header-inner {
  height: 64px;
  background: rgba(0, 28, 56, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(2, 18, 40, 0.34);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.logo span {
  color: var(--orange);
}

.main-nav {
  display: none;
}
@media (min-width: 1100px) {
  .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
  }
  .main-nav a {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #cfdae9;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .main-nav a:hover {
    color: var(--white);
  }
  .main-nav a.active {
    color: var(--orange);
    border-color: var(--orange);
  }
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #deebff;
  font-weight: 700;
  font-size: 0.84rem;
}
.phone-link svg {
  color: var(--orange);
}
@media (min-width: 1280px) {
  .phone-link {
    display: inline-flex;
  }
}

#header-cta {
  display: none;
}
@media (min-width: 1100px) {
  #header-cta {
    display: inline-flex;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .site-header.is-scrolled #header-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.header-wa {
  padding-inline: 12px;
}
#wa-text-lg {
  display: none;
}
@media (min-width: 1280px) {
  .site-header.is-scrolled #wa-text-lg {
    display: inline;
  }
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  position: relative;
}
.mobile-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.2s;
}
.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}
.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}
@media (min-width: 1100px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-nav-contact {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1099px) {
  .main-nav {
    position: fixed;
    top: var(--menu-top);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
    background: #071d36;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(2, 18, 40, 0.38);
    max-height: calc(100vh - var(--menu-top) - 16px);
    overflow: auto;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
  }
  .main-nav.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 12px 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #d7e3f3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav a.active {
    color: var(--orange);
  }
  .mobile-nav-contact {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 10px;
  }
  .mobile-nav-contact .btn {
    width: 100%;
    justify-content: center;
  }
  .mobile-phone-link {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #cbd5e1;
    font-weight: 700;
    font-size: 0.9rem;
  }
  #header-cta,
  .phone-link,
  #wa-text-lg {
    display: none !important;
  }
}

section[id] {
  scroll-margin-top: 110px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: filter 0.2s, transform 0.15s;
}
.btn:hover {
  filter: brightness(1.1);
}
.btn:active {
  transform: scale(0.97);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}
.btn-xl {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 860px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 108px;
  padding-bottom: 52px;
  background: #031327;
}
.hero .container {
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.02);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 140, 0, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(0, 10, 24, 0.28), rgba(0, 10, 24, 0.5));
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(0, 20, 40, 0.92) 22%,
    rgba(0, 20, 40, 0.72) 52%,
    rgba(0, 20, 40, 0.36) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  margin-top: clamp(18px, 5vh, 64px);
  max-width: min(700px, 100%);
  padding: clamp(24px, 3vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(160deg, rgba(2, 24, 48, 0.58), rgba(3, 32, 61, 0.42));
  box-shadow: 0 20px 52px rgba(0, 13, 30, 0.36);
  backdrop-filter: blur(4px);
}
.hero-badge {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(255, 140, 0, 0.16);
  border: 1px solid rgba(255, 168, 51, 0.65);
  color: #ffd191;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.18;
  margin-bottom: 16px;
  max-width: none;
  text-wrap: balance;
}
.hero-line {
  display: block;
}
@media (min-width: 640px) {
  .hero-line {
    white-space: nowrap;
  }
}
@media (min-width: 1100px) {
  .hero-title {
    font-size: 2.8rem;
  }
}
.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #d6e2f0;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 54ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-ctas .btn {
  min-height: 50px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.trust-item {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #e6edf7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
  min-width: 0;
}
.trust-item svg {
  color: var(--orange);
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .hero-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1099px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .hero-content {
    margin-top: 24px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.78rem, 4.9vw, 2.36rem);
    line-height: 1.18;
  }
}
@media (max-width: 639px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .hero-content {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6.6vw, 1.92rem);
    line-height: 1.18;
  }

  .hero-sub {
    font-size: 0.96rem;
    margin-bottom: 22px;
  }

  .hero-ctas {
    margin-bottom: 22px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€â”€ STATS BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item {
  padding: 20px 24px;
  background: var(--navy);
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* â”€â”€â”€ SECTION COMMON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .h2 {
  margin-top: 8px;
  color: var(--navy);
}

/* â”€â”€â”€ CATEGORIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cats-section {
  background: var(--white);
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .cats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.cat-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-card:hover img {
  transform: scale(1.08);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 23, 47, 0.9) 0%,
    rgba(0, 23, 47, 0.15) 60%,
    transparent 100%
  );
}
.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
}
.cat-tag {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.cat-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

/* â”€â”€â”€ KEYWORDS BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Ads-plan aligned: highlight top search intent keywords */
.kw-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #003a6e 100%);
  padding: 40px 0;
  overflow: hidden;
}
.kw-scroll-track {
  display: flex;
  gap: 24px;
  animation: scrollx 30s linear infinite;
  width: max-content;
}
.kw-scroll-track:hover {
  animation-play-state: paused;
}
@keyframes scrollx {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.kw-chip {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #94c4ff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.kw-chip:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.kw-chip.hot {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* â”€â”€â”€ PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.products-section {
  background: var(--off-white);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
}
.product-body {
  padding: 24px;
}
.product-brand {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  min-height: 48px;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.in-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}
.in-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.product-delivery {
  font-size: 0.78rem;
  color: var(--muted);
}
.product-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--slate);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.product-cta:hover {
  background: var(--orange);
  color: var(--white);
}

/* â”€â”€â”€ WHY US â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-section {
  background: var(--slate);
}
.why-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-item {
  display: flex;
  gap: 20px;
}
.why-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  color: var(--orange);
}
.why-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-visual {
  width: 100%;
}
.why-visual-stack {
  width: 100%;
  display: grid;
  gap: 16px;
}
.why-img {
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.why-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.why-img.tall {
  height: clamp(280px, 32vw, 360px);
}
.why-img.short {
  min-height: 180px;
}
.why-stat-box {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}
.why-stat-box.orange {
  background: var(--orange);
  color: var(--white);
}
.why-stat-box.navy {
  background: var(--navy);
  color: var(--white);
}
.why-stat-box.light {
  background: var(--slate-2);
}
.why-stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
}
.why-stat-num.navy-text {
  color: var(--navy);
}
.why-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}
.why-stat-label.muted-text {
  color: var(--muted);
}

@media (max-width: 1023px) {
  .why-grid {
    gap: 40px;
  }

  .why-features {
    gap: 28px;
  }
}

@media (max-width: 639px) {
  .why-visual-grid {
    grid-template-columns: 1fr;
  }

  .why-img.tall {
    height: 260px;
  }

  .why-img.short,
  .why-stat-box {
    min-height: 150px;
  }
}

/* style.css'e eklenecek - BRANDS section'Ä±ndan Ã¶nce */

/* â”€â”€â”€ SERVICE AREA / COVERAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.coverage-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.coverage-wrapper {
  display: grid;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .coverage-wrapper {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

/* LEFT CONTENT */
.coverage-content .h2 {
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.coverage-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.coverage-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.coverage-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: var(--white);
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* RIGHT MAP AREA */
.coverage-map-area {
  position: relative;
}

.map-hub-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 35, 71, 0.15);
  border: 2px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hub-status {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hub-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.map-visual {
  position: relative;
  background: linear-gradient(135deg, #8b9199 0%, #a3a9b3 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 35, 71, 0.2);
}

/* Grid Pattern Background */
.map-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(35deg);
  transform-origin: center center;
  pointer-events: none;
}

/* District Cards */
.district-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  z-index: 2;
}

@media (min-width: 640px) {
  .district-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.district-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 35, 71, 0.08);
}

.district-card svg {
  color: var(--orange);
  flex-shrink: 0;
}

.district-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.district-card:active {
  transform: translateY(-2px) scale(0.98);
}

/* Bottom Stats Bar */
.coverage-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 48px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 35, 71, 0.3);
}

@media (min-width: 768px) {
  .coverage-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(255, 140, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  color: var(--orange);
}

.stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: #94c4ff;
  font-weight: 600;
  line-height: 1.3;
}

.map-visual-png {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 24px 64px rgba(0, 35, 71, 0.2);
}

.map-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-visual-png .district-cards {
  position: relative;
  z-index: 2;
  padding: 110px 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .map-visual-png .district-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .map-hub-badge {
    top: 16px;
    right: 16px;
    padding: 10px 16px;
  }
  
  .hub-status {
    font-size: 0.6rem;
  }
  
  .hub-name {
    font-size: 0.85rem;
  }
  
  .map-visual {
    padding: 48px 24px;
    min-height: 380px;
  }
}

@media (max-width: 639px) {
  .coverage-stats {
    padding: 32px 24px;
    gap: 28px;
  }
  
  .stat-box {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-icon {
    width: 64px;
    height: 64px;
  }
  
  .district-cards {
    grid-template-columns: 1fr;
  }
  
  .district-card {
    padding: 14px 18px;
    font-size: 0.85rem;
  }
}

/* â”€â”€â”€ BRANDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.brands-section {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.4s, opacity 0.4s;
}
.brands-row:hover {
  filter: grayscale(0);
  opacity: 1;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

/* â”€â”€â”€ PROJECT REFERENCES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.projects-section {
  background: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.project-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.project-card:hover .project-img img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.project-category {
  display: inline-block;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.project-body {
  padding: 28px;
}
.project-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.project-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.project-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--slate);
}
.project-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.project-stat svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-section {
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--orange);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--slate);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-avatar svg {
  color: var(--navy);
}
.author-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-title {
  font-size: 0.85rem;
  color: var(--muted);
}

/* â”€â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  background: var(--slate);
}
.faq-wrapper {
  display: grid;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 5fr 7fr;
    gap: 80px;
  }
}

.faq-left .h2 {
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 16px;
}
.faq-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

.faq-cta-box {
  background: var(--navy);
  padding: 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}
.faq-cta-box svg {
  color: var(--orange);
  margin-bottom: 16px;
}
.faq-cta-box h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.faq-cta-box p {
  color: #94c4ff;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--orange);
}
.faq-question svg {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 28px 28px;
}
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
}

/* Responsive FAQ */
@media (max-width: 1023px) {
  .faq-cta-box {
    padding: 28px;
  }
  .faq-question {
    padding: 20px;
    font-size: 0.95rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* â”€â”€â”€ LEAD FORM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-section {
  background: var(--off-white);
}
.form-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 23, 47, 0.14);
  display: grid;
}
@media (min-width: 1024px) {
  .form-card {
    grid-template-columns: 1fr 1fr;
  }
}
.form-left {
  background: var(--navy);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-left .h2 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 20px;
}
.form-left-sub {
  color: #93b5d8;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.form-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.form-check svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check span {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.form-right {
  background: var(--white);
  padding: 60px 52px;
}
.form-right-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-right-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 36px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--slate);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-consent {
  margin-bottom: 12px;
}
.consent-label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.kvkk-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.kvkk-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 20px;
}
.kvkk-modal[hidden] {
  display: none !important;
}
.kvkk-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 14, 28, 0.58);
}
.kvkk-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(78vh, 640px);
  overflow: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px 18px;
  box-shadow: 0 22px 50px rgba(0, 16, 35, 0.32);
}
.kvkk-modal-card h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.kvkk-modal-card p {
  margin: 0 0 12px;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}
.kvkk-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  line-height: 1;
}
body.kvkk-open {
  overflow: hidden;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
}
.form-submit:hover {
  filter: brightness(1.1);
}
.form-submit:active {
  transform: scale(0.98);
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* â”€â”€â”€ FINAL CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-section .h2 {
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(245, 158, 11, 0.22), transparent 60%),
    linear-gradient(180deg, #0b1728 0%, #07121f 100%);
  padding: 84px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer-landing {
  max-width: 940px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  text-align: center;
}
.footer-kicker {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 158, 11, 0.12);
}
.footer-title {
  margin: 18px 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--white);
}
.footer-sub {
  margin: 14px auto 0;
  max-width: 700px;
  color: #9fb0c5;
  font-size: 1rem;
  line-height: 1.7;
}
.footer-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.footer-actions .btn {
  min-width: 240px;
  justify-content: center;
}
.footer-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.footer-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c7d4e3;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-meta {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
  justify-items: center;
}
.footer-copy {
  margin: 0;
  color: #7f93aa;
  font-size: 0.82rem;
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 64px 0 30px;
  }

  .footer-landing {
    padding: 34px 20px;
    border-radius: 18px;
  }

  .footer-sub {
    font-size: 0.92rem;
  }

  .footer-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-points {
    gap: 8px;
  }

  .footer-points span {
    width: 100%;
    justify-content: center;
  }
}

/* â”€â”€â”€ FLOATING WHATSAPP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-label {
  background: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  animation: pulse-wa 3s ease-in-out infinite;
}
.wa-float:hover .wa-btn {
  transform: scale(1.1);
  animation: none;
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.7);
  }
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .kw-scroll-track,
  .wa-btn {
    animation: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* â”€â”€â”€ ICONS (inline SVG helpers) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* â”€â”€â”€ RESPONSIVE TWEAKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 639px) {
  .btn-xl {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-left,
  .form-right {
    padding: 40px 28px;
  }
}



