/* =========================================================
   AL-TIM Auto Servis — stylesheet
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-ext-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-ext-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-ext-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-ext-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-ext-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-ext-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-ext-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0300-036F, U+1E00-1EFF;
}

/* ---------- Design tokens ---------- */
:root {
  --bg: #0b0b0c;
  --bg-raised: #17171a;
  --bg-raised-2: #1e1e21;
  --line: #2a2a2e;
  --line-soft: #201f21;

  --text: #f5f5f3;
  --text-dim: #b9b9bd;
  --text-mute: #85858a;

  --orange: #e8794a;
  --orange-dark: #c4611f;
  --orange-glow: rgba(232, 121, 74, 0.18);

  --chrome-1: #f2f2f2;
  --chrome-2: #8a8a8e;

  --radius-sm: 6px;
  --radius-md: 10px;

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

  --container: 1180px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text-dim); max-width: 62ch; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #0b0b0c;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
@media (hover: none) {
  .btn:hover { transform: none; }
  .btn:active { transform: scale(0.97); }
}

.btn-primary {
  background: var(--orange);
  color: #0b0b0c;
}
.btn-primary:hover {
  background: #ee8a5e;
  box-shadow: 0 8px 24px -8px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-ghost {
  background: var(--bg-raised);
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--chrome-2);
}

.btn-lg { padding: 15px 26px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.16s var(--ease);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right 0.22s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.header-cta { display: flex; gap: 10px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft);
  -webkit-tap-highlight-color: rgba(232, 121, 74, 0.1);
}
.mobile-nav-cta {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.mobile-nav-cta .btn { flex: 1; }

.site-header.nav-open .mobile-nav { display: flex; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow-plain {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 16px;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.3s var(--ease);
}
.hero-stats > div:hover {
  transform: translateY(-4px);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.hero-stats > div:hover dt {
  color: var(--orange);
}
.hero-stats dd {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-mute);
  max-width: 14ch;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero logo image replaces old SVG */
.hero-logo-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  filter: drop-shadow(0 0 40px rgba(232, 121, 74, 0.15));
  animation: heroLogoIn 1s var(--ease) 0.2s both;
}
@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-img { animation: none; }
}

/* ---------- Section base ---------- */
section { padding: 88px 0; }
.section-lead {
  font-size: 1.05rem;
  max-width: 58ch;
  margin-bottom: 40px;
}

/* ---------- Services ---------- */
.services { background: var(--bg-raised); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  background: var(--bg-raised-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; margin: 0; }

/* Service card icons */
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(232, 121, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card:hover .service-icon {
  background: rgba(232, 121, 74, 0.2);
  transform: scale(1.08);
}

/* Service meta tag (e.g. duration) */
.service-meta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-mute);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(232, 121, 74, 0.05);
}

.services-note {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-mute);
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: stretch;
}

