:root {
  --navy: #06275f;
  --navy-2: #02163b;
  --ink: #09204d;
  --muted: #5d6b82;
  --teal: #03a9bf;
  --teal-2: #00d0d6;
  --sky: #e9f8fb;
  --line: #dce7f2;
  --card: #ffffff;
  --soft: #f6fbff;
  --gold: #ffb72b;
  --shadow: 0 24px 70px rgba(3, 22, 61, 0.13);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(3, 169, 191, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #ffffff 100%);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(9, 32, 77, 0.08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 178px;
  height: auto;
}

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

.nav-links a {
  color: #172b54;
  padding: 28px 0;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal);
  border-color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-toggle::before,
.mobile-toggle::after {
  position: absolute;
}

.mobile-toggle::before {
  transform: translateY(-7px);
}

.mobile-toggle::after {
  transform: translateY(7px);
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #006ea6);
  box-shadow: 0 16px 36px rgba(3, 169, 191, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(3, 169, 191, 0.3);
}

.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  border-color: #9ec9dc;
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--teal);
}

.btn-dark {
  color: #fff;
  background: var(--navy-2);
}

.btn-full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy-2);
  font-size: clamp(2.55rem, 5.4vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #374962;
  font-size: clamp(1.06rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(3, 169, 191, 0.12);
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-orb {
  position: absolute;
  inset: 14px 0 0 auto;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(3, 169, 191, 0.18), rgba(6, 39, 95, 0.06));
  filter: blur(0.2px);
}

.browser-card {
  position: absolute;
  right: 22px;
  top: 34px;
  width: min(100%, 610px);
  background: #fff;
  border: 1px solid rgba(9, 32, 77, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
}

.browser-top {
  height: 40px;
  background: #151a25;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fc665f;
}

.browser-top span:nth-child(2) {
  background: #f6c15b;
}

.browser-top span:nth-child(3) {
  background: #6bd672;
}

.browser-top small {
  margin-left: auto;
  color: #b7c1d1;
  font-size: 0.72rem;
}

.mock-site {
  position: relative;
  min-height: 360px;
  background: linear-gradient(180deg, #f5fbff 0%, #ffffff 100%);
}

.mock-hero {
  position: relative;
  min-height: 232px;
  padding: 42px 38px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 22, 59, 0.92), rgba(2, 22, 59, 0.35)),
    radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.45), transparent 12%),
    linear-gradient(135deg, #345e37, #162f22 52%, #a7c5b0);
}

.mock-hero h3 {
  max-width: 250px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mock-hero p {
  max-width: 270px;
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

.mock-button {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-2);
  font-weight: 800;
  font-size: 0.82rem;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}

.mock-cards div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
}

.float-card {
  position: absolute;
  width: 170px;
  background: #fff;
  border: 1px solid rgba(9, 32, 77, 0.1);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(3, 22, 61, 0.12);
  padding: 18px;
}

.float-card strong {
  display: block;
  color: var(--navy-2);
  font-size: 1.42rem;
  line-height: 1;
}

.float-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.float-card small {
  color: #0ca96d;
  font-weight: 900;
}

.float-one {
  left: 10px;
  top: 220px;
}

.float-two {
  right: -4px;
  top: 126px;
}

.float-three {
  right: 70px;
  bottom: 26px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 74px;
  margin-top: 14px;
}

.bars span {
  display: block;
  width: 16px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--teal-2), #1f7bb2);
}

.bars span:nth-child(1) { height: 28%; }
.bars span:nth-child(2) { height: 42%; }
.bars span:nth-child(3) { height: 58%; }
.bars span:nth-child(4) { height: 76%; }
.bars span:nth-child(5) { height: 92%; }

.checkmark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 12px auto 10px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0875a2);
  font-weight: 900;
  font-size: 1.4rem;
}

