/* ============================================
   SOLIDAR TİCARET — Premium Industrial Design
   ============================================ */

:root {
  --bg-0: #07080c;
  --bg-1: #0e1018;
  --bg-2: #161a26;
  --bg-3: #1f2433;
  --bg-glass: rgba(14, 16, 24, 0.65);

  --text: #f5f7fb;
  --text-dim: #9aa3b6;
  --text-muted: #5b6478;

  --accent: #ffb800;
  --accent-2: #ff7a1a;
  --accent-soft: #ffe5a1;
  --accent-glow: rgba(255, 184, 0, 0.35);

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);

  --radius: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 76px;
  --container: 1360px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: #0a0a0a;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-0);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  padding: 140px 0;
}

@media (max-width: 768px) {
  section {
    padding: 90px 0;
  }
  .container {
    padding: 0 20px;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(3rem, 9vw, 8.5rem);
}

.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 60ch;
}

.text-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.preloader__logo span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.7s var(--ease-out) forwards;
}

.preloader__logo span:nth-child(1) { animation-delay: 0.05s; }
.preloader__logo span:nth-child(2) { animation-delay: 0.10s; }
.preloader__logo span:nth-child(3) { animation-delay: 0.15s; }
.preloader__logo span:nth-child(4) { animation-delay: 0.20s; }
.preloader__logo span:nth-child(5) { animation-delay: 0.25s; }
.preloader__logo span:nth-child(6) { animation-delay: 0.30s; }
.preloader__logo span:nth-child(7) { animation-delay: 0.35s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.preloader__bar {
  width: 240px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
  position: relative;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-100%);
  animation: load 1.8s var(--ease) forwards 0.4s;
}

@keyframes load {
  to { transform: translateX(0); }
}

.preloader__count {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transition: transform 0.15s var(--ease-out), background 0.2s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 184, 0, 0.55);
  transition: transform 0.25s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.2s;
}

.cursor-ring.hover {
  width: 64px;
  height: 64px;
  border-color: var(--accent);
  background: rgba(255, 184, 0, 0.08);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
  padding: 12px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav__brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 9px;
  color: #0a0a0a;
  flex-shrink: 0;
}

.nav__brand-mark svg {
  width: 22px;
  height: 22px;
}

.nav__brand span:last-child,
.footer__brand span:last-child {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav__links a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 0.25s, border-color 0.25s;
}

.nav__lang:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.nav__lang.active {
  color: var(--accent);
  border-color: rgba(255, 184, 0, 0.35);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 22px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s var(--ease-out);
}

.nav__cta:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.nav__cta-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  color: var(--accent);
  border-radius: 50%;
}

.nav__cta-icon svg {
  width: 13px;
  height: 13px;
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.nav__burger span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav.open .nav__burger span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links,
  .nav__lang { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    margin-top: 12px;
    padding: 16px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
  }
  .nav.open .nav__links a {
    padding: 14px 18px;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(255, 184, 0, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(255, 122, 26, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  z-index: -1;
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(255, 184, 0, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-size: clamp(3rem, 11vw, 10rem);
  max-width: 14ch;
}

.hero__title span {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero__title span > i {
  font-style: normal;
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise 1.2s var(--ease-out) forwards;
}

.hero__title .line-2 i { animation-delay: 0.15s; }
.hero__title .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes heroRise {
  to { transform: translateY(0); }
}

.hero__meta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .hero__meta {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
  }
}

.hero__lede {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 52ch;
}

.hero__lede strong {
  color: var(--text);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn--primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #0a0a0a;
  color: var(--accent);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out);
}

.btn:hover .btn__icon {
  transform: rotate(45deg);
}

.btn--ghost .btn__icon {
  background: var(--accent);
  color: #0a0a0a;
}

.btn__icon svg {
  width: 14px;
  height: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border-strong);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s infinite var(--ease);
}

@keyframes scrollLine {
  to { top: 100%; }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  padding: 32px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: fit-content;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.marquee__item.dim {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-dim);
}

.marquee__sep {
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  background: var(--bg-1);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
}

.about__text p {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.about__text p strong {
  color: var(--text);
  font-weight: 500;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  transition: border-color 0.25s, color 0.25s;
}

.pill:hover {
  border-color: var(--accent);
  color: var(--text);
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.about__visual-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about__visual-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.about__visual-stat {
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
  z-index: 2;
}

.about__visual-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__visual-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  background: var(--bg-0);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), background 0.4s, border-color 0.4s;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at var(--mx, 50%) var(--my, 50%), rgba(255, 184, 0, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover {
  background: var(--bg-2);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

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

.service-card__num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.service-card__desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.service-card__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.30);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  z-index: 2;
}

.service-card__link:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.service-card__link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s var(--ease-out);
}

.service-card__link:hover svg {
  transform: translate(2px, -2px);
}

.service-card__arrow {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s var(--ease-out);
  flex-shrink: 0;
}

.service-card:hover .service-card__arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: rotate(-45deg);
}

.service-card__arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
  .service-card__arrow {
    width: 52px;
    height: 52px;
    justify-self: end;
  }
}

