/* ============================================================
   Helpo – Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: light only; scroll-behavior: smooth; }

:root {
  --bg: #F7F6F2;
  --white: #ffffff;
  --navy: #141824;
  --navy-soft: #2B3149;
  --accent: #FF5C35;
  --accent-light: #FFF0EC;
  --green: #2ECC8A;
  --green-light: #E8FBF3;
  --muted: #6B7280;
  --border: #E5E3DC;
  --shadow: 0 4px 24px rgba(20,24,36,0.08);
  --shadow-lg: 0 16px 48px rgba(20,24,36,0.14);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg) !important;
  color: var(--navy) !important;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ── PAGE SWITCHING ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,242,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links button {
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.nav-links button:hover,
.nav-links button.active { color: var(--accent); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-admin-btn { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; color:var(--accent); text-decoration:none; transition:background 0.2s; }
.nav-admin-btn:hover { background:rgba(232,99,10,0.12); }
.nav-account-link {
  display: none;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-account-link:hover { color: var(--accent); }

.nav-cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1001;
}
.hamburger span:not(.hamburger-label) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.hamburger-label { display: none; font-size: .72rem; font-weight: 700; color: var(--navy); line-height: 1; margin-top: 2px; letter-spacing: .02em; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .hamburger { display: flex; align-items: center; }
  .hamburger-label { display: block; }
  .nav-cta-desktop { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-account-desktop { display: none; }
  /* Remove backdrop-filter when menu is open — backdrop-filter makes nav a containing block
     for fixed descendants, which breaks position:fixed on nav-links */
  nav.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 8% 48px;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
    animation: menuSlideIn 0.28s cubic-bezier(0.22,1,0.36,1) both;
  }
  .nav-links button:not(.nav-cta-mobile) {
    padding: 20px 0;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.80);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    text-align: center;
    font-weight: 700;
    width: 100%;
    background: none;
  }
  .nav-links button:not(.nav-cta-mobile):hover,
  .nav-links button:not(.nav-cta-mobile).active { color: var(--accent); }
  .nav-account-link {
    display: block;
    padding: 20px 0;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.80);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    text-align: center;
    font-weight: 700;
  }
  .nav-account-link:hover { color: var(--accent); }
  .nav-cta-mobile {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 32px;
    border-radius: 100px;
    padding: 16px 24px;
    font-size: 1rem;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white) !important;
  }
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 24, 40, 0.46);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-overlay.open { display: flex; }
.review-modal {
  width: min(520px, 100%);
  background: var(--white);
  border-radius: 8px;
  padding: 26px;
  position: relative;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.22);
}
.review-modal h2 { margin-bottom: 8px; color: var(--navy); }
.review-modal p { color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.review-modal label { display: block; font-weight: 700; color: var(--navy); font-size: .9rem; margin-bottom: 12px; }
.review-modal input,
.review-modal textarea,
.review-modal select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}
.review-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
}
.review-message { display: none; font-size: .9rem; margin: 8px 0 14px; }
.review-message.visible { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(255,92,53,0.35);
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,92,53,0.4); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
}
.btn-secondary:hover { border-color: var(--navy); }

.btn-white {
  background: var(--white);
  color: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 56px;
}

/* ── HERO ── */
.hero {
  padding: 90px 5% 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: #1a8a5a;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--navy);
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.05rem; color: var(--muted); max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.device-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
}
.device-screen {
  background: var(--navy);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}
