:root {
  --navy: #0b2347;
  --navy-2: #143b70;
  --red: #c9342f;
  --red-dark: #a92522;
  --cream: #f7f3eb;
  --bg: #f7f8fb;
  --text: #1d2433;
  --muted: #647084;
  --line: #dbe3ee;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(11, 35, 71, .10);
  --radius: 22px;
}

* { 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(--text);
  background:
    radial-gradient(circle at top right, rgba(201, 52, 47, .10), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

img { max-width: 100%; }

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 227, 238, .8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 750;
  font-size: 14px;
}

.simple-nav {
  display: flex;
}

.nav-cta {
  background: var(--red);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  border: 0;
  background: var(--navy);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 22px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 78vh;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 32px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.mini-eyebrow,
.tag {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(44px, 8vw, 82px);
  line-height: .94;
  max-width: 840px;
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

h3 {
  font-size: 23px;
  line-height: 1.1;
}

p {
  line-height: 1.55;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  max-width: 660px;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  text-decoration: none;
  background: var(--red);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(201, 52, 47, .20);
}

.button:hover { background: var(--red-dark); }

.button.secondary {
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(11, 35, 71, .18);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  padding: 18px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.mock-browser {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(-1deg);
}

.browser-dots {
  display: flex;
  gap: 7px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.browser-dots i {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  opacity: .65;
}

.browser-dots i:nth-child(2) { background: #f2c94c; }
.browser-dots i:nth-child(3) { background: #27ae60; }

.mock-site {
  padding: 32px;
}

.mock-site h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.mock-site p {
  color: var(--muted);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.mock-grid span {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px;
  color: var(--navy);
  font-weight: 850;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 88px) clamp(18px, 4vw, 32px);
}

.split {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 42px;
  align-items: start;
}

.split > p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 34px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-header p {
  color: var(--muted);
  font-size: 17px;
}

.pricing-grid,
.work-grid,
.feature-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.price-card,
.work-card,
.feature-grid article,
.process-grid article,
.contact-section,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--red);
  transform: translateY(-10px);
}

.plan {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 850;
  margin: 0 0 10px;
}

.price-card h3 {
  font-size: 44px;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 18px;
}

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

.price-card ul {
  padding-left: 18px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

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

.pricing-note {
  margin-top: 22px;
  background: #eef2f7;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 18px;
  padding: 24px;
}

.pricing-note h3 {
  font-size: 24px;
}

.pricing-note ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.75;
}

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

.work-card {
  overflow: hidden;
}

.work-card > div:last-child {
  padding: 22px;
}

.work-card p {
  color: var(--muted);
}

.work-card a {
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.work-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: var(--surface-tint, #eef2f7);
}

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

.feature-grid article,
.process-grid article {
  padding: 24px;
}

.feature-grid p,
.process-grid p {
  color: var(--muted);
}

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

.process-grid span {
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}

.needs-section {
  background: linear-gradient(180deg, rgba(11, 35, 71, .05), rgba(201, 52, 47, .04));
  max-width: none;
}

.needs-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.needs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.needs-list span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(11, 35, 71, .06);
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 850;
}

.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
  padding: clamp(28px, 5vw, 42px);
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
  font-size: 13px;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(201, 52, 47, .14);
  border-color: var(--red);
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.hidden {
  display: none;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: var(--navy);
  color: white;
  padding: 36px clamp(18px, 4vw, 56px);
}

.footer strong {
  font-size: 20px;
}

.footer p {
  color: #dce7f7;
  margin: 4px 0 0;
}

.footer-links {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.footer-links a {
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 4px;
}

.footer-note {
  max-width: 740px;
  font-size: 13px;
}

.success-main {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.success-card {
  max-width: 680px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
}

.policy-main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 4vw, 32px);
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 46px);
}

.policy-card h1 {
  font-size: clamp(42px, 7vw, 68px);
}

.policy-card h2 {
  margin-top: 30px;
  font-size: clamp(24px, 4vw, 34px);
}

.policy-card p {
  color: var(--muted);
}

.policy-card a {
  color: var(--red);
  font-weight: 850;
}

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

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

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

  .needs-list {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .mobile-menu {
    display: inline-grid;
    place-items: center;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }

  .simple-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  nav a {
    padding: 10px;
  }

  .pricing-grid,
  .work-grid,
  .feature-grid,
  .process-grid,
  .needs-list {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    transform: none;
  }

  .mock-browser {
    transform: none;
  }
}

.form-note {
  margin-top: 22px;
  background: #eef2f7;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
