* {
  box-sizing: border-box;
}

:root {
  --ink: #102033;
  --muted: #647284;
  --soft: #eef3f8;
  --line: rgba(16, 32, 51, 0.12);
  --card: #ffffff;
  --navy: #102033;
  --blue: #2458d3;
  --teal: #12b7a5;
  --amber: #f59e0b;
  --green: #16a34a;
  --surface: #f7f9fc;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 243, 248, 0.88), rgba(255, 255, 255, 0.94) 44%, #ffffff),
    var(--surface);
  font-family: 'Inter', Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(36, 88, 211, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(18, 183, 165, 0.09), transparent 36%);
  pointer-events: none;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 250px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px;
  background:
    linear-gradient(135deg, rgba(18, 183, 165, 0.18), transparent 38%),
    linear-gradient(135deg, var(--navy), #183c75);
  box-shadow: 0 14px 30px rgba(16, 32, 51, 0.16);
}

nav a {
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

nav a:active {
  transform: translateY(0);
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1742a4);
  box-shadow: 0 14px 28px rgba(36, 88, 211, 0.24);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(36, 88, 211, 0.3);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(18, 183, 165, 0.45);
  outline-offset: 3px;
}

.btn.small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 14px;
}

.btn.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 56px;
  align-items: start;
  min-height: auto;
  padding: 34px 0 58px;
}

.pill,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(36, 88, 211, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  color: #1742a4;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.05);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  justify-content: center;
  margin: 0 auto 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.subtext {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-grid div {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.07);
  font-size: 14px;
  font-weight: 800;
}

.trust-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  border: 1px solid rgba(18, 183, 165, 0.24);
  border-radius: 8px;
  padding: 15px 16px;
  background: rgba(236, 253, 245, 0.72);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.06);
}

.urgency-banner span {
  color: #0f766e;
  font-weight: 900;
}

.urgency-banner strong {
  font-size: 14px;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.hero-flow div {
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.07);
}

.hero-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.hero-flow strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.hero-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-card,
.form-card,
.package-card,
.template-card,
.process-card,
.process-note,
.testimonial-card,
details {
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.08);
}

.hero-card {
  overflow: hidden;
  padding: 18px;
  box-shadow: var(--shadow);
}

.deliverable-card {
  border-radius: 8px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 183, 165, 0.32), transparent 38%),
    linear-gradient(135deg, var(--navy), #183c75);
}

