:root {
  --bg: #080b10;
  --bg-soft: #0f141c;
  --surface: #151c26;
  --surface-soft: #1c2633;
  --text: #f4f7fb;
  --muted: #99a7b8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff5f3a;
  --accent-2: #45d8b3;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 8%, rgba(69, 216, 179, 0.13) 0%, transparent 35%),
              radial-gradient(circle at 90% 20%, rgba(255, 95, 58, 0.12) 0%, transparent 40%),
              linear-gradient(180deg, #070a0f 0%, #0a1017 50%, #080b10 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  z-index: -1;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

.ambient-a {
  width: 240px;
  height: 240px;
  top: 12%;
  right: -60px;
  background: rgba(255, 95, 58, 0.24);
}

.ambient-b {
  width: 320px;
  height: 320px;
  left: -90px;
  bottom: 15%;
  background: rgba(69, 216, 179, 0.17);
}

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

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

.container {
  width: min(1160px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-tag,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.section-tag::before,
.tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(255, 95, 58, 0.35);
}

h1,
h2,
h3 {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  margin-top: 0.75rem;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--accent), #ff9e44 45%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.74rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn[href^="tel:"]::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.btn[href^="tel:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}


.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(110deg, #ff6d48 0%, #ff4a3f 48%, #ff8f3c 100%);
  box-shadow: 0 12px 25px rgba(255, 85, 52, 0.32);
}


.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1.02rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 70;
  background: linear-gradient(90deg, var(--accent), #ff9f50, var(--accent-2));
  box-shadow: 0 5px 20px rgba(255, 90, 58, 0.45);
}

.site-header {
  position: relative;
  z-index: 20;
  padding-top: 0.65rem;
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
}

.brand-main {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
}

.header-cta {
  display: inline-flex;
  gap: 0.62rem;
}

.hero {
  padding: 2.5rem 0 1.2rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-intro {
  margin-top: 1rem;
  color: #d5dee8;
  max-width: 62ch;
  font-size: 1.03rem;
}

.hero-points {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #d7e0ea;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0.6rem;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #d7e0ea;
  padding: 0.46rem 0.62rem;
  border-radius: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-rail {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-rail-item {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border-radius: 14px;
  padding: 0.8rem;
}

.hero-rail-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.hero-rail-item span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  display: grid;
  gap: 0.8rem;
}

.hero-main {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 440px;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.06), rgba(8, 11, 16, 0.45));
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(8, 11, 16, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  display: grid;
  gap: 0.15rem;
  z-index: 1;
}

.hero-badge strong {
  color: #fff;
  font-size: 0.9rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-specs {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
  z-index: 1;
}

.hero-specs span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 11, 16, 0.78);
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.hero-thumbs img {
  border-radius: 16px;
  border: 1px solid var(--line);
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.quote-form {
  margin-top: 1.55rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 18px;
  padding: 1.35rem;
}

.quote-head h2 {
  font-size: 2.1rem;
}

.quote-head p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.quote-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.quote-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 14px;
  padding: 0.95rem;
  display: grid;
  gap: 0.35rem;
}

.quote-item strong {
  color: var(--text);
  font-size: 0.98rem;
}

.quote-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.quote-grid .btn {
  min-height: 100%;
}

.quote-grid label {
  display: grid;
  gap: 0.45rem;
  color: #dbe3ed;
  font-size: 0.9rem;
}

.quote-grid input,
.quote-grid select {
  background: #0d1219;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.78rem;
  outline: none;
}

.quote-grid input:focus,
.quote-grid select:focus {
  border-color: rgba(69, 216, 179, 0.85);
  box-shadow: 0 0 0 4px rgba(69, 216, 179, 0.16);
}

.stats {
  padding-top: 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 1.2rem;
}

.stat-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.stat-label {
  color: #d6dfe9;
}

.funnel-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.funnel-step {
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border-radius: 16px;
  padding: 1.2rem;
}

.step-no {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.funnel-step p {
  color: #cfd9e5;
}

.service-grid {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #111923 0%, #0f151d 100%);
  border-radius: 16px;
  padding: 1.2rem;
}

.service-card p {
  color: #cfdae7;
}

.service-card ul {
  margin: 0.8rem 0 0.9rem;
  padding-left: 1rem;
  color: #d6dfeb;
}

.service-card li {
  margin-bottom: 0.35rem;
}

.service-note {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 70ch;
}

.inline-link {
  color: var(--accent-2);
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.inline-link:hover {
  border-color: var(--accent-2);
}

.focus-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: stretch;
}

.focus-image {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
}

.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.focus-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #edf3f9;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 16, 0.9));
}

.focus-copy {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.focus-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.focus-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.025);
}

.focus-item h3,
.price-card h3,
.contact-card h3,
.service-card h3,
.funnel-step h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.focus-item p {
  color: #d4deea;
}

.focus-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 1rem;
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, 34vw);
}

.gallery-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.05rem;
  color: #eef4fb;
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 16, 0.92));
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
}

