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

  :root {
    --orange: #FC5109;
    --orange-light: #FFF4EC;
    --orange-ink: #7A2A04;
    --orange-shadow: rgba(252,81,9,0.10);
    --bg: #FFFFFF;
    --bg-soft: #F8F7F5;
    --surface: #F9F9F9;
    --border: #EEEEEE;
    --text: #111111;
    --muted: #6B6560;
    --ink-soft: #2E2A26;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --shadow-xs: 0 3px 14px rgba(60,32,10,0.06);
    --shadow-warm: 0 10px 24px rgba(74,32,5,0.09);
    --section-space-desktop: 84px;
    --section-space-mobile: 64px;
    --content-max-desktop: 1200px;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 68px;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    max-width: 100%;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s, background 0.3s, backdrop-filter 0.3s;
    background: rgba(255,255,255,0);
  }
  nav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.05);
  }

  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    display: block;
    height: 80px;
    width: auto;
    flex-shrink: 0;
  }

  .nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 22px;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
  }
  .nav-cta:hover { opacity: 0.92; transform: translateY(-1px); }

  /* hamburger */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: flex;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 24px 5vw 28px;
    flex-direction: column; gap: 20px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    opacity: 0; transform: translateY(-8px); visibility: hidden; pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .mobile-menu.open {
    opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .mobile-menu a {
    font-size: 15px; font-weight: 500;
    color: var(--text); text-decoration: none;
    padding: 6px 0; border-bottom: 1px solid var(--border);
  }
  .mobile-menu .nav-cta { text-align: center; margin-top: 4px; }

  /* ── HERO ── */
  .hero {
    min-height: clamp(700px, 94vh, 900px);
    display: grid;
    grid-template-columns: minmax(420px, 520px) minmax(520px, 680px);
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 72px);
    padding: 108px 5vw 92px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
  }
  @media (min-width: 769px) {
    .hero {
      background:
        radial-gradient(circle at 68% 43%, rgba(252, 81, 9, 0.025) 0 170px, rgba(252, 81, 9, 0) 380px),
        radial-gradient(circle at 50% 42%, #FFF7F0 0%, #FFFFFF 44%, #F8FAFC 100%);
    }
    .hero::after {
      content: '';
      position: absolute;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }
    .hero::after {
      width: clamp(150px, 17vw, 240px);
      background: rgba(252, 81, 9, 0.08);
      left: clamp(8%, 17vw, 23%);
      top: clamp(205px, 34vh, 310px);
      transform: translate(-50%, -50%);
    }
  }
  .hero > * {
    position: relative;
    z-index: 2;
  }
  .hero-content {
    max-width: 540px;
    margin-left: 0;
    justify-self: end;
    display: flex;
    flex-direction: column;
  }
  .hero-content .hero-location-badge { order: 1; }
  .hero-content h1 { order: 2; }
  .hero-content p { order: 3; }
  .hero-content .hero-usp-badges { order: 4; }
  .hero-content .hero-buttons { order: 5; }

  .hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero-line,
  .hero h1 em { white-space: nowrap; }

  .hero p {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 16px;
    line-height: 1.45;
    letter-spacing: -0.2px;
  }
  .subtitle-mobile { display: none; }
  .hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(252, 81, 9, 0.18);
    background: #FFF0E4;
    color: var(--orange-ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 22px;
    box-shadow: 0 1px 2px rgba(17,17,17,0.04);
    transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    align-self: flex-start;
  }
  .hero-location-badge:hover {
    border-color: var(--orange);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(17,17,17,0.06);
  }
  .location-pin {
    position: relative;
    display: inline-grid;
    place-items: center;
    color: var(--orange);
    flex: 0 0 auto;
  }
  .hero-location-badge svg {
    color: var(--orange);
    flex-shrink: 0;
  }
  .hero-usp-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin: 0 0 22px;
  }
  .hero-usp-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }
  .usp-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--orange);
  }
  .usp-icon svg {
    display: block;
  }

  .hero-buttons {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: flex-start;
    margin-bottom: 18px;
  }
  .btn-primary {
    background: var(--orange); color: #fff;
    border: none; border-radius: var(--radius-pill);
    padding: 14px 30px; font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 3px 8px rgba(252, 81, 9, 0.16);
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { opacity: 0.94; transform: translateY(-1px); box-shadow: 0 5px 12px rgba(252, 81, 9, 0.2); }

  .btn-secondary {
    background: transparent; color: var(--text);
    border: 1.5px solid #D0D0D0; border-radius: var(--radius-pill);
    padding: 14px 30px; font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--text); transform: translateY(-1px); }
  .cta-mobile { display: none; }
  .cta-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .phone-pulse-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    color: var(--orange);
    flex: 0 0 auto;
  }
  .phone-pulse-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(252, 81, 9, 0.34);
    border-radius: 50%;
    animation: phoneRingPulse 1.7s ease-out infinite;
  }
  .phone-pulse-icon svg {
    display: block;
  }

  .hero-media {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 440px;
    justify-self: start;
    transform: translateY(-6px);
  }
  .hero-media picture {
    display: block;
    width: min(620px, 100%);
    position: relative;
    isolation: isolate;
  }
  .hero-media picture::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 7%;
    width: 48%;
    height: 8%;
    border-radius: 50%;
    background: rgba(36, 18, 5, 0.035);
    filter: blur(26px);
    transform: translateX(-50%) scale(1);
    z-index: -1;
    animation: heroShadowFloat 4s ease-in-out 820ms infinite;
  }
  .hero-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
  @media (min-width: 769px) {
    .hero-media .hero-desktop-svg {
      width: 255%;
      max-width: none;
      filter: drop-shadow(0 10px 16px rgba(74, 32, 5, 0.035));
    }
  }
  @media (min-width: 1800px) {
    .hero-media .hero-desktop-svg {
      width: 272%;
    }
  }
  @media (min-width: 1500px) and (max-width: 1799px) {
    .hero-media .hero-desktop-svg {
      width: 260%;
    }
  }
  @media (min-width: 769px) and (max-width: 1400px) {
    .hero-media .hero-desktop-svg {
      width: 208%;
    }
  }
  @media (min-width: 1181px) and (max-width: 1400px) {
    .hero-media .hero-desktop-svg {
      width: 218%;
    }
  }
  @media (min-width: 769px) and (max-width: 1180px) {
    .hero-media .hero-desktop-svg {
      width: 176%;
    }
  }
  @media (min-width: 992px) and (max-width: 1180px) {
    .hero-media .hero-desktop-svg {
      width: 187%;
    }
  }
  @media (min-width: 769px) and (max-width: 991px) {
    .hero-media .hero-desktop-svg {
      width: 166%;
    }
  }
  .hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 34px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 4;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    animation: heroCueBounce 2s ease-in-out infinite;
  }
  .hero-scroll-cue:hover { opacity: 1; }
  .hero-scroll-cue span {
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg);
    display: block;
  }

  .hero-location-badge,
  .hero-content h1,
  .hero-content p,
  .hero-usp-badges,
  .hero-buttons {
    opacity: 0;
    transform: translateY(16px);
    animation: heroTextIn 500ms ease-out forwards;
  }
  .hero-location-badge { animation-delay: 0ms; }
  .hero-content h1 { animation-delay: 80ms; }
  .hero-content p,
  .hero-usp-badges { animation-delay: 160ms; }
  .hero-buttons { animation-delay: 240ms; }

  .hero-media picture {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    animation: heroImageIn 500ms ease-out 320ms forwards;
  }
  .hero-media img {
    transform-origin: center center;
  }

  @keyframes heroTextIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes heroImageIn {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  @keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1); }
  }
  @keyframes heroShadowFloat {
    0%, 100% {
      opacity: 0.34;
      transform: translateX(-50%) scale(1);
    }
    50% {
      opacity: 0.18;
      transform: translateX(-50%) scale(0.86);
    }
  }
  @keyframes phoneRingPulse {
    0% {
      opacity: 0.72;
      transform: scale(0.78);
    }
    80%, 100% {
      opacity: 0;
      transform: scale(1.45);
    }
  }
  @keyframes heroCueBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ── SECTION WRAPPER ── */
  section {
    padding: var(--section-space-desktop) 5vw;
    scroll-margin-top: 68px;
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-snap-type: y proximity;
    }
    .hero,
    section {
      scroll-snap-align: start;
      scroll-snap-stop: normal;
    }
  }

  .section-label {
    font-size: 13px; font-weight: 600; color: var(--orange);
    letter-spacing: 0.8px; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700; letter-spacing: -1px;
    color: var(--text); margin-bottom: 8px;
    line-height: 1.15;
  }
  .title-line {
    width: 40px; height: 4px; border-radius: 2px;
    background: var(--orange); margin-top: 14px; margin-bottom: 48px;
  }

  /* ── SERVICES ── */