.about-role {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.about-history {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-history li {
  padding: 10px 0 10px 20px;
  border-left: 2px solid var(--line);
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.about-history li:hover {
  border-left-color: var(--orange);
  padding-left: 24px;
}
.about-history strong { color: var(--text); font-weight: 600; }

.about-figures {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-left: 32px;
  border-left: 1px solid var(--line-soft);
}
.figure-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s var(--ease);
}
.figure-item:hover {
  transform: translateX(6px);
}
.figure-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  transition: transform 0.3s var(--ease);
}
.figure-item:hover .figure-num {
  transform: scale(1.08);
}
.figure-label { font-size: 0.88rem; color: var(--text-mute); }

/* ---------- Pricing ---------- */
.pricing-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-highlight {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 32px 36px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  width: fit-content;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.price-highlight:hover {
  box-shadow: 0 8px 32px -8px var(--orange-glow);
  transform: translateY(-2px);
}
.price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}
.price-unit { color: var(--text-mute); font-size: 0.95rem; }

.pricing-note {
  padding: 20px 24px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.pricing-note:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.pricing-note h3 { font-size: 1rem; margin-bottom: 8px; }
.pricing-note p { font-size: 0.92rem; margin: 0; }

/* ---------- Process ---------- */
.process { background: var(--bg-raised); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.process-steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-steps li {
  counter-increment: step;
  position: relative;
  padding-top: 52px;
  transition: transform 0.3s var(--ease);
}
.process-steps li:hover {
  transform: translateY(-4px);
}
.process-steps li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.process-steps li:hover::before {
  background: var(--orange);
  border-color: var(--orange);
  color: #0b0b0c;
}
.process-steps h3 { font-size: 1.02rem; margin-bottom: 8px; }
.process-steps p { font-size: 0.92rem; margin: 0; }

/* ---------- Location ---------- */
.location-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
address { font-style: normal; color: var(--text-dim); margin-bottom: 28px; line-height: 1.7; }

.hours-list {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hours-list > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  max-width: 320px;
  transition: padding-left 0.2s var(--ease);
}
.hours-list > div:hover {
  padding-left: 6px;
}
.hours-list dt { color: var(--text-dim); font-size: 0.95rem; }
.hours-list dd { margin: 0; color: var(--text); font-weight: 600; font-size: 0.95rem; }

.location-note { font-size: 0.9rem; color: var(--text-mute); margin-bottom: 24px; }

.location-map {
  min-height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.4s var(--ease);
}
.location-map:hover {
  filter: grayscale(0) contrast(1.1);
}

/* ---------- Booking ---------- */
.booking { background: var(--bg-raised); border-top: 1px solid var(--line-soft); }

.booking-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.booking-direct {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.booking-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.booking-form:hover {
  border-color: rgba(232, 121, 74, 0.3);
  box-shadow: 0 0 40px -16px var(--orange-glow);
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.9rem; font-weight: 600; color: var(--text-dim); }
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  min-height: 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23b9b9bd' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 121, 74, 0.12);
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.82rem; color: var(--text-mute); margin: 0; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 100px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.footer-col h3 { font-size: 0.92rem; margin-bottom: 14px; color: var(--text); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: color 0.16s var(--ease), padding-left 0.16s var(--ease);
}
.footer-col a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-col li { color: var(--text-dim); font-size: 0.92rem; }

.footer-ig-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.footer-ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.35);
}
@media (hover: none) {
  .footer-ig-btn:hover { transform: none; box-shadow: none; }
}

.footer-legal {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  min-height: 52px;
  font-weight: 600;
  font-size: 0.95rem;
  -webkit-tap-highlight-color: rgba(232, 121, 74, 0.15);
}
.sticky-call { background: var(--bg-raised); color: var(--text); }
.sticky-whatsapp { background: var(--orange); color: #0b0b0c; }

/* ---------- Scroll reveal animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease) forwards;
}
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }

/* ---------- Floating WhatsApp & Viber ---------- */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 140;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.float-whatsapp {
  background: #25D366;
}
.float-viber {
  background: #7360F2;
}

@media (max-width: 900px) {
  .floating-cta {
    bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    right: 14px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-btn svg { width: 24px; height: 24px; }
}

/* ---------- Scroll reveal ---------- */
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.service-card.reveal-ready { transition-delay: calc(var(--i, 0) * 0.06s); }
.service-card:nth-child(1) { --i: 0; }
.service-card:nth-child(2) { --i: 1; }
.service-card:nth-child(3) { --i: 2; }
.service-card:nth-child(4) { --i: 3; }
.service-card:nth-child(5) { --i: 4; }
.service-card:nth-child(6) { --i: 5; }
.service-card:nth-child(7) { --i: 6; }
.service-card:nth-child(8) { --i: 7; }

.process-steps li.reveal-ready { transition-delay: calc(var(--j, 0) * 0.1s); }
.process-steps li:nth-child(1) { --j: 0; }
.process-steps li:nth-child(2) { --j: 1; }
.process-steps li:nth-child(3) { --j: 2; }
.process-steps li:nth-child(4) { --j: 3; }

@media (prefers-reduced-motion: reduce) {
  .reveal-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Disable hover lifts on touch-only devices to prevent sticky hover */
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: none; }
  .hero-stats > div:hover { transform: none; }
  .pricing-note:hover { transform: none; }
  .price-highlight:hover { transform: none; }
  .process-steps li:hover { transform: none; }
  .figure-item:hover { transform: none; }
  .figure-item:hover .figure-num { transform: none; }
  .hours-list > div:hover { padding-left: 0; }
  .about-history li:hover { padding-left: 20px; }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .pricing-notes { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { order: -1; max-width: 220px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; gap: 24px 40px; }

  .about-inner { grid-template-columns: minmax(0, 1fr); }
  .about-figures {
    flex-direction: row;
    justify-content: flex-start;
    border-left: none;
    border-top: 1px solid var(--line-soft);
    padding-left: 0;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 32px;
  }

  .location-inner { grid-template-columns: minmax(0, 1fr); }
  .location-map { min-height: 300px; }

  .booking-inner { grid-template-columns: minmax(0, 1fr); }

  .sticky-cta { display: flex; }
  .site-footer { padding-top: 40px; padding-bottom: 0; }
  .footer-inner { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 640px) {
  section { padding: 48px 0; }
  .hero { padding: 32px 0 40px; }

  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .process-steps { grid-template-columns: minmax(0, 1fr); gap: 24px; }

  .hero-actions { flex-direction: column; margin: 24px 0 32px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 16px 28px; padding-top: 20px; }

  .hero-visual { max-width: 200px; }
  .hero-lead { font-size: 1rem; }

  .section-lead { margin-bottom: 28px; }

  .service-card { padding: 20px 18px; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.88rem; }
  .service-icon { width: 38px; height: 38px; margin-bottom: 12px; }

  .about-copy h2 { font-size: 1.4rem; }
  .about-role { font-size: 0.85rem; letter-spacing: 0.02em; }
  .about-history { margin: 14px 0 18px; gap: 6px; }
  .about-history li { padding: 8px 0 8px 16px; font-size: 0.88rem; }
  .about-figures { gap: 24px; padding-top: 18px; }
  .figure-num { font-size: 1.8rem; }
  .figure-label { font-size: 0.82rem; }

  .pricing-note { padding: 16px 18px; }
  .pricing-note h3 { font-size: 0.95rem; }
  .pricing-note p { font-size: 0.88rem; }

  .process-steps li { padding-top: 44px; }
  .process-steps li::before { font-size: 1.2rem; width: 34px; height: 34px; }

  .booking-direct { flex-direction: column; }
  .booking-direct .btn { width: 100%; }

  .booking-form { padding: 20px; gap: 16px; }

  .price-highlight { padding: 20px; width: 100%; flex-wrap: wrap; gap: 4px; }
  .price-value { font-size: 2rem; }

  .site-footer { padding-top: 28px; }
  .footer-brand { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 16px 20px; padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .footer-col a { display: block; padding: 3px 0; font-size: 0.85rem; }
  .footer-col li { padding: 1px 0; font-size: 0.85rem; }
  .footer-col h3 { margin-bottom: 8px; font-size: 0.85rem; }
  .footer-col ul { gap: 4px; }
  .footer-ig-btn { padding: 7px 12px; font-size: 0.8rem; margin-top: 10px; }
  .footer-ig-btn svg { width: 14px; height: 14px; }
  .footer-legal { font-size: 0.72rem; margin-top: 6px; }

  .location-info h2 { font-size: 1.3rem; }
  .location-map { min-height: 240px; }
  .hours-list { margin-bottom: 18px; gap: 6px; }
  address { margin-bottom: 18px; }

  .wrap { padding: 0 16px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .service-meta { font-size: 0.78rem; }
}

@media (max-width: 380px) {
  .brand-logo { height: 46px; }
  .btn-lg { padding: 13px 18px; font-size: 0.92rem; }
  .hero-stats { gap: 16px 24px; }
  .hero-stats dt { font-size: 1.7rem; }
  .figure-num { font-size: 2rem; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn svg { width: 22px; height: 22px; }
}