.offer-copy p {
  margin-top: 1rem;
  color: #d6e0ea;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
  padding: 1rem;
}

.price-name {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: var(--accent-2);
}

.price-card ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: #d4deea;
}

.price-card li {
  margin-bottom: 0.33rem;
}

.price-card.highlighted {
  border-color: rgba(255, 95, 58, 0.55);
  background: linear-gradient(180deg, rgba(255, 95, 58, 0.18), rgba(255, 95, 58, 0.04));
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  background: transparent;
  color: #f3f7fc;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  padding: 0 1.05rem;
  color: #cdd8e7;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 1.05rem 1.05rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-card {
  margin-top: 0.75rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-card p,
.contact-card a {
  color: #d6e1ec;
}

.contact-card ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
  color: #d6e1ec;
}

.contact-card li {
  margin-bottom: 0.3rem;
}

.contact-map {
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  padding: 2.2rem 0 4.6rem;
}

.final-cta-inner {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(120deg, rgba(255, 95, 58, 0.22), rgba(69, 216, 179, 0.2));
  border-radius: 18px;
  padding: 1.35rem;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer {
  padding: 1.2rem 0 6rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  color: #aab7c7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.footer-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.footer-signature a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.footer-signature a:hover {
  color: var(--accent);
}

.mobile-cta-bar {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: none;
  gap: 0.5rem;
  pointer-events: none;
  z-index: 80;
}

.mobile-cta-bar .btn {
  flex: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1099px) {
  .hero-grid,
  .offer-grid,
  .contact-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .funnel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .offer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .focus-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.6rem 0;
  }

  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .site-header {
    padding-top: 0.45rem;
  }

  .header-inner {
    min-height: auto;
    padding: 0.55rem 0 0.35rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .brand-main {
    font-size: 1.64rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .header-cta {
    width: 100%;
  }

  .header-cta .btn {
    width: 100%;
    min-height: 54px;
    padding: 0.9rem 1rem;
    font-size: 0.98rem;
    white-space: nowrap;
    border-radius: 16px;
  }

  .hero {
    padding: 0.95rem 0 0.6rem;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.2rem);
    line-height: 0.94;
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .section-head {
    margin-bottom: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-main {
    min-height: 260px;
    border-radius: 18px;
  }

  .hero-thumbs img {
    height: 110px;
  }

  .hero-badge {
    max-width: calc(100% - 28px);
  }

  .hero-specs {
    display: none;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail-item {
    padding: 0.72rem;
  }

  .quote-form {
    margin-top: 1rem;
    padding: 1rem;
  }

  .quote-head h2 {
    font-size: 1.8rem;
  }

  .service-grid,
  .funnel-grid,
  .stats-grid,
  .offer-cards,
  .quote-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-card figcaption {
    font-size: 0.82rem;
    padding: 0.8rem;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .focus-image {
    min-height: 300px;
  }

  .focus-thumb {
    height: 150px;
  }

  .contact-map {
    min-height: 280px;
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }

  .mobile-cta-bar {
    display: flex;
    left: 0.5rem;
    right: 0.5rem;
    bottom: calc(0.5rem + env(safe-area-inset-bottom));
    padding: 0;
  }

  .mobile-cta-bar .btn {
    min-height: 52px;
    font-size: 0.98rem;
  }
}