.card-kicker {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deliverable-card h2 {
  max-width: 430px;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

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

.deliverable-list div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.deliverable-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.deliverable-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.dark-card {
  margin-top: 14px;
  border-radius: 8px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 183, 165, 0.42), transparent 34%),
    linear-gradient(135deg, var(--navy), #183c75);
}

.dark-card p {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.dark-card h2 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.before-after {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.before-after div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.before-after strong {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
}

.before-after p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.section {
  padding: 72px 0;
}

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

.section-title h2,
.form-header h2,
.faq h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.form-header h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.section-title p,
.form-header p,
.template-card p,
.package-card p,
.process-card p,
details p,
footer p {
  color: var(--muted);
  line-height: 1.65;
}

.selection-note {
  display: inline-flex;
  width: fit-content;
  margin: 14px auto 0;
  border: 1px solid rgba(18, 183, 165, 0.24);
  border-radius: 999px;
  padding: 9px 14px;
  color: #0f766e !important;
  background: rgba(236, 253, 245, 0.72);
  font-size: 14px;
  font-weight: 900;
}

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

.package-card,
.template-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.package-card {
  height: 100%;
}

.package-card:hover,
.template-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: 0 24px 60px rgba(36, 88, 211, 0.12);
}

.package-card.selected,
.template-card.selected {
  border-color: rgba(36, 88, 211, 0.54);
  box-shadow: 0 24px 66px rgba(36, 88, 211, 0.16);
}

.badge,
.template-card.selected::after {
  position: absolute;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #0f766e);
  box-shadow: 0 12px 24px rgba(18, 183, 165, 0.22);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.badge {
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.template-card.selected::after {
  content: "Selected";
  top: 18px;
  right: 18px;
}

.package-card h3,
.template-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  margin: 18px 0 22px;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--navy);
  background: rgba(238, 243, 248, 0.72);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

ul {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}

li {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.45;
}

li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateY(-1px);
}

.package-card button,
.template-card button,
form button {
  width: 100%;
}

.package-card .select-package-btn {
  margin-top: auto;
}

.template-image-wrap {
  position: relative;
  height: 360px;
  margin: -12px -12px 22px;
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.template-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.template-card:hover .template-image-wrap img {
  transform: scale(1.035);
}

.template-card p {
  min-height: 86px;
}

.template-card button {
  margin-top: auto;
}

.form-card {
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.selected-price {
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 17px 21px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.18);
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 18px;
}

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

label {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

form button {
  font-weight: 700;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(36, 88, 211, 0.65);
  box-shadow: 0 0 0 4px rgba(36, 88, 211, 0.12);
}

.success {
  margin-top: 24px;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 8px;
  padding: 24px;
  background: rgba(240, 253, 244, 0.88);
}

.hidden {
  display: none;
}

pre {
  overflow: auto;
  border-radius: 8px;
  padding: 16px;
  color: #dbeafe;
  background: var(--navy);
}

.process-section {
  position: relative;
}

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

.process-card {
  position: relative;
  min-height: 374px;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-card.featured {
  border-color: rgba(18, 183, 165, 0.34);
  background:
    linear-gradient(180deg, rgba(236, 253, 245, 0.72), #ffffff 48%);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(16, 32, 51, 0.08);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border: 1px solid rgba(36, 88, 211, 0.16);
  border-radius: 8px;
  color: var(--blue);
  background: #eef4ff;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.process-card p {
  margin-bottom: 18px;
}

.process-card ul {
  margin: 0;
}

.process-card li {
  margin: 10px 0;
  font-size: 14px;
}

.process-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.92);
}

.process-note strong {
  display: block;
  margin-bottom: 6px;
}

.process-note span {
  color: var(--muted);
}

.testimonials-section {
  padding-top: 52px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.testimonial-card.featured {
  border-color: rgba(36, 88, 211, 0.28);
  box-shadow: 0 24px 60px rgba(36, 88, 211, 0.12);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-right: 4px solid rgba(36, 88, 211, 0.14);
  border-bottom: 4px solid rgba(36, 88, 211, 0.14);
}

.stars {
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 15px;
  font-weight: 900;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.testimonial-card strong {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
}

.faq {
  max-width: 850px;
}

details {
  margin: 14px 0;
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

summary + p {
  margin-top: 12px;
  margin-bottom: 0;
}

.thank-you-card {
  max-width: 880px;
  margin: 40px auto;
}

.thank-you-card h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.contact-section {
  display: grid;
  gap: 22px;
}

.contact-card {
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(18, 183, 165, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.contact-card h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-form-card {
  box-shadow: var(--shadow);
}

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

.contact-info-card {
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.08);
}

.contact-info-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.contact-info-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.contact-info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

footer {
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  padding: 34px 20px;
  text-align: center;
}

footer a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 48px;
  }

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

@media (max-width: 920px) {
  nav {
    display: none;
  }

  .packages,
  .template-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .hero-flow,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .form-header,
  .urgency-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .selected-price {
    width: 100%;
    text-align: center;
  }
}

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

  .nav {
    gap: 12px;
  }

  .logo {
    max-width: 180px;
  }

  .logo img {
    width: 180px;
    height: auto;
  }

  .site-header .btn.small {
    display: none;
  }

  .hero {
    padding: 28px 0 38px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 54px);
  }

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

  .process-note {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .section {
    padding: 54px 0;
  }

  .form-card,
  .package-card,
  .template-card,
  .process-card,
  .testimonial-card,
  .contact-card,
  .contact-info-card {
    padding: 22px;
  }

  .template-image-wrap {
    height: 300px;
    margin: -8px -8px 20px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }
}