.device-screen::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,92,53,0.15);
  border-radius: 50%;
}
.screen-dot { display: flex; gap: 6px; margin-bottom: 14px; }
.screen-dot span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.screen-dot span:first-child { background: #FF5F56; }
.screen-dot span:nth-child(2) { background: #FFBD2E; }
.screen-dot span:nth-child(3) { background: #27C93F; }
.screen-text { color: rgba(255,255,255,0.5); font-size: 0.75rem; line-height: 1.8; }
.screen-text span { color: var(--accent); }
.cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 1s infinite;
  vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.status-row { display: flex; align-items: center; justify-content: space-between; }
.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a8a5a;
  background: var(--green-light);
  padding: 6px 12px;
  border-radius: 100px;
}
.status-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.time-badge { font-size: 0.8rem; font-weight: 600; color: var(--muted); }

/* ── HOW-IT-WORKS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { font-size: 0.75rem; font-weight: 800; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 20px; display: block; }
.step-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* ── DEVICES SECTION ── */
.devices-section { background: var(--navy); }
.devices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.device-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.2s;
}
.device-item:hover { background: rgba(255,255,255,0.1); }
.device-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.device-item h4 { color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.device-item p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ── PRICING ── */
.about-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 58px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  display: none;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy);
  border: none;
  box-shadow: 0 28px 70px rgba(20,24,36,0.18), 0 8px 22px rgba(20,24,36,0.08);
  isolation: isolate;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(20,24,36,0.48));
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--white);
  text-align: center;
}
.about-photo-fallback strong {
  font-size: 2rem;
  line-height: 1;
}
.about-photo-fallback span {
  color: rgba(255,255,255,0.64);
  font-size: .9rem;
}
.about-photo.is-missing .about-photo-fallback {
  display: flex;
}
.about-copy {
  max-width: 650px;
}
.about-copy .section-title {
  margin-bottom: 12px;
}
.about-age {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  color: #1a8a5a;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-age::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.about-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 13px;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.about-points div {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  border-radius: 16px;
  padding: 16px;
  min-height: 104px;
}
.about-points span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.about-points strong {
  display: block;
  font-size: .86rem;
  line-height: 1.35;
  color: var(--navy);
}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--navy); border-color: var(--navy); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}
.price-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.price-card.featured .price-title { color: var(--white); }
.price-tag { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.04em; margin: 10px 0 4px; color: var(--navy); }
.price-card.featured .price-tag { color: var(--white); }
.price-tag .currency { font-size: 1.1rem; vertical-align: super; font-weight: 700; }
.price-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.5); }
.price-desc { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; min-height: 36px; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.55); }
.price-features { list-style: none; flex: 1; margin-bottom: 20px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  padding: 7px 0;
  color: var(--navy-soft);
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.08); }
.check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-card .btn-primary,
.price-card .btn-secondary { width: 100%; text-align: center; padding: 12px; }
.price-card.featured .btn-secondary { background: var(--white); color: var(--navy); border: none; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(20, 23, 35, 0.04);
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
  margin-bottom: 20px;
}
.service-status {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.loading-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
}
.spinner-ring-soft {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(20,24,36,0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: helpo-spin .7s linear infinite;
  flex-shrink: 0;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { color: var(--navy-soft); font-size: 0.92rem; line-height: 1.65; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.reviewer-label { font-size: 0.78rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  margin: 80px 5%;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; position: relative; }
.cta-banner .btn-white { position: relative; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  background: var(--bg);
}
footer button {
  background: none;
  border: none;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  margin-left: 16px;
  font-size: 0.85rem;
}
footer button:hover { color: var(--navy); }
footer a { background: none; border: none; font-family: inherit; color: var(--muted); cursor: pointer; margin-left: 16px; font-size: 0.85rem; text-decoration: none; }
footer a:hover { color: var(--navy); }

/* ── PAGE HEADER ── */
.page-header { padding: 70px 5% 50px; text-align: center; max-width: 800px; margin: 0 auto; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; color: var(--navy); }
.page-header h1 span { color: var(--accent); }
.page-header p { color: var(--muted); font-size: 1.05rem; }

/* ── BOOKING ── */
.booking-container { max-width: 680px; margin: 0 auto; padding: 0 5% 80px; }
.progress { display: flex; align-items: center; gap: 8px; margin-bottom: 36px; }
.progress-step {
  flex: 1;
  height: 4px;
  border-radius: 100px;
  background: var(--border);
  transition: background 0.3s;
}
.progress-step.active { background: var(--accent); }
.progress-step.done { background: var(--green); }

.booking-step {
  display: none;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.booking-step.active { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-step h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--navy); }
.booking-step .subtitle { color: var(--muted); margin-bottom: 24px; font-size: 0.93rem; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.option-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
}
.option-card:hover { border-color: var(--navy); }
.option-card.selected { border-color: var(--accent); background: var(--accent-light); }
.option-card.onsite { border-color: #e0a800; background: #fffbf0; }
.option-card.onsite:hover { border-color: #c48c00; }
.option-card.onsite.selected { border-color: var(--accent); background: var(--accent-light); }
.option-icon { font-size: 1.8rem; }
.option-text { font-weight: 600; color: var(--navy); font-size: 0.93rem; }
.option-sub { color: var(--muted); font-size: 0.78rem; margin-top: 2px; }

textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--navy);
  transition: border-color 0.2s;
  margin-bottom: 14px;
}
textarea:focus, input:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 110px; resize: vertical; }
label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 7px; }

.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.time-slot {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.time-slot:hover:not(:disabled) { border-color: var(--navy); }
.time-slot.selected { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.time-slot:disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.day-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.day-tab {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 9px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.day-tab.selected { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.summary-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05rem; }
.summary-label { color: var(--muted); }
.summary-value { color: var(--navy); font-weight: 600; text-align: right; max-width: 60%; }

.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
}
.booking-actions { display: flex; gap: 12px; margin-top: 24px; }
.booking-actions button { flex: 1; }

/* ── PRICE HINT IN BOOKING ── */
.price-hint {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 20px;
  display: none;
}
.price-hint strong { color: var(--accent); }
.price-hint.visible { display: block; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  text-align: left;
}
.faq-toggle { font-size: 1.4rem; color: var(--accent); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 60px 5% 50px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { max-width: 360px; margin: 0 auto; width: 100%; }
  .about-points { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .option-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-step { padding: 22px; }
  section { padding: 60px 5%; }
  .cal-grid { gap: 3px; }
  .cal-day { font-size: 0.8rem; }
}

/* ── SPINNER ── */
@keyframes helpo-spin { to { transform: rotate(360deg); } }
.spinner-ring {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: helpo-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 7px;
  flex-shrink: 0;
}
.cal-loading-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: rgba(247,246,242,0.82);
  z-index: 5;
  backdrop-filter: blur(2px);
}
.cal-loading-overlay.visible { display: flex; }
.cal-loading-overlay .cal-spin {
  width: 40px; height: 40px;
  border: 3px solid rgba(20,24,36,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: helpo-spin 0.8s linear infinite;
}
.cal-loading-overlay span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

/* ── CUSTOM CALENDAR ── */
.cal-container {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
#cal-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.cal-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.15s;
}
.cal-nav:hover { background: var(--border); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  font-family: inherit;
  background: none;
  border: none;
  cursor: default;
}
.cal-day.available {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.cal-day.available:hover { border-color: var(--accent); color: var(--accent); }
.cal-day.selected { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; font-weight: 700; }
.cal-day.past { opacity: 0.28; }
.cal-slots-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
}
.cal-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cal-slot {
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.cal-slot:hover { border-color: var(--accent); color: var(--accent); }
.cal-slot.selected { background: var(--accent); color: #fff; border-color: var(--accent); }
.cal-slot.booked { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.cal-slot.booked:hover { border-color: var(--border); color: var(--muted); }