/* ============================================
   STATS
   ============================================ */

.stats {
  background: var(--bg-1);
  padding: 100px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 22ch;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  background: var(--bg-0);
}

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

@media (max-width: 880px) {
  .features__grid { grid-template-columns: 1fr; }
}

.feature {
  padding: 36px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--bg-2);
}

.feature__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.18), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 16px;
  color: var(--accent);
}

.feature__icon svg {
  width: 26px;
  height: 26px;
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.feature__desc {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(255, 184, 0, 0.08), transparent 60%),
    radial-gradient(600px 400px at 90% 80%, rgba(255, 122, 26, 0.06), transparent 60%);
  pointer-events: none;
}

.contact__container {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact__map {
  position: relative;
  height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.85) saturate(0.7);
}

.contact__map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 20px 24px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact__map-overlay div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact__map-overlay div span {
  font-size: 13px;
  color: var(--text-dim);
}

.contact__map-overlay a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}

.contact__map-overlay a:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.contact__map-overlay a svg { width: 12px; height: 12px; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.3s;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--bg-3);
}

.contact-item__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.18), rgba(255, 122, 26, 0.06));
  border: 1px solid rgba(255, 184, 0, 0.22);
  border-radius: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item__icon svg { width: 22px; height: 22px; }

.contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.contact-item__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.01em;
  word-break: break-word;
}

.contact-item__arrow {
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.contact-item:hover .contact-item__arrow {
  color: var(--accent);
  transform: rotate(-45deg);
}

.contact-item__arrow svg { width: 18px; height: 18px; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand-col { grid-column: 1 / -1; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.footer__about {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 42ch;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.25s;
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer__legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__legal strong {
  color: var(--text-dim);
  font-weight: 500;
}

.footer__credit {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOATING
   ============================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: waPulse 2.4s infinite;
  transition: transform 0.3s var(--ease-out);
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg { width: 28px; height: 28px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 101;
  pointer-events: none;
}

.scroll-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 18px rgba(255, 184, 0, 0.6);
  transition: width 0.12s linear;
  transform-origin: left center;
  border-radius: 0 3px 3px 0;
}

/* ============================================
   FOCUS RINGS (a11y)
   ============================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn:focus-visible,
.nav__cta:focus-visible,
.contact-form__submit:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}

/* ============================================
   CONTACT FORM LAYOUT (form-grid + channels + full map)
   ============================================ */

.contact__form-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 980px) {
  .contact__form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__channels .contact-item {
  padding: 18px 22px;
}

.contact__channels .contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.contact__channels .contact-item__icon svg {
  width: 19px;
  height: 19px;
}

.contact__channels .contact-item__value {
  font-size: 0.95rem;
}

/* Full-width map below form */

.contact__map--full {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.contact__map--full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.85) saturate(0.7);
}

@media (max-width: 600px) {
  .contact__map--full { height: 360px; }
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  position: relative;
  padding: 36px 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 26px 22px 24px;
    border-radius: var(--radius-md);
  }
}

.contact-form__fields {
  display: grid;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; gap: 20px; }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-form__field > label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.contact-form__req {
  color: var(--accent);
  font-weight: 600;
  margin-left: 2px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font: inherit;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 100%;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.contact-form__field input:hover,
.contact-form__field select:hover,
.contact-form__field textarea:hover {
  border-color: var(--border-strong);
  background: rgba(31, 36, 51, 0.7);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.18);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa3b6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form__field select option {
  background: var(--bg-2);
  color: var(--text);
}

.contact-form__field input[aria-invalid="true"],
.contact-form__field textarea[aria-invalid="true"],
.contact-form__field select[aria-invalid="true"] {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
}

.contact-form__field input[aria-invalid="true"]:focus,
.contact-form__field textarea[aria-invalid="true"]:focus,
.contact-form__field select[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.20);
}

/* Honeypot — visually hidden but accessible to bots */
.contact-form__hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Consent checkbox */
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  cursor: pointer;
  user-select: none;
}

.contact-form__consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  margin-top: 1px;
}

.contact-form__consent input[type="checkbox"]:hover {
  border-color: var(--accent);
}

.contact-form__consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.contact-form__consent input[type="checkbox"]:checked::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #0a0a0a;
  clip-path: polygon(20% 50%, 45% 75%, 80% 30%, 80% 30%, 80% 30%, 80% 30%, 45% 80%, 20% 55%);
}

.contact-form__consent input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.25);
  outline: none;
}

.contact-form__consent a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 184, 0, 0.30);
}

.contact-form__consent a:hover {
  border-bottom-color: var(--accent);
}

/* Submit action */
.contact-form__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 6px;
}

.contact-form__submit {
  width: fit-content;
  cursor: pointer;
  position: relative;
}

.contact-form__submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form__btn-icon {
  position: relative;
}

.contact-form__btn-arrow {
  transition: opacity 0.2s;
}

.contact-form__btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: spin 0.8s linear infinite paused;
}

