:root {
  --ink: #101317;
  --muted: #5d6876;
  --line: #dfe5ec;
  --paper: #f8fafc;
  --white: #ffffff;
  --teal: #0ab7b0;
  --teal-dark: #087f7a;
  --teal-soft: #dff8f6;
  --navy: #101820;
  --shadow: 0 20px 60px rgba(16, 19, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body.loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(10, 183, 176, 0.12), transparent 34%),
    var(--white);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-wrap {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.24), 0 0 42px rgba(10, 183, 176, 0.26);
  animation: loader-spin 1.1s linear infinite;
}

.loader-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: min(260px, 42vw);
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.18), 0 0 22px rgba(10, 183, 176, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(38px, 6vw, 76px) clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
}

.hero-content {
  max-width: 680px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 18px;
}

.hero-proof div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-proof strong,
.detail-item strong {
  display: block;
  margin-bottom: 6px;
}

.hero-proof span,
.detail-item span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(10, 183, 176, 0.28), 0 0 24px rgba(10, 183, 176, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.header-cta::before,
.button.primary::before {
  content: "";
  position: absolute;
  inset: -45% -70%;
  z-index: -1;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 255, 255, 0.2) 43%,
      rgba(159, 255, 251, 0.95) 50%,
      rgba(255, 255, 255, 0.22) 57%,
      transparent 66%,
      transparent 100%
    );
  transform: translateX(-75%) skewX(-18deg);
  animation: button-shine 2.4s linear infinite;
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--ink), #17242a);
}

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

.button.primary:hover {
  background: var(--teal);
  box-shadow: 0 18px 38px rgba(10, 183, 176, 0.34), 0 0 26px rgba(10, 183, 176, 0.32);
}

.header-cta:hover {
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.22), 0 0 24px rgba(10, 183, 176, 0.26);
}

@keyframes button-shine {
  0% {
    transform: translateX(-75%) skewX(-18deg);
  }

  100% {
    transform: translateX(75%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .button.primary,
  .header-cta::before,
  .button.primary::before {
    animation: none;
  }

  .header-cta,
  .button {
    transition: none;
  }

  .loader-logo-wrap {
    animation: none;
  }
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  border-radius: 10px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(10, 183, 176, 0.95), rgba(16, 24, 32, 0.18), rgba(10, 183, 176, 0.78));
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.14), 0 0 34px rgba(10, 183, 176, 0.34);
}

.hero-media img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
}

.service-band,
.work-section,
.pricing-section,
.contact-section,
.process-section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 56px);
  scroll-margin-top: 96px;
}

.service-band,
.pricing-section {
  background: var(--white);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.anchor-target {
  scroll-margin-top: 86px;
}

.section-anchor {
  scroll-margin-top: 12px;
}

.form-anchor {
  scroll-margin-top: 122px;
}

.section-copy {
  max-width: 760px;
  margin: -18px 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

.service-grid,
.work-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-card,
.work-card,
.price-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  padding: 28px;
}

.service-card p,
.work-card p,
.price-card p,
.contact-copy p,
.process-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--teal-dark);
  font-weight: 900;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
  align-items: start;
  background: var(--navy);
  color: var(--white);
}

.process-copy p {
  max-width: 620px;
  color: #c7d0dc;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.step strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 8px;
}

.work-card {
  overflow: hidden;
}

.work-card h3,
.work-card p {
  padding: 0 22px;
}

.work-card p {
  padding-bottom: 22px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.detail-item {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-preview {
  height: 170px;
  margin-bottom: 22px;
  background-color: var(--teal-soft);
  background-image:
    linear-gradient(135deg, rgba(10, 183, 176, 0.9), rgba(16, 24, 32, 0.7)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 14px, transparent 14px 28px);
}

.work-preview.creator {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(10, 183, 176, 0.95), transparent 24%),
    linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(8, 127, 122, 0.78));
}

.work-preview.local {
  background-image:
    linear-gradient(45deg, rgba(10, 183, 176, 0.78), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(0deg, rgba(16, 19, 23, 0.78) 0 12px, rgba(16, 19, 23, 0.35) 12px 24px);
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(10, 183, 176, 0.55);
  box-shadow: var(--shadow);
}

.price {
  color: var(--ink) !important;
  font-size: 2.25rem;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--white) !important;
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge.budget {
  color: var(--ink) !important;
  background: var(--teal-soft);
}

.badge.premium {
  background: var(--navy);
}

.pricing-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 700;
}

ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-note {
  display: grid;
  gap: 6px;
  max-width: 520px;
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
}

.contact-note span {
  color: var(--muted);
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfe;
  font: inherit;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 167, 165, 0.18);
  border-color: var(--teal);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 56px) 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(140px, 0.7fr) minmax(140px, 0.7fr) minmax(240px, 1fr);
  gap: 34px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  padding: 8px 10px;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 8px;
}

.footer-logo .brand-logo {
  width: min(240px, 62vw);
  max-height: 46px;
}

.footer-brand p,
.footer-cta p,
.footer-bottom p {
  margin: 0;
  color: #c7d0dc;
}

.footer-brand p {
  max-width: 430px;
}

.footer-column,
.footer-cta {
  display: grid;
  gap: 10px;
}

.footer-column h3,
.footer-cta h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-column a,
.footer-column span {
  color: #c7d0dc;
  font-weight: 600;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-cta {
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.footer-cta .button {
  width: fit-content;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero,
  .process-section,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .service-grid,
  .work-grid,
  .details-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding: 4px 2px 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .pricing-grid .price-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 118px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
  }

  .brand {
    max-width: 176px;
  }

  .brand-logo {
    width: 176px;
    max-height: 38px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .nav-links {
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding: 2px 0 4px;
    font-size: 0.84rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .hero,
  .service-band,
  .work-section,
  .pricing-section,
  .contact-section,
  .process-section {
    padding-left: 16px;
    padding-right: 16px;
    scroll-margin-top: 118px;
  }

  .anchor-target {
    scroll-margin-top: 118px;
  }

  .section-anchor {
    scroll-margin-top: 0;
  }

  .form-anchor {
    scroll-margin-top: 122px;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.15rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.85rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin: 22px 0 16px;
  }

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

  .hero-media {
    display: none;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .hero-proof div,
  .detail-item,
  .service-card,
  .price-card,
  .lead-form {
    padding: 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-copy {
    margin: -12px 0 22px;
  }

  .step {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .step strong {
    width: 40px;
    height: 40px;
  }

  .work-preview {
    height: 130px;
  }

  .pricing-grid {
    grid-auto-columns: minmax(248px, 88vw);
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .price {
    font-size: 1.9rem;
  }

  ul {
    line-height: 1.7;
  }

  input,
  select,
  textarea {
    padding: 12px;
  }

  .footer-main {
    gap: 26px;
  }

  .footer-logo .brand-logo {
    width: min(220px, 72vw);
  }

  .footer-bottom {
    display: grid;
  }
}
