:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-muted: #eef3f8;
  --surface-dark: #0f2138;
  --surface-dark-strong: #0b1728;
  --text: #0f1726;
  --muted: #607089;
  --line: rgba(15, 23, 38, 0.09);
  --shadow: 0 22px 70px rgba(7, 20, 38, 0.08);
  --shadow-soft: 0 16px 40px rgba(8, 25, 51, 0.07);
  --accent: #f5b73b;
  --accent-strong: #e0a11f;
  --accent-ink: #5f4200;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(245, 183, 59, 0.2), transparent 28%),
    radial-gradient(circle at right top, rgba(15, 33, 56, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

main {
  padding-top: calc(var(--header-height) + 24px);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-shell {
  padding: 22px 0;
}

.section-muted .container,
.hero-grid,
.cta-card {
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 245, 248, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 38, 0.06);
}

.header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface-dark), #1a3354);
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.97rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--surface-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 48px;
  padding: 0 18px;
}

.button-primary {
  background: var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-accent {
  background: linear-gradient(135deg, var(--accent), #ffd978);
  color: var(--accent-ink);
  box-shadow: 0 16px 36px rgba(245, 183, 59, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.hero-grid,
.section-muted .container,
.works-grid,
.service-card,
.trust-card,
.step-card,
.review-card,
.work-card,
.about-photo,
.about-copy,
.cta-card {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 18px 4px 18px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #7d8ca3;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-lead,
.section-heading p,
.service-card p,
.trust-card p,
.about-copy p,
.step-card p,
.work-copy p,
.review-card p,
.profile-copy p,
.footer-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 28px 0 22px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 38, 0.08);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.hero-benefits li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(245, 183, 59, 0.18);
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-main {
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, var(--surface-dark), var(--surface-dark-strong));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-card-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-service-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-service-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.65;
}

.hero-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card-profile {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 253, 0.96));
  box-shadow: var(--shadow-soft);
}

.profile-photo,
.photo-placeholder,
.work-image {
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(135deg, rgba(245, 183, 59, 0.2), rgba(255, 255, 255, 0.4)),
    linear-gradient(160deg, rgba(15, 33, 56, 0.12), rgba(15, 33, 56, 0.03));
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  align-self: stretch;
}

.hero-card-profile .profile-photo {
  height: 100%;
  min-height: 240px;
}

.hero-master-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: calc(var(--radius-lg) - 4px);
  object-fit: cover;
  object-position: center 22%;
}

.profile-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.profile-copy strong {
  font-size: 1.2rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 62ch;
  margin: 0;
}

.service-grid,
.trust-grid,
.steps-grid,
.reviews-grid,
.works-grid,
.price-preview-grid,
.price-sections,
.profiles-grid {
  display: grid;
  gap: 20px;
}

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

.price-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.works-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.trust-card,
.step-card,
.review-card,
.work-card,
.price-preview-card,
.price-section-card,
.extra-service-card,
.about-photo,
.about-copy,
.section-muted .container,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.service-card,
.trust-card,
.step-card,
.review-card,
.price-preview-card,
.price-section-card {
  padding: 24px;
}

.service-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(15, 23, 38, 0.14);
  box-shadow: 0 24px 50px rgba(9, 24, 42, 0.1);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(245, 183, 59, 0.18), rgba(15, 33, 56, 0.08));
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: var(--surface-dark);
}

.service-card p,
.trust-card p,
.step-card p,
.review-card p,
.work-copy p,
.extra-service-card p {
  margin: 12px 0 0;
}

.extra-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.extra-service-card {
  padding: 20px 22px;
}

.extra-service-card strong {
  font-size: 1rem;
}

.price-preview-card {
  display: grid;
  gap: 10px;
}

.price-preview-card span {
  color: var(--muted);
  line-height: 1.5;
}