.trust-strip {
  border-top: 1px solid rgba(9, 32, 77, 0.08);
  border-bottom: 1px solid rgba(9, 32, 77, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 18px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #31435d;
  font-weight: 800;
  font-size: 0.9rem;
}

.trust-icon,
.card-icon,
.contact-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--teal);
  background: rgba(3, 169, 191, 0.12);
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 46px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.cta-card h2,
.page-section h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-head p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.price-card,
.form-shell,
.contact-card,
.feature-card,
.project-card,
.value-card,
.step-card,
.faq-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 32, 77, 0.09);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 45px rgba(3, 22, 61, 0.06);
}

.card {
  padding: 26px;
  min-height: 248px;
}

.card h3,
.feature-card h3,
.project-card h3,
.step-card h3,
.value-card h3,
.contact-card h3,
.faq-card h3 {
  margin: 16px 0 8px;
  color: var(--navy-2);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.card p,
.feature-card p,
.project-card p,
.step-card p,
.value-card p,
.contact-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 20px;
  color: #007ea5;
  font-weight: 900;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-card {
  overflow: hidden;
}

.project-image {
  min-height: 168px;
  padding: 22px;
  display: flex;
  align-items: end;
  color: #fff;
  background: linear-gradient(135deg, #0b2c65, #0aa6bb);
}

.project-image h3 {
  color: #fff;
  max-width: 220px;
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.project-body {
  padding: 18px;
}

.project-body h3 {
  margin-top: 0;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.sample-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(3, 169, 191, 0.12);
  color: #007a9d;
  font-size: 0.76rem;
  font-weight: 900;
}

.gradient-home { background: linear-gradient(135deg, rgba(2, 22, 59, 0.94), rgba(9, 107, 128, 0.76)), linear-gradient(45deg, #ddd1c7, #7b6a5d); }
.gradient-roof { background: linear-gradient(135deg, rgba(2, 22, 59, 0.95), rgba(6, 39, 95, 0.46)), linear-gradient(45deg, #283645, #91a7b9); }
.gradient-spa { background: linear-gradient(135deg, rgba(2, 22, 59, 0.75), rgba(3, 169, 191, 0.18)), linear-gradient(45deg, #d8b899, #f0e0d2); }
.gradient-auto { background: linear-gradient(135deg, rgba(2, 22, 59, 0.96), rgba(2, 22, 59, 0.42)), linear-gradient(45deg, #20242c, #6a7888); }
.gradient-food { background: linear-gradient(135deg, rgba(2, 22, 59, 0.92), rgba(6, 91, 123, 0.46)), linear-gradient(45deg, #504635, #dcae5f); }
.gradient-fitness { background: linear-gradient(135deg, rgba(2, 22, 59, 0.95), rgba(3, 169, 191, 0.32)), linear-gradient(45deg, #1f2a31, #91efdb); }

.process-line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.step-card {
  padding: 26px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0875a2);
  font-weight: 900;
  font-size: 1.15rem;
}

.preview-band {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 95% 20%, rgba(3, 169, 191, 0.54), transparent 28%),
    linear-gradient(135deg, #031942 0%, #06275f 58%, #058fab 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.preview-band .mark-bg {
  position: absolute;
  left: 22px;
  bottom: -26px;
  width: 150px;
  opacity: 0.2;
}

.preview-band-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.preview-band h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.preview-band p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.value-card {
  padding: 26px;
}

.site-footer {
  margin-top: 72px;
  background: linear-gradient(135deg, #02163b, #06275f);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.85fr 1.05fr;
  gap: 44px;
  padding: 48px 0;
}

.footer-brand img {
  width: 168px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-col p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.page-hero {
  padding: 76px 0 42px;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 40px;
  align-items: center;
}

.hero-mini-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(9, 32, 77, 0.09);
}

.hero-mini-card img {
  width: 96px;
  margin-bottom: 20px;
}

.hero-mini-card h2 {
  margin: 0;
  color: var(--navy-2);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.hero-mini-card p {
  margin-top: 12px;
  font-size: 1rem;
}

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

.feature-card {
  padding: 28px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.list-clean li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #3d4f68;
}

.list-clean li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--teal);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(3, 169, 191, 0.45);
  box-shadow: 0 24px 70px rgba(3, 169, 191, 0.18);
}

.price-card .badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 169, 191, 0.12);
  color: #007a9d;
  font-size: 0.76rem;
  font-weight: 900;
}

.price-card h3 {
  margin: 18px 0 8px;
  color: var(--navy-2);
  font-size: 1.35rem;
}

.price {
  margin: 0 0 12px;
  color: var(--navy-2);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.price-card p {
  color: var(--muted);
  margin: 0;
}

.price-card .list-clean {
  margin-bottom: 24px;
}

.price-card .btn {
  margin-top: auto;
}

.note-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--sky);
  color: #31516a;
  border: 1px solid rgba(3, 169, 191, 0.16);
}

.form-shell {
  padding: clamp(22px, 3.4vw, 44px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin: 0 0 8px;
  color: var(--navy-2);
  font-weight: 900;
}

.field small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.input,
select.input,
textarea.input {
  width: 100%;
  border: 1px solid #cbd9e8;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea.input {
  min-height: 118px;
  resize: vertical;
}

.input:focus,
textarea.input:focus,
select.input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(3, 169, 191, 0.12);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd9e8;
  border-radius: 14px;
  background: #fff;
  color: #334762;
  font-weight: 800;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-message {
  flex: 1 1 260px;
  min-height: 24px;
  color: var(--muted);
  font-weight: 800;
}

.form-message.error {
  color: #b42318;
}

.form-message.success {
  color: #057647;
}

.selected-plan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 18px;
  border: 1px solid rgba(3, 169, 191, 0.18);
  border-radius: var(--radius-sm);
  background: var(--sky);
}

.selected-plan strong {
  color: var(--navy-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 24px;
}

.contact-card h3 {
  margin-top: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
}

.about-card {
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 24%, rgba(3, 169, 191, 0.32), transparent 25%),
    linear-gradient(135deg, #02163b, #06275f 60%, #058fab);
  color: #fff;
  padding: 42px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-card img {
  display: block;
  margin: 0 auto 22px;
  width: 145px;
  height: auto;
}

.about-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.about-card p {
  color: rgba(255, 255, 255, 0.78);
}

.rich-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.rich-copy h2 {
  margin: 0 0 14px;
  color: var(--navy-2);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  padding: 24px;
}

.success-card {
  max-width: 760px;
  margin: 70px auto;
  text-align: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(9, 32, 77, 0.09);
  box-shadow: var(--shadow);
}

.success-card img {
  width: 120px;
  margin: 0 auto 18px;
}

.success-card h1 {
  margin: 0;
  color: var(--navy-2);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.success-card p {
  margin: 16px auto 0;
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-copy {
  max-width: 820px;
  color: var(--muted);
}

.legal-copy h2 {
  color: var(--navy-2);
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 520px;
  }

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

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

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

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

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-wrap {
    height: 72px;
  }

  .brand img {
    width: 148px;
  }

  .mobile-toggle {
    display: inline-flex;
    position: relative;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1,
  .page-hero h1 {
    letter-spacing: -0.052em;
  }

  .hero-art {
    min-height: 470px;
  }

  .browser-card {
    right: 0;
    width: 96%;
  }

  .float-one {
    left: 0;
    top: 258px;
  }

  .float-two {
    right: 0;
    top: 96px;
  }

  .float-three {
    right: 18px;
    bottom: 0;
  }

  .trust-grid,
  .process-line,
  .feature-grid,
  .value-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .preview-band-content,
  .footer-bottom,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cards-grid,
  .pricing-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn,
  .preview-band .btn,
  .footer-bottom-links a {
    width: 100%;
  }

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

  .mock-hero {
    min-height: 198px;
    padding: 30px 24px;
  }

  .mock-hero h3 {
    font-size: 1.55rem;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .float-card {
    width: 146px;
    padding: 14px;
  }

  .float-card strong {
    font-size: 1.18rem;
  }

  .page-hero {
    padding-top: 52px;
  }

  .section {
    padding: 54px 0;
  }
}

.center-actions {
  justify-content: center;
}