.services-bg { background: var(--bg); border-top: 1px solid rgba(0,0,0,0.03); }
#services { padding-top: 78px; }

  #services .section-label,
  #services .section-title {
    text-align: center;
  }
  #services .section-label,
  #services .section-title,
  #services .title-line,
  #services .service-tabs,
  #services .services-layout {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  #services .title-line { transition-delay: 70ms; }
  #services .service-tabs { transition-delay: 120ms; }
  #services .services-layout { transition-delay: 180ms; }
  #services.is-visible .section-label,
  #services.is-visible .section-title,
  #services.is-visible .title-line,
  #services.is-visible .service-tabs,
  #services.is-visible .services-layout {
    opacity: 1;
    transform: translateY(0);
  }

#services .title-line {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
  gap: clamp(34px, 4.5vw, 64px);
  align-items: center;
  justify-content: center;
  max-width: var(--content-max-desktop);
  margin: 0 auto;
}

  .services-main {
    width: 100%;
  }

  .services-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-media picture {
    width: 100%;
    max-width: 560px;
    display: block;
  }

  .services-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .services-media.is-switching img {
    opacity: 0;
    transform: translateY(6px) scale(0.995);
  }
  @media (min-width: 769px) {
    .services-media picture {
      max-width: 640px;
    }
    .services-media[data-category="tablete"] picture {
      max-width: 560px;
    }
    .services-media[data-category="laptopuri"] picture {
      max-width: 500px;
    }
  }

  .service-tabs {
    display: inline-flex;
    gap: 10px;
    background: #FAFAFA;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 6px;
    margin: 0 auto 26px;
    flex-wrap: wrap;
  }