.price-preview-card strong,
.price-row strong {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.price-preview-action {
  margin-top: 22px;
}

.price-page {
  padding-top: 48px;
  padding-bottom: 48px;
}

.price-page-head {
  margin-bottom: 28px;
}

.price-page-head p {
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.7;
}

.price-section-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.price-table {
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-row span {
  color: var(--text);
  line-height: 1.55;
}

.section-muted .container {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(238, 243, 248, 0.95), rgba(255, 255, 255, 0.88)),
    var(--surface-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.about-photo,
.about-copy {
  padding: 24px;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 4px);
}

.master-photo {
  display: block;
  width: 100%;
  min-height: 420px;
  border-radius: calc(var(--radius-xl) - 4px);
  object-fit: cover;
  object-position: center;
}

.photo-placeholder {
  display: none;
  min-height: 420px;
}

.about-copy {
  display: grid;
  align-content: center;
}

.about-copy p {
  margin: 18px 0 0;
  max-width: 60ch;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-muted);
  font-weight: 700;
}

.step-number {
  display: inline-flex;
  min-width: 54px;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-family: "Unbounded", sans-serif;
  font-size: 0.94rem;
}

.work-card {
  display: grid;
  grid-template-rows: 220px auto;
}

.work-image {
  border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 0 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  overflow: hidden;
}

.work-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-copy {
  padding: 22px;
}

.review-stars {
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
}

.profiles-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.profiles-heading {
  margin-bottom: 22px;
}

.profiles-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.profiles-trust span,
.contact-platforms a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text);
  font-weight: 700;
}

.profile-link-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 248, 0.92));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.profile-link-card:hover,
.profile-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 38, 0.14);
  box-shadow: 0 18px 40px rgba(9, 24, 42, 0.08);
}

.profile-link-card strong {
  font-size: 1rem;
}

.profile-link-card span {
  color: var(--muted);
  line-height: 1.55;
}

.cta-section {
  padding-bottom: 40px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background:
    radial-gradient(circle at right top, rgba(245, 183, 59, 0.22), transparent 25%),
    linear-gradient(135deg, var(--surface-dark), #163050);
  color: #fff;
}

.cta-card .eyebrow,
.cta-card p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-card h2 {
  max-width: 11ch;
}

.contact-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-platforms a {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-footer {
  padding: 0 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto auto;
  gap: 24px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-note,
.footer-meta p {
  margin: 0;
}

.footer-links,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.footer-links a,
.footer-meta a,
.footer-links span {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .service-grid,
  .trust-grid,
  .works-grid,
  .reviews-grid,
  .price-preview-grid,
  .price-sections,
  .profiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    display: grid;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 84px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button),
  .site-nav > .button {
    width: 100%;
  }

  .hero-grid,
  .section-muted .container,
  .profiles-panel,
  .footer-grid,
  .cta-card {
    padding: 24px;
  }

  .hero-grid,
  .about-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-photo {
    min-height: 220px;
  }

  .hero-card-profile .profile-photo {
    min-height: 220px;
  }

  .hero-master-photo {
    object-position: center;
  }

  .steps-grid {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  main {
    padding-top: calc(var(--header-height) + 10px);
  }

  .section-shell {
    padding: 14px 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero-grid,
  .section-muted .container,
  .about-photo,
  .about-copy,
  .cta-card,
  .footer-grid {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .hero-copy {
    padding: 2px 0 0;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

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

  .service-grid,
  .trust-grid,
  .works-grid,
  .reviews-grid,
  .profiles-grid,
  .price-preview-grid,
  .price-sections,
  .extra-services,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-rows: 180px auto;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .photo-placeholder {
    min-height: 280px;
  }

  .master-photo {
    min-height: 280px;
  }

  .footer-links,
  .footer-meta {
    gap: 8px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text small {
    font-size: 0.74rem;
  }

  .button {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-grid,
  .section-muted .container,
  .about-photo,
  .about-copy,
  .cta-card,
  .footer-grid {
    padding: 18px 14px;
  }
}
