:root {
  --ink: #080b10;
  --ink-soft: #1e2837;
  --muted: #657084;
  --line: #d9e0ea;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #0878ff;
  --blue-deep: #004fb8;
  --blue-soft: #e8f2ff;
  --warm: #f28f3b;
  --warm-soft: #fff0df;
  --green: #2f9f7b;
  --shadow: 0 22px 60px rgba(8, 11, 16, 0.12);
  --radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 120, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 52%, #eef4fb 100%);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(217, 224, 234, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(8, 11, 16, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue-deep);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% 5% 8%;
  border: 1px solid rgba(8, 120, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 120, 255, 0.14), rgba(242, 143, 59, 0.1)),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.hero-media img {
  position: relative;
  width: min(420px, 88%);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 35px rgba(0, 79, 184, 0.2));
}

.hero-content {
  padding: 2rem 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.pricing-grid .button {
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(8, 120, 255, 0.24);
}

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

.button-disabled {
  width: 100%;
  background: #e8edf4;
  color: #69758a;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
}

.section,
.band {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.band {
  border-block: 1px solid rgba(217, 224, 234, 0.72);
  background: rgba(255, 255, 255, 0.64);
}

.intro-grid,
.contact-grid,
.process-row {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro .section-kicker {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.intro p,
.section-heading p,
.process li,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 2rem;
  max-width: none;
  align-items: end;
}

.section-heading.center {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 2rem;
  text-align: center;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card,
.price-card,
.portfolio-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.service-card {
  min-height: 290px;
  padding: 1.25rem;
}

.service-number {
  display: inline-flex;
  margin-bottom: 2.5rem;
  color: var(--warm);
  font-weight: 800;
}

.service-card p,
.portfolio-copy p,
.price-card li,
.plan-note,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card.feature {
  grid-row: span 2;
}

.portfolio-visual {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 12%, transparent 12% 100%),
    linear-gradient(160deg, #08111f, #0878ff);
}

.portfolio-card.feature .portfolio-visual {
  min-height: 470px;
}

.visual-warm {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 16%, transparent 16%),
    linear-gradient(160deg, #0d1118, #f28f3b);
}

.visual-dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 14%, transparent 14%),
    linear-gradient(160deg, #05070b, #2f9f7b);
}

.portfolio-copy {
  padding: 1.2rem;
}

.portfolio-copy p,
.plan-name {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
}

.price-card.highlighted {
  border-color: rgba(8, 120, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(232, 242, 255, 0.82), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.plan-name {
  color: var(--blue-deep);
}

.price-card h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.price-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.6rem;
}

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

.process-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4.3rem;
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.7);
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  color: var(--warm);
  font-weight: 800;
}

.steps span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-detail {
  display: grid;
  gap: 0.35rem;
  max-width: 420px;
  margin-top: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--warm);
  background: var(--warm-soft);
}

.contact-detail span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 120, 255, 0.14);
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  color: var(--blue-deep);
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .section-heading.split,
  .process-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 320px;
    order: -1;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-card.feature {
    grid-row: auto;
  }

  .portfolio-card.feature .portfolio-visual,
  .portfolio-visual {
    min-height: 280px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .hero,
  .section,
  .intro-grid,
  .intro .section-kicker,
  .pricing-grid,
  .contact-grid,
  .process-row,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }

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

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

  .price-card,
  .service-card {
    min-height: auto;
  }

  .steps li {
    padding-left: 1rem;
    padding-top: 3.3rem;
  }

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