.contact-form.is-loading .contact-form__btn-arrow { opacity: 0; }
.contact-form.is-loading .contact-form__btn-spinner {
  opacity: 1;
  animation-play-state: running;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.contact-form__status {
  font-size: 13px;
  color: var(--text-dim);
  min-height: 1.5em;
  margin: 0;
}

.contact-form__status.is-error {
  color: #f87171;
}

/* Success state */
.contact-form__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.10), rgba(255, 122, 26, 0.04));
  border: 1px solid rgba(255, 184, 0, 0.30);
  border-radius: var(--radius-md);
}

.contact-form__success[hidden] { display: none !important; }

.contact-form.is-success .contact-form__fields { display: none; }
.contact-form.is-success .contact-form__success {
  display: flex;
  animation: successIn 0.5s var(--ease-out);
}

@keyframes successIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-form__success-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255, 184, 0, 0.25);
}

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

.contact-form__success-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.contact-form__success p {
  color: var(--text-dim);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-form__success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-form__success-actions .btn {
  padding: 12px 18px 12px 22px;
  font-size: 14px;
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
   ============================================ */

@media (max-width: 980px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 80px 32px 40px;
    background: var(--bg-1);
    border: none;
    border-radius: 0;
    z-index: 99;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav.open .nav__links {
    display: flex;
    animation: navOverlayIn 0.4s var(--ease-out);
  }

  .nav.open .nav__links a {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 16px 0;
    text-align: left;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none;
    width: 100%;
    transition: color 0.25s, padding-left 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
    animation: navLinkIn 0.5s var(--ease-out) forwards;
  }

  .nav.open .nav__links li:nth-child(1) a { animation-delay: 0.08s; }
  .nav.open .nav__links li:nth-child(2) a { animation-delay: 0.14s; }
  .nav.open .nav__links li:nth-child(3) a { animation-delay: 0.20s; }
  .nav.open .nav__links li:nth-child(4) a { animation-delay: 0.26s; }
  .nav.open .nav__links li:nth-child(5) a { animation-delay: 0.32s; }

  .nav.open .nav__links a:hover {
    color: var(--accent);
    padding-left: 8px;
  }

  .nav.open .nav__brand,
  .nav.open .nav__cta,
  .nav.open .nav__burger {
    position: relative;
    z-index: 100;
  }

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

@keyframes navOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes navLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MOBILE POLISH
   ============================================ */

@media (max-width: 600px) {
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav__cta { padding: 8px 14px 8px 18px; font-size: 13px; }
  .nav__cta-icon { width: 24px; height: 24px; }
  .nav__cta-icon svg { width: 11px; height: 11px; }

  .hero {
    padding: calc(var(--nav-h) + 40px) 0 80px;
  }

  .hero__tag {
    font-size: 12px;
    padding: 6px 12px 6px 10px;
    margin-bottom: 24px;
  }

  .hero__meta {
    margin-top: 36px;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: space-between;
    padding: 14px 18px 14px 22px;
    font-size: 14px;
  }

  .hero__scroll { display: none; }

  .marquee { padding: 22px 0; }

  .section-head { gap: 18px; margin-bottom: 44px; }

  .service-card {
    padding: 24px 20px;
    gap: 18px;
  }

  .service-card__num { font-size: 15px; }
  .service-card__title { font-size: 1.4rem; }
  .service-card__arrow { width: 44px; height: 44px; }

  .stats { padding: 70px 0; }
  .stats__grid { gap: 28px 24px; }

  .feature { padding: 28px 22px; }

  .footer { padding: 60px 0 32px; }
  .footer__top { gap: 32px; margin-bottom: 40px; }
  .footer__brand { font-size: 18px; }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ============================================
   TABLET POLISH (881-1100px)
   ============================================ */

@media (min-width: 881px) and (max-width: 1100px) {
  .nav__links a { padding: 9px 16px; font-size: 13.5px; }
  .service-card { padding: 32px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   TOUCH DEVICE TWEAKS
   ============================================ */

@media (hover: none) {
  .cursor-dot,
  .cursor-ring { display: none; }

  .service-card::before { display: none; }

  .btn:hover { transform: none; }
  .service-card:hover { transform: none; }
  .feature:hover { transform: none; }
  .contact-item:hover { transform: none; }

  /* Slightly bigger tap targets */
  .nav__cta { min-height: 44px; }
  .btn { min-height: 48px; }
  .contact-item { min-height: 64px; }
}

/* ============================================
   PRINT STYLES (KVKK / Privacy)
   ============================================ */

@media print {
  body { background: #fff; color: #000; }
  .nav, .footer, .wa-float, .cursor-dot, .cursor-ring, .scroll-progress, .preloader { display: none !important; }
  .legal h1, .legal h2, .legal h3 { color: #000; }
  .legal p, .legal li { color: #333; }
  .legal a { color: #000; text-decoration: underline; }
  .legal__contact { background: #f8f8f8; border-color: #ccc; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title span > i { transform: translateY(0); }
  .scroll-progress > span { transition: none; }
}
