:root {
  --ink: #17212b;
  --muted: #697481;
  --paper: #fbfaf7;
  --white: #ffffff;
  --teal: #0e7c7b;
  --coral: #ee6a5f;
  --gold: #d7a83f;
  --mint: #dbeee9;
  --line: rgba(23, 33, 43, 0.13);
  --shadow: 0 24px 70px rgba(23, 33, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::selection {
  background: var(--coral);
  color: var(--white);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(23, 33, 43, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 190px;
  height: 77px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(23, 33, 43, 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.header-cta {
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px max(24px, calc((100vw - 1120px) / 2)) 56px;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 27, 34, 0.88) 0%, rgba(14, 27, 34, 0.7) 38%, rgba(14, 27, 34, 0.1) 78%),
    linear-gradient(0deg, rgba(14, 27, 34, 0.74) 0%, rgba(14, 27, 34, 0) 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(238, 106, 95, 0.34);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button-card {
  width: 100%;
  margin-top: 26px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: none;
}

.button-card-featured {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(238, 106, 95, 0.28);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(560px, 100%);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(23, 33, 43, 0.18);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.2rem;
}

.hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.trust-band {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 28px 0 0;
}

.trust-band span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.85;
}

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

.work-grid .section-heading,
.services .section-heading,
.process .section-heading,
.pricing .section-heading,
.faq .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.work-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(23, 33, 43, 0.08);
}

.work-card {
  min-height: 310px;
  padding: 28px;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.18;
}

.accent-coral {
  color: var(--coral);
}

.accent-teal {
  color: var(--teal);
}

.accent-gold {
  color: var(--gold);
}

.work-card span,
.work-card h3,
.work-card p {
  position: relative;
}

.work-card span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 60px 0 16px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.15;
}

.work-card p,
.service-item p,
.timeline-step p,
.price-card p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.8fr) 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-item span {
  color: var(--coral);
  font-weight: 800;
}

.service-item h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-item p {
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.timeline-step {
  position: relative;
  padding: 28px;
  border-top: 4px solid var(--teal);
  background: var(--mint);
  border-radius: 8px;
}

.timeline-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 42px;
  color: rgba(14, 124, 123, 0.55);
  font-size: 2.3rem;
  font-weight: 800;
}

.timeline-step strong {
  font-size: 1.25rem;
}

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

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(238, 106, 95, 0.5);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge-row .badge,
.badge-row .discount-badge {
  margin-bottom: 0;
}

.discount-badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0;
  color: var(--ink) !important;
  font-size: 2.2rem;
  font-weight: 800;
}

.old-price {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.custom-callout {
  margin-top: 28px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.custom-callout h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.custom-callout p {
  max-width: 780px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 22px 24px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy .lead {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 15px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
  transition: border 180ms ease, background 180ms ease;
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer .brand-logo {
  width: 230px;
  height: 94px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 128px 20px 36px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 27, 34, 0.9), rgba(14, 27, 34, 0.58)),
      linear-gradient(0deg, rgba(14, 27, 34, 0.86), rgba(14, 27, 34, 0.1) 60%);
  }

  .hero-stats,
  .trust-band,
  .intro,
  .work-grid,
  .timeline,
  .pricing-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .section {
    width: calc(100% - 32px);
    padding: 64px 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-card.featured {
    transform: none;
  }

  .contact-copy {
    position: static;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 128px;
    height: 52px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .button {
    width: 100%;
  }

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

  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
