/* Vale Kapında — Clean flat mobile-first landing */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --bg-card: #ffffff;
  --text: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --accent: #1a365d;
  --accent-hover: #2c5282;
  --gold: #b8860b;
  --gold-soft: #fef9e7;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --success: #16a34a;
  --success-soft: #dcfce7;
  --whatsapp: #25d366;
  --radius: 10px;
  --radius-lg: 14px;
  --header-h: 72px;
  --header-total: var(--header-h);
  --sticky-h: 68px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus { top: 12px; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--accent);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.header-bar {
  display: none;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  gap: 12px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.header-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.15s;
}

.header-phone:hover { color: var(--gold-soft); }

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.nav-links-wrap {
  display: contents;
}

@media (min-width: 768px) {
  .nav-links-wrap {
    display: block;
    flex-shrink: 0;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

.logo-icon { width: 32px; height: 32px; }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.logo-name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-name strong { color: var(--gold); font-weight: 800; }

.logo-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta-item { margin-left: 8px; }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 18px !important;
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s !important;
}

.nav-cta:hover {
  background: #c9970c !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.45);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.14); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
}

@media (max-width: 767px) {
  .header-nav {
    position: relative;
    z-index: 1003;
  }

  .nav-links-wrap {
    display: block;
    position: fixed;
    top: var(--header-total);
    right: 0;
    bottom: 0;
    width: min(300px, 88vw);
    z-index: 1002;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  }

  .nav-links-wrap.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    top: var(--header-total);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
    z-index: 1001;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    margin: 0;
    padding: 20px 16px 32px;
    gap: 8px;
    background: var(--accent);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links-wrap.open .nav-links {
    visibility: visible;
  }

  .nav-links li {
    display: list-item;
    width: 100%;
    flex: 0 0 auto;
  }

  .nav-links a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
  }

  .nav-cta-item {
    margin-left: 0;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    padding: 16px 20px !important;
    font-size: 1rem !important;
    border: none !important;
  }
}

@media (min-width: 768px) {
  .header-bar { display: block; }

  :root {
    --header-h: 68px;
    --header-total: calc(32px + 68px);
  }

  .nav-links-wrap {
    display: block;
    position: static;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    width: auto;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .nav-backdrop { display: none !important; }

  .nav-toggle { display: none; }
  body { padding-bottom: 0; }

  .logo-tagline { display: block; }
}

@media (min-width: 992px) {
  .nav-links { gap: 4px; }
  .nav-links a { padding: 10px 16px; }
}

@media (max-width: 380px) {
  .logo-tagline { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover { background: #1fb855; }

.btn-outline {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--bg-soft);
}

.btn-lg {
  min-height: 52px;
  padding: 14px 24px;
  font-size: 1rem;
}

.btn-full { width: 100%; }

/* Hero */
.hero {
  padding: calc(var(--header-total) + 28px) 0 32px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner { max-width: 680px; }

.hero-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 16px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid #f5e6b8;
}

.hero-title {
  font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 8px;
  color: var(--accent);
  font-size: 1.1rem;
}

.trust-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-tags span {
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* Sections */
.section {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Intro */
.intro { background: var(--bg); }

.intro-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.intro-text {
  margin-top: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Services */
.services { background: var(--bg-soft); }

.service-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.service-group-title:not(:first-of-type) { margin-top: 32px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  position: relative;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.service-card.featured {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  color: var(--accent);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  padding-right: 60px;
}

.service-card.featured h3 { padding-right: 70px; }

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 64px 0; }
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: 8px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Advantages */
.advantages { background: var(--bg-soft); }

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.adv-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.adv-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.adv-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 18px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA */
.cta-banner {
  padding: 40px 0;
  background: var(--accent);
  color: #fff;
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-inner p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-inner .btn-primary {
  background: #fff;
  color: var(--accent);
}

.cta-inner .btn-primary:hover { background: var(--bg-soft); }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-info { display: flex; flex-direction: column; gap: 10px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 72px;
}

a.contact-item:active { background: var(--bg-soft); }

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 10px;
  color: var(--accent);
}

.contact-icon svg { width: 20px; height: 20px; }
.contact-icon.whatsapp { background: var(--success-soft); color: var(--whatsapp); }

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item strong { font-size: 0.9375rem; }

.contact-form {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Footer */
.footer {
  background: var(--text);
  color: #d1d5db;
  padding: 40px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer .logo { color: #fff; }
.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.footer-domain { color: var(--gold); font-weight: 600; }

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Mobile sticky CTA */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: var(--sticky-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  min-height: var(--sticky-h);
}

.mobile-sticky .sticky-call {
  background: var(--accent);
  color: #fff;
}

.mobile-sticky .sticky-wa {
  background: var(--whatsapp);
  color: #fff;
}

.mobile-sticky svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (min-width: 768px) {
  .mobile-sticky { display: none; }
}

/* Desktop WhatsApp float */
.whatsapp-float {
  display: none;
}

@media (min-width: 768px) {
  .whatsapp-float {
    display: flex;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: transform 0.15s;
  }

  .whatsapp-float:hover { transform: scale(1.06); }
  .whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
}

::selection {
  background: rgba(26, 54, 93, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
