﻿:root {
  --ink: #142034;
  --muted: #5a6575;
  --teal: #007a78;
  --teal-dark: #005f5d;
  --mint: #e9f7f3;
  --yellow: #ffc20f;
  --yellow-dark: #e3a900;
  --coral: #f2765c;
  --line: #d9e3e4;
  --surface: #ffffff;
  --soft: #f6fbfa;
  --shadow: 0 18px 50px rgba(20, 32, 52, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

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

.section-pad {
  padding: 88px clamp(20px, 5vw, 72px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 122, 120, 0.12);
  box-shadow: 0 8px 30px rgba(20, 32, 52, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  width: clamp(150px, 16vw, 190px);
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 7px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 10px 24px rgba(255, 194, 15, 0.28);
}

.button.primary.dark {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 122, 120, 0.22);
}

.button.secondary {
  color: var(--teal-dark);
  background: #fff;
  border-color: var(--teal);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  overflow: hidden;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 28px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 122, 120, 0.42);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(233, 247, 243, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h1::first-letter {
  letter-spacing: 0;
}

h1 span {
  color: var(--teal);
}

.hero h1 {
  max-width: 12ch;
}

.hero h1::selection,
.brand::selection {
  background: var(--yellow);
}

.hero-text {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 42px;
}

.trust-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #263449;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-media img {
  width: min(820px, 58vw);
  min-height: 640px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.proof {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  text-align: center;
  border-top: 1px solid rgba(0, 122, 120, 0.08);
}

.proof > p {
  margin-bottom: 42px;
  color: #334155;
  font-weight: 600;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.proof-grid div {
  display: grid;
  gap: 8px;
}

.proof-grid strong {
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.proof-grid span {
  color: var(--muted);
  font-weight: 600;
}

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

.section-heading.compact {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1.12;
}

.section-heading p:not(.eyebrow),
.process-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.real-work-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.service-item,
.example-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-item {
  padding: 30px;
}

.service-item span,
.example-item p,
.price-column p {
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.service-item h3,
.example-item h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-item p {
  color: var(--muted);
  line-height: 1.65;
}

.examples {
  background: var(--soft);
}

.example-item {
  overflow: hidden;
}

.example-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.example-item div {
  padding: 24px;
}

.portfolio-item img {
  padding: 34px;
  background: #0d141f;
  object-fit: contain;
}

.portfolio-item span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.text-link:hover {
  color: var(--teal-dark);
}

.process-pricing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #fbf6e8);
}

.process-copy {
  max-width: 560px;
}

.process-copy .button {
  margin-top: 20px;
}

.process-list {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(0, 122, 120, 0.2);
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.process-list p {
  color: var(--muted);
  line-height: 1.65;
}

.pricing {
  background: #fff;
}

.pricing-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(20, 32, 52, 0.08);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  gap: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.price-column {
  position: relative;
  padding: 34px 28px;
  min-height: 460px;
}

.price-column + .price-column {
  border-left: 1px solid var(--line);
}

.package-grid .price-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 32, 52, 0.06);
}

.package-grid .price-column + .price-column {
  border-left: 1px solid var(--line);
}

.price-column h3 {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: clamp(1.8rem, 2.4vw, 2.65rem);
}

.price-column span {
  display: block;
  min-height: 92px;
  color: var(--muted);
  line-height: 1.55;
}

.price-column ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding-left: 18px;
  color: #2f3d50;
}

.pricing-note {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.care-options {
  max-width: 1180px;
  margin: 72px auto 0;
}

.care-options .section-heading {
  margin-bottom: 32px;
}

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

.care-item {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.care-item p {
  margin-bottom: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.care-item h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.care-item span {
  color: var(--muted);
  line-height: 1.55;
}

.payment-scope {
  max-width: 1180px;
  margin: 72px auto 0;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

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

.scope-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.scope-item p {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scope-item h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.scope-item span {
  color: var(--muted);
  line-height: 1.6;
}

.featured {
  background: linear-gradient(180deg, #fffdf3, #ffffff);
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111827;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  background: var(--mint);
}

.contact-copy {
  max-width: 560px;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 122, 120, 0.16);
  box-shadow: 0 16px 34px rgba(20, 32, 52, 0.08);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #2d3b4f;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 122, 120, 0.12);
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hidden-field {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-note[data-state="success"] {
  color: #146c43;
  font-weight: 700;
}

.form-note[data-state="error"] {
  color: #9b1c1c;
  font-weight: 700;
}

.form-note[data-state="pending"] {
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .brand {
  flex: 0 0 auto;
}

.site-footer .brand img {
  width: 145px;
}

.site-footer a:last-child {
  color: var(--teal);
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--teal);
  font-weight: 800;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.legal-content {
  padding-top: 36px;
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-block ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    margin-left: auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: auto auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a {
    padding: 16px 0;
  }

  .hero,
  .process-pricing,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    width: 100%;
    max-width: 100vw;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-copy,
  .hero-text,
  .hero-actions {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    width: 100%;
    min-height: 420px;
    border-radius: var(--radius);
  }

  .service-grid,
  .example-grid,
  .pricing-panel,
  .proof-grid,
  .care-grid,
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-column + .price-column {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .package-grid .price-column,
  .package-grid .price-column + .price-column {
    border: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .section-pad {
    padding: 64px 20px;
  }

  .site-header {
    padding: 18px 20px;
  }

  .brand {
    max-width: 170px;
  }

  .brand img {
    width: 150px;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.65rem, 11.8vw, 3.35rem);
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-copy,
  .hero-text,
  .hero-actions,
  .trust-list {
    max-width: calc(100vw - 40px);
  }

  .hero-text {
    overflow-wrap: break-word;
  }

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

  .proof-grid,
  .service-grid,
  .example-grid,
  .pricing-panel,
  .care-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .price-column {
    padding: 34px 26px;
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
  }

  .process-list span {
    width: 48px;
    height: 48px;
  }

  .quote-form {
    padding: 24px;
  }

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

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
