:root {
  --bg-0: #111315;
  --bg-1: #1a1d20;
  --bg-2: #222629;
  --text-1: #f2f3f3;
  --text-2: #9da3a6;
  --accent: #f47b20;
  --accent-2: #ff9f1c;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-alt { background: var(--bg-1); }
.section-dark { background: var(--bg-0); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.section-title {
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 20ch;
}
.section-lead {
  color: var(--text-2);
  font-size: 1.02rem;
  max-width: 68ch;
  margin-bottom: 48px;
}
.section-inner-narrow { max-width: 800px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #16110a;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-1);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-2); }
.btn-dark {
  background: var(--bg-0);
  color: var(--text-1);
}
.btn-dark:hover { background: var(--bg-1); }
.btn-dark-outline {
  background: transparent;
  border: 1px solid rgba(17, 19, 21, 0.35);
  color: var(--bg-0);
}
.btn-dark-outline:hover { background: rgba(17, 19, 21, 0.08); }
.btn-compact { padding: 11px 22px; font-size: 0.88rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(17, 19, 21, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--accent-2); margin-left: 3px; }

.nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: var(--text-2);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--text-1); }

.header-inner .btn-primary { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 24px;
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  color: var(--text-2);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 14px; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 77px);
  min-height: calc(100svh - 77px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,19,21,0.9) 0%, rgba(17,19,21,0.6) 30%, rgba(17,19,21,0.2) 55%, rgba(17,19,21,0.25) 100%),
    linear-gradient(0deg, rgba(17,19,21,0.97) 0%, rgba(17,19,21,0.75) 28%, rgba(17,19,21,0.1) 65%, rgba(17,19,21,0) 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  width: 100%;
}
.hero-content-split {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-top: 100px;
}
.hero-text { max-width: 640px; }
.hero-headline { max-width: 900px; }

.label {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 13ch;
}
.hero-headline h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  max-width: 15ch;
}
.hero-headline h1 em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent-2);
}
.hero-foot {
  align-self: flex-end;
  max-width: 420px;
  text-align: right;
}
.hero-sub {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-foot .hero-actions { justify-content: flex-end; }
.trust-line {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-2);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.card {
  position: relative;
  perspective: 1400px;
  cursor: pointer;
}
.card:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; border-radius: var(--radius); }
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
  transform-style: preserve-3d;
}
.card.is-flipped .card-inner { transform: rotateY(180deg); }
.card-face {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.card-front { height: 100%; }
.card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-card-cta {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.02rem;
  text-align: center;
}
.card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 0.94rem; }
.card-arrow {
  position: absolute;
  top: 30px;
  right: 26px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color 0.25s var(--ease);
}
.card:hover .card-arrow { color: var(--accent-2); }

/* Gallery */
.gallery { margin-top: 64px; }
.gallery-lead {
  color: var(--text-2);
  font-size: 0.98rem;
  max-width: 60ch;
  margin-bottom: 40px;
}
.gallery-rows {
  display: grid;
  gap: 20px;
}
.gallery-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.gallery-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-row:hover .gallery-photo img { transform: scale(1.05); }
.gallery-copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-copy h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.gallery-copy p { color: var(--text-2); font-size: 1rem; }

/* Advantages */
.advantages-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.advantage {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.advantage-num {
  display: block;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent-2);
  letter-spacing: -0.02em;
}
.advantage-label {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 1rem;
}
.advantage p { margin-top: 10px; color: var(--text-2); font-size: 0.92rem; }

.advantages-list {
  list-style: none;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.advantages-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
  font-size: 0.96rem;
}
.advantages-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 1px;
  background: var(--accent-2);
}

/* Process */
.process {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  position: relative;
}
.process-step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid rgba(244, 123, 32, 0.45);
}
.process-index {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-2); font-size: 0.94rem; }

/* Pricing */
.price-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 8px;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.price-card:hover {
  border-color: rgba(244, 123, 32, 0.5);
  transform: translateY(-3px);
}
.price-card-label {
  display: block;
  color: var(--text-2);
  font-size: 0.92rem;
  font-weight: 600;
}
.price-card-value {
  display: block;
  margin-top: 12px;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent-2);
  letter-spacing: -0.01em;
}
.price-card-value small { font-size: 1.1rem; font-weight: 700; }
.price-card-note {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 0.9rem;
}

/* Trust / reviews */
.trust-copy { color: var(--text-2); max-width: 56ch; }
.trust-header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.trust-intro .section-title { margin-bottom: 12px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  align-self: flex-start;
}
.google-icon { width: 30px; height: 30px; flex-shrink: 0; }
.google-badge-copy { display: flex; flex-direction: column; gap: 2px; }
.google-badge-score {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-1);
}
.google-badge-stars { color: var(--accent-2); font-size: 0.9rem; margin-left: 4px; }
.google-badge-label { font-size: 0.82rem; color: var(--text-2); }

.stats-note { margin-top: 28px; font-size: 0.78rem; color: var(--text-2); opacity: 0.7; }

.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.review {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.review-text { color: var(--text-2); font-size: 0.96rem; }
.review-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.reviews-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  color: var(--text-2);
  font-size: 0.94rem;
  max-width: 640px;
}
.google-icon-sm { width: 16px; height: 16px; flex-shrink: 0; }

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
}
.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p { color: var(--text-2); font-size: 0.96rem; }

/* SEO text */
.seo-text p { color: var(--text-2); font-size: 0.98rem; margin-bottom: 18px; }
.seo-text p:last-child { margin-bottom: 0; }
.seo-text a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}
.seo-text a:hover { color: var(--accent); }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 80px 0;
}
.cta-inner { text-align: left; max-width: 720px; }
.cta h2 {
  color: #16110a;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta p {
  color: rgba(22, 17, 10, 0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 48ch;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #0c0d0f;
  padding: 60px 0 24px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand { max-width: 320px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-logo .logo-img { width: 36px; height: 36px; border-radius: 50%; }
.footer-desc { color: var(--text-2); font-size: 0.9rem; }
.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  color: var(--text-2);
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color 0.2s var(--ease);
}
.footer-link:hover { color: var(--accent-2); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  margin-bottom: 0;
}
.footer-social svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-phone { color: var(--text-1); font-weight: 700; font-size: 1.05rem; }
.footer-address { color: var(--text-2); font-size: 0.88rem; margin-top: 4px; }
.footer-legal {
  max-width: 1320px;
  margin: 40px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-credit a { color: var(--text-2); transition: color 0.2s var(--ease); }
.footer-credit a:hover { color: var(--accent-2); }

@media (min-width: 640px) {
  .footer-legal { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Mobile call bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  background: var(--accent);
  color: #16110a;
  font-weight: 700;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease);
}

/* Tablet+ */
@media (max-width: 719px) {
  .hero-foot { align-self: flex-start; max-width: 100%; text-align: left; }
  .hero-foot .hero-actions { justify-content: flex-start; }
  .hero-content-split { padding-top: 56px; gap: 28px; }
}

@media (min-width: 720px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { max-width: 520px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-row { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .price-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 880px) {
  .nav { display: flex; gap: 22px; }
  .header-inner .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .mobile-call-bar { display: none; }
  body { padding-bottom: 0; }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .trust-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .trust-intro .section-title { margin-bottom: 12px; }
}

@media (min-width: 1180px) {
  .nav { gap: 28px; }
}

