:root {
  --orange: #ff6900;
  --orange-dark: #e85d00;
  --navy: #06162b;
  --text: #142033;
  --muted: #667085;
  --line: #e8edf3;
  --soft: #f7f9fc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(6, 22, 43, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.45;
}

body,
.site-header,
.hero,
.container,
.form-card,
.trust,
.section,
.final-cta,
.site-footer {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(232, 237, 243, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.brand span {
  color: var(--orange);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 30px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.btn.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 105, 0, 0.25);
}

.header-cta {
  padding: 13px 18px;
  font-size: 14px;
}

.header-cta:hover,
.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--orange-dark);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: #173154;
}

.btn {
  padding: 15px 18px;
  font-size: 15px;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 700px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0.5) 46%, rgba(255, 255, 255, 0.1) 66%, rgba(255, 255, 255, 0) 100%),
    url("assets/hero-toiture-premium.webp") 64% center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
  padding: 78px 0 76px;
}

.hero-copy {
  max-width: 570px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid #ffd8bb;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.subtitle {
  max-width: 540px;
  margin: 0 0 28px;
  color: #23334b;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  font-weight: 800;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  content: "\2713";
  display: grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.stars {
  padding: 2px 6px;
  border-radius: 4px;
  background: #00b67a;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
}

.stars.orange {
  display: inline-block;
  margin-bottom: 12px;
  background: var(--orange);
}

.hero-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #173154;
  font-size: 13px;
  font-weight: 800;
}

.hero-mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 49, 84, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.form-card {
  min-width: 0;
  max-width: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(6, 22, 43, 0.18);
  backdrop-filter: blur(10px);
}

.form-head {
  margin-bottom: 18px;
}

.form-head p {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-head h2 {
  margin: 0 0 4px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.form-price-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 7px 0 8px;
  padding: 8px 11px;
  border: 1px solid #ffd8bb;
  border-radius: 999px;
  background: #fff3e8;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  max-width: 100%;
  white-space: normal;
}

.form-price-chip strong {
  color: var(--orange);
  font-size: 15px;
}

.form-head span,
.hint,
.secure {
  color: var(--muted);
  font-size: 13px;
}

.progress {
  height: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef2f7;
}

.progress-bar {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ff9d4c);
  transition: width 0.25s ease;
}

.step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.step.is-active {
  display: block;
}

.step legend {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hint {
  margin: -6px 0 14px;
}

.step label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.step label:hover {
  border-color: #ffc49c;
  background: #fffaf6;
}

.step input[type="radio"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.step input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

.step input:focus {
  outline: 3px solid rgba(255, 105, 0, 0.16);
  border-color: #ffb27a;
}

.step label:has(input:not([type="radio"]):not([type="checkbox"])) {
  display: block;
  min-height: 0;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.privacy {
  align-items: flex-start !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.privacy input {
  margin-top: 3px;
  accent-color: var(--orange);
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.form-actions .btn {
  flex: 1;
}

.secure {
  margin: 14px 0 0;
  text-align: center;
}

.success {
  padding: 24px;
  border-radius: 18px;
  background: #fff7ed;
  color: var(--navy);
}

.success h3 {
  margin-top: 0;
}

.trust {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 22, 43, 0.1);
}

.trust div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust div:last-child {
  border: 0;
}

.trust span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff3e8;
  color: var(--orange);
  font-weight: 900;
}

.trust strong {
  color: var(--navy);
}

.trust p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 68px 0 0;
}

.section h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0;
}

.cards {
  display: grid;
  gap: 26px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(6, 22, 43, 0.05);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.card h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: #344054;
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.project {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(6, 22, 43, 0.05);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after figure {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(6, 22, 43, 0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.before-after figure:nth-child(2) figcaption {
  background: var(--orange);
}

.project h3 {
  margin: 20px 20px 4px;
  color: var(--navy);
}

.project p {
  margin: 0 20px 20px;
  color: #344054;
}

.reviews .card {
  min-height: 155px;
}

.reviews strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.steps {
  padding-bottom: 0;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-row > div {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.step-row b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
}

.step-row h3 {
  margin: 14px 0 6px;
  color: var(--navy);
}

.step-row p {
  margin: 0;
  color: var(--muted);
}

.faq {
  padding-bottom: 56px;
}

.faq details {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq summary {
  padding: 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #06162b, #0c2748);
  color: #fff;
}

.final-cta h2 {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
}

.final-cta p {
  margin: 0;
  color: #d8e2ee;
}

.site-footer {
  margin-top: 54px;
  padding: 44px 0 22px;
  background: #081d3a;
  color: #fff;
}

.site-footer .container {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.site-footer p,
.site-footer .copyright {
  color: #c9d3e1;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #fff;
}

.site-footer h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.site-footer .copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 430px;
    gap: 34px;
  }

  .hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: auto;
    padding: 16px 20px;
  }

  .site-header > * {
    min-width: 0;
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    order: 3;
    justify-content: center;
    width: 100%;
    gap: 18px;
  }

  .header-cta {
    max-width: 100%;
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
    white-space: normal;
  }

  .hero {
    display: block;
    min-height: auto;
    background: #fff;
  }

  .hero-bg {
    position: relative;
    height: 300px;
    background:
      linear-gradient(180deg, rgba(6, 22, 43, 0.1), rgba(6, 22, 43, 0.1)),
      url("assets/hero-toiture-premium.webp") center center / cover no-repeat;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 0 42px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin-top: -34px;
    padding: 26px 20px 10px;
    border-radius: 22px 22px 0 0;
    background: #fff;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero h2 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .subtitle {
    font-size: 16px;
  }

  .form-card {
    width: 100%;
    max-width: 640px;
    margin: auto;
  }

  .trust {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .trust div:nth-child(2) {
    border-right: 0;
  }

  .trust div {
    border-bottom: 1px solid var(--line);
  }

  .trust div:nth-child(n+3) {
    border-bottom: 0;
  }

  .cards.three,
  .projects,
  .step-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta img {
    width: 80px;
    margin: auto;
  }

  .final-cta .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
    max-width: 100%;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand {
    font-size: 22px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    flex: 0 0 100%;
    width: auto;
    margin-top: 4px;
  }

  .hero-bg {
    height: 260px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .check-list {
    font-size: 15px;
  }

  .rating {
    gap: 8px;
    font-size: 14px;
  }

  .hero-mini-trust {
    gap: 8px;
  }

  .hero-mini-trust span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .form-card {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .form-head h2 {
    font-size: 23px;
  }

  .step legend {
    font-size: 18px;
  }

  .step label {
    align-items: flex-start;
    font-size: 14px;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .trust {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .trust div {
    padding: 20px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .trust div:last-child {
    border-bottom: 0 !important;
  }

  .section {
    padding-top: 46px;
  }

  .section h2 {
    font-size: 27px;
  }

  .card {
    padding: 22px;
  }

  .before-after {
    grid-template-columns: 1fr 1fr;
  }

  .before-after figure {
    min-height: 130px;
  }

  .project h3 {
    font-size: 18px;
  }

  .site-footer .container {
    width: calc(100% - 28px);
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 19px;
  }

  .hero-bg {
    height: 230px;
  }

  .brand {
    font-size: 20px;
  }
}