#services .service-tabs {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-bottom: 34px;
}

  .service-tab {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }

  .service-tab:hover {
    color: var(--text);
  }

  .service-tab.is-active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 2px 6px rgba(252, 81, 9, 0.14);
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    opacity: 0; transform: translateY(24px);
    position: relative;
    overflow: hidden;
  }
  .service-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, box-shadow 0.2s; }
  .service-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 14px var(--orange-shadow);
    transform: translateY(-2px);
  }

  .service-icon {
    width: 34px; height: 34px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.24s ease, background-color 0.24s ease;
  }
  .service-card:hover .service-icon {
    background: var(--orange-light);
  }
  .service-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .service-card-head h3 {
    margin-bottom: 0;
  }
  .service-icon svg {
    display: block;
  }
  .service-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
  .service-card p { font-size: 12px; color: var(--muted); line-height: 1.45; }
  @media (min-width: 769px) {
    .service-card { min-height: 108px; }
  }


  /* ── HOW IT WORKS ── */
  .how-section { background: var(--bg-soft); border-top: 1px solid rgba(0,0,0,0.03); }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
    max-width: var(--content-max-desktop);
    margin: 0 auto;
  }

  /* CSS Phone Mockup */
  .phone-wrap {
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .phone-wrap.visible { opacity: 1; transform: translateX(0); }

  .phone {
    width: 252px; height: 480px;
    border: 2.5px solid #DDDDDD;
    border-radius: 40px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(74,32,5,0.10), inset 0 0 0 6px #F5F5F5;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .phone-notch {
    width: 92px; height: 24px;
    background: #EEEEEE;
    border-radius: 0 0 14px 14px;
    margin: 0 auto; flex-shrink: 0;
    position: relative; z-index: 2;
  }
  .phone-screen {
    flex: 1; display: flex; flex-direction: column;
    padding: 14px;
  }
  .phone-header {
    background: var(--orange);
    border-radius: 10px;
    height: 50px;
    display: flex; align-items: center;
    padding: 0 15px; margin-bottom: 14px; flex-shrink: 0;
  }
  .phone-header-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.5); margin-right: 9px; }
  .phone-header-line { height: 7px; background: rgba(255,255,255,0.7); border-radius: 3px; flex: 1; }

  .phone-line {
    height: 9px; background: var(--border);
    border-radius: 4px; margin-bottom: 9px;
  }
  .phone-line.short { width: 60%; }
  .phone-line.shorter { width: 40%; }

  .phone-card-sim {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 11px; margin-bottom: 13px;
  }
  .phone-card-sim .phone-line { margin-bottom: 7px; }
  .phone-card-sim .phone-line:last-child { margin-bottom: 0; }

  .phone-progress-wrap {
    margin-top: auto;
    padding-top: 11px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    padding: 11px;
  }
  .phone-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
  }
  .phone-progress-label {
    font-size: 10px;
    color: #444;
    font-weight: 600;
    letter-spacing: 0.1px;
    font-family: 'Manrope', sans-serif;
  }
  .phone-progress-percent {
    font-size: 10px;
    color: var(--orange);
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
  }
  .phone-progress-bg {
    height: 8px;
    background: #EFEFEF;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid #E5E5E5;
  }
  .phone-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, #FF9A52 100%);
    border-radius: var(--radius-pill);
    position: relative;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.7s ease-in-out;
  }
  .phone-progress-glow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -18px;
    width: 18px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 100%);
  }
  .phone-progress-note {
    margin-top: 7px;
    font-size: 9px;
    color: #7a7a7a;
    font-family: 'Manrope', sans-serif;
  }
  /* Steps */
  .how-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
  }
  .how-right.visible { opacity: 1; transform: translateX(0); }

  .steps { margin-top: 8px; }
  .step {
    display: flex; gap: 20px; align-items: flex-start;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px; top: 44px;
    width: 2px; height: calc(100% - 20px);
    border-left: 2px dashed rgba(252,81,9,0.35);
  }
  .step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--orange-light);
    border: 1.5px solid rgba(252,81,9,0.25);
    color: var(--orange);
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .step-body { padding-bottom: 40px; }
  .step-body-last { padding-bottom: 0; }
  .step-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
  .step-body p { font-size: 14px; color: var(--muted); line-height: 1.55; }

  /* ── STATS ── */
  .stats-section {
    background: var(--bg);
    text-align: center;
    padding: var(--section-space-desktop) 5vw;
    border-top: 1px solid rgba(0,0,0,0.03);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    max-width: var(--content-max-desktop); margin: 0 auto;
  }
  .stat-item {
    padding: 32px 24px;
    border-right: 1px solid var(--border);
    opacity: 0; transform: translateY(24px);
  }
  .stat-item:last-child { border-right: none; }
  .stat-item.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
  .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 52px; font-weight: 800;
    color: var(--orange); letter-spacing: -2px; line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

  /* ── WHY US ── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 8px;
    max-width: var(--content-max-desktop);
    margin: 0 auto;
  }
  .why-card {
    padding: 32px 28px;
    border-radius: var(--radius-md);
    opacity: 0; transform: translateY(24px);
    transition: background 0.2s;
  }
  .why-card:hover { background: var(--surface); }
  .why-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s; }

  .why-icon {
    width: 40px; height: 40px;
    background: var(--orange-light); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .why-icon svg { color: var(--orange); }
  .why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
  .why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--bg-soft); overflow: hidden; border-top: 1px solid rgba(0,0,0,0.03); text-align: center; }
  .testi-marquee {
    overflow: hidden;
    max-width: 100vw;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .testi-marquee.visible { opacity: 1; transform: translateY(0); }
  .testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testiScroll linear infinite;
    animation-duration: 42s;
  }
  .testi-marquee:hover .testi-track,
  .testi-marquee:focus-within .testi-track {
    animation-play-state: paused;
  }
  @keyframes testiScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .testi-card {
    flex: 0 0 320px;
    width: 320px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    text-align: left;
  }
  .stars { color: var(--orange); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text {
    font-size: 14px; color: var(--text);
    line-height: 1.65; margin-bottom: 20px;
    font-style: italic;
  }
  .testi-author { font-size: 13px; font-weight: 600; }
  .testi-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

  @media (prefers-reduced-motion: reduce) {
    .testi-marquee { overflow-x: auto; overflow-y: hidden; }
    .testi-track { animation: none !important; }
    .testi-track > .testi-card:nth-child(n+8) { display: none; }
  }

  .testi-source {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .testi-source:hover { color: var(--orange); border-color: rgba(252, 81, 9, 0.4); }

  /* ── CONTACT ── */
  .contact-section {
    background: linear-gradient(140deg, #F4510A 0%, #E3450A 56%, #D6400A 100%);
    color: #fff;
    text-align: left;
    padding: var(--section-space-desktop) 5vw;
    opacity: 0; transform: translateY(24px);
    border-top: 1px solid rgba(0,0,0,0.03);
  }
  .contact-section.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }

  .contact-shell {
    max-width: var(--content-max-desktop);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
    gap: clamp(20px, 4vw, 44px);
    align-items: stretch;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 24px;
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 14px 30px rgba(120,30,0,0.16);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .contact-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800; letter-spacing: -1px;
    max-width: 640px; margin: 0 0 14px;
    line-height: 1.15;
  }
  .contact-section p,
  .contact-section .contact-buttons,
  .contact-section .schedule {
    max-width: 560px;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-section p {
    font-size: 16px; opacity: 0.92;
    margin-bottom: 28px;
  }
  .contact-buttons {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: flex-start;
    margin-bottom: 22px;
  }
  .btn-white {
    background: #fff; color: var(--orange);
    border: none; border-radius: var(--radius-pill);
    padding: 14px 28px; font-size: 15px; font-weight: 700;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity 0.2s, transform 0.15s;
  }
  .btn-white:hover { opacity: 0.92; transform: translateY(-1px); }

  .schedule {
    font-size: 14px; opacity: 0.8;
    display: flex; align-items: center; gap: 8px;
    justify-content: flex-start;
  }
  .schedule-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.6);
  }
  .contact-map-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.34);
    box-shadow: 0 12px 24px rgba(120,30,0,0.14);
    background: rgba(255,255,255,0.12);
  }
  .contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
    filter: saturate(0.9) contrast(1.02);
  }
  .map-consent-placeholder {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.14);
    color: #fff;
  }
  .map-consent-placeholder p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 420px;
  }
  .map-consent-btn {
    border: 1px solid rgba(255,255,255,0.5);
    background: #fff;
    color: var(--orange);
    border-radius: var(--radius-pill);
    padding: 10px 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  }
  .map-consent-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.8);
  }
  .cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 250;
    background: rgba(19, 19, 19, 0.96);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md);
    padding: 14px;
    display: grid;
    gap: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    opacity: 0; transform: translateY(12px); visibility: hidden; pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
  }
  .cookie-banner.is-visible {
    opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .cookie-banner p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
  }
  .cookie-banner a {
    color: #ffb58e;
    text-decoration: underline;
  }
  .cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .cookie-btn {
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: opacity 0.2s ease, transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  }
  .cookie-btn:hover {
    transform: translateY(-1px);
  }
  .cookie-btn-accept {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
  }
  .cookie-btn-accept:hover {
    opacity: 0.92;
  }
  .cookie-btn-reject {
    background: transparent;
    color: #fff;
  }
  .cookie-btn-reject:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
  }
  @media (min-width: 769px) {
    .cookie-banner {
      max-width: 760px;
      left: 24px;
      right: auto;
      bottom: 24px;
    }
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(180deg, #FAF8F6 0%, #F6F3EF 100%);
    padding: 22px 5vw 30px;
  }
  .footer-shell {
    max-width: var(--content-max-desktop);
    margin: 0 auto;
    border: 1px solid #EDE8E3;
    border-radius: 18px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.72);
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    align-items: center;
    gap: 14px 18px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .footer-logo img {
    display: block;
    height: 38px;
    width: auto;
  }
  .footer-tagline {
    font-size: 13px;
    color: #6E6660;
    line-height: 1.4;
    margin: 0;
    max-width: 330px;
  }
  .footer-copy {
    font-size: 12px;
    color: #7B746F;
    grid-column: 1 / -1;
    border-top: 1px solid #EEE7E1;
    padding-top: 10px;
    margin-top: 2px;
  }
  .footer-socials {
    display: flex;
    gap: 10px;
    justify-self: end;
  }
  .footer-legal {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  .footer-legal a {
    font-size: 13px;
    color: #6F6862;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .footer-legal a:hover {
    color: var(--orange);
    border-color: rgba(252, 81, 9, 0.45);
  }
  .footer-trust {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-trust img {
    height: 34px;
    width: auto;
    display: block;
    border: 1px solid #E8DFD6;
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 4px 8px;
  }
  .footer-socials a {
    color: #7C746E;
    text-decoration: none;
    transition: color 0.2s, transform 0.15s, border-color 0.2s, background 0.2s;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-pill);
    border: 1px solid #E8DFD6;
    background: #FFFDFC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-socials a:hover {
    color: var(--orange);
    border-color: #E4C4AE;
    background: var(--orange-light);
    transform: translateY(-1px);
  }
  .footer-socials svg { display: block; }

  @media (max-width: 1100px) {
    .hero {
      grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
      gap: clamp(20px, 3vw, 38px);
    }
    .hero-content {
      max-width: 470px;
    }
    .hero-media picture {
      width: min(560px, 100%);
    }

  .services-layout {
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 560px);
    gap: 24px;
    max-width: 1000px;
  }
  #services { padding-top: 72px; }
}

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-logo img { height: 65px; }
    section { padding: var(--section-space-mobile) 24px; }
    .section-label, .section-title { text-align: center; }
    .title-line { margin: 14px auto 40px; }

    .nav-links, nav > .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero {
      min-height: auto;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 98px 20px 46px;
      background: #FFFFFF;
      text-align: center;
      justify-items: center;
      max-width: 100vw;
      overflow-x: clip;
    }
    .hero-content {
      max-width: 360px;
      margin-left: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-content .hero-location-badge { order: 1; }
    .hero-content h1 { order: 2; }
    .hero-content p { order: 3; }
    .hero-content .hero-usp-badges { order: 4; }
    .hero-content .hero-buttons { order: 5; }
    .hero h1 {
      font-size: clamp(34px, 9.1vw, 44px);
      line-height: 1;
      letter-spacing: -1.2px;
      margin-bottom: 14px;
    }
    .hero-line { white-space: normal; }
    .hero h1 em { white-space: nowrap; }
    .hero p {
      font-size: 15px;
      line-height: 1.45;
      margin-bottom: 14px;
    }
    .subtitle-desktop { display: none; }
    .subtitle-mobile { display: inline; }
    .hero-location-badge {
      font-size: 12px;
      padding: 6px 10px;
      margin-bottom: 16px;
      justify-content: center;
      align-self: center;
    }
    .hero-usp-badges {
      display: flex;
      justify-content: center;
      gap: 10px 16px;
      max-width: 320px;
      margin: 0 auto 16px;
    }
    .hero-usp-badges span {
      font-size: 12px;
    }
    .usp-icon svg {
      width: 14px; height: 14px;
    }
    .hero-buttons {
      width: 100%;
      max-width: none;
      margin: 0 auto 8px;
      flex-direction: column;
      gap: 10px;
    }
    .btn-primary, .btn-secondary {
      width: 100%;
      padding: 10px 20px;
      font-size: 14px;
      justify-content: center;
      text-align: center;
    }
    .cta-mobile {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .cta-desktop { display: none; }
    .hero-media {
      width: 100%;
      max-width: 860px;
      margin: -2px 0 0;
      min-height: 0;
      transform: none;
    }
    .hero-media picture,
    .hero-media img {
      width: 100%;
    }
    .hero-media img {
      object-position: center top;
    }
    .hero-scroll-cue {
      display: none;
    }

    .services-layout {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin: 0 auto;
      gap: 16px;
    }
    .services-media {
      order: 1;
    }
    .services-main {
      order: 2;
    }
    .services-media picture {
      max-width: 400px;
      margin: 0 auto;
    }

    .services-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      max-width: 460px;
      margin: 0 auto;
    }

    .service-tabs {
      width: 100%;
      border-radius: 20px;
      padding: 8px;
      gap: 8px;
      margin: 0 auto 20px;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .service-tabs::-webkit-scrollbar { display: none; }

    .service-tab {
      flex: 1 0 calc(33.333% - 4px);
      text-align: center;
      padding: 13px 10px;
      font-size: 14px;
      white-space: nowrap;
    }
    .service-card {
      padding: 24px 20px;
    }

    .how-grid { grid-template-columns: 1fr; gap: 48px; }
    .phone-wrap { opacity: 1; transform: none; }
    .how-right { order: 1; }
    .phone-wrap { order: 2; }
    .phone {
      width: 220px;
      height: 420px;
    }
    .phone-notch {
      width: 80px;
      height: 20px;
    }
    .phone-screen { padding: 12px; }
    .phone-header {
      height: 44px;
      padding: 0 14px;
      margin-bottom: 12px;
    }
    .phone-header-dot { width: 10px; height: 10px; margin-right: 8px; }
    .phone-header-line { height: 6px; }
    .phone-line { height: 8px; margin-bottom: 8px; }
    .phone-card-sim { padding: 10px; margin-bottom: 12px; }
    .phone-card-sim .phone-line { margin-bottom: 6px; }
    .phone-progress-wrap {
      padding-top: 10px;
      border-radius: 12px;
      padding: 10px;
    }
    .phone-progress-label, .phone-progress-percent { font-size: 9px; }
    .phone-progress-bg { height: 7px; }
    .phone-progress-note { margin-top: 6px; font-size: 8px; }
    .how-right { opacity: 1; transform: none; }
    .step-body { padding-bottom: 28px; }

    .testi-card { padding: 22px 20px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section {
      padding: 42px 20px 56px;
      margin-top: -8px;
    }
    .stats-grid {
      gap: 12px;
      max-width: 460px;
    }
    .stat-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
      box-shadow: var(--shadow-xs);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 22px 12px;
      min-height: 120px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .stat-item:nth-child(2n) { border-right: 1px solid var(--border); }
    .stat-num {
      font-size: 34px;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 12px;
      line-height: 1.35;
    }

    .why-grid { grid-template-columns: 1fr; }
    .contact-buttons {
      width: 100%;
      max-width: 360px;
      margin: 0 auto 18px;
      flex-direction: column;
      gap: 10px;
    }
    .contact-section {
      text-align: center;
    }
    .contact-shell {
      grid-template-columns: 1fr;
      border-radius: 18px;
      padding: 18px 14px;
      gap: 16px;
    }
    .contact-copy {
      align-items: center;
    }
    .contact-section h2 {
      margin: 0 auto 12px;
    }
    .contact-section p,
    .contact-section .contact-buttons,
    .contact-section .schedule {
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .schedule {
      flex-direction: column;
      gap: 6px;
      justify-content: center;
    }
    .schedule-dot { display: none; }
    .contact-map-wrap {
      margin-top: 0;
      border-radius: 14px;
    }
    .contact-map-wrap iframe {
      min-height: 230px;
    }
    .map-consent-placeholder {
      min-height: 230px;
      padding: 16px;
    }

    .footer-shell {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 16px 14px;
      gap: 12px;
    }
    .footer-brand {
      flex-direction: column;
      gap: 8px;
    }
    .footer-tagline {
      max-width: 100%;
    }
    .footer-socials {
      justify-self: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-trust {
      justify-content: center;
    }
    .footer-trust img {
      height: 30px;
    }
    .footer-copy {
      text-align: center;
      margin-top: 0;
      padding-top: 10px;
    }
    .cookie-banner-actions {
      width: 100%;
    }
    .cookie-btn {
      flex: 1 1 auto;
      text-align: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-content h1,
    .hero-content p,
    .hero-location-badge,
    .hero-usp-badges,
    .hero-buttons,
    .hero-media picture,
    .hero-media img {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    .hero-media picture::after {
      animation: none !important;
      transform: translateX(-50%) scale(1) !important;
    }
    .phone-pulse-icon::before {
      display: none;
    }
    .hero-scroll-cue {
      animation: none !important;
    }
    #services .section-label,
    #services .section-title,
    #services .title-line,
    #services .service-tabs,
    #services .services-layout,
    .services-media img {
      transition: none !important;
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }
