:root {
  --bg: #f3f0e8;
  --bg-alt: #e7ebe9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #0d1821;
  --text: #13202b;
  --text-soft: #51606c;
  --line: rgba(19, 32, 43, 0.12);
  --line-strong: rgba(19, 32, 43, 0.2);
  --accent: #0d8eb6;
  --accent-deep: #0a6b8b;
  --accent-pale: rgba(13, 142, 182, 0.12);
  --shadow: 0 18px 48px rgba(9, 17, 26, 0.1);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 142, 182, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(9, 17, 26, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f6f1 0%, #f1ede5 42%, #ecf0ee 100%);
  line-height: 1.5;
}

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

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

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

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: #fff;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 246, 241, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(19, 32, 43, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

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

.site-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  width: 1rem;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-5px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  padding: 3.5rem 0 2.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.hero-copy {
  padding: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-deep);
  font-weight: 700;
}

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

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 16ch;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.hero-text,
.section-heading > p:last-child,
.info-card p,
.use-case p,
.milestone-card p,
.process-card p,
.package-copy,
.credibility-stat p,
.faq-item p,
.contact-shell p,
.hero-card p,
.hero-card li {
  color: var(--text-soft);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 58ch;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border-color: var(--line);
}

.button-small {
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
}

.button-full {
  width: 100%;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.hero-highlights li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--text);
  font-size: 0.95rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card,
.info-card,
.milestone-card,
.process-card,
.package-card,
.credibility-stat,
.contact-card,
.use-case {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card ul,
.package-card ul {
  padding-left: 1.1rem;
  margin: 0;
}

.hero-card li + li,
.package-card li + li {
  margin-top: 0.55rem;
}

.hero-card-accent {
  background: linear-gradient(180deg, #112330, #0d1821);
  border-color: rgba(255, 255, 255, 0.06);
}

.hero-card-accent .panel-label,
.hero-card-accent p {
  color: #eef4f6;
}

.panel-label,
.package-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section {
  padding: 2.25rem 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18));
  z-index: -1;
}

.section-heading {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.card-grid,
.milestone-grid,
.process-grid,
.package-grid,
.credibility-grid {
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.use-case,
.info-card,
.milestone-card,
.process-card,
.package-card,
.credibility-stat,
.contact-card {
  padding: 1.4rem;
}

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

.milestone-step,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.featured {
  background: linear-gradient(180deg, #0d1821 0%, #183346 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-0.2rem);
}

.featured .package-label,
.featured h3,
.featured .package-copy,
.featured li {
  color: #edf5f8;
}

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

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  font-weight: 600;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-deep);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
  margin: 0;
}

.contact-section {
  padding-bottom: 3.5rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.8fr);
  gap: 1rem;
  align-items: center;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(9, 17, 26, 0.96), rgba(20, 52, 72, 0.94));
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.contact-shell h2,
.contact-shell p,
.contact-card,
.contact-card a,
.contact-note {
  color: #f3f7f8;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-shell,
  .split-grid,
  .package-grid,
  .three-up,
  .four-up,
  .milestone-grid,
  .process-grid,
  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.7rem 0;
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem;
    background: rgba(248, 246, 241, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.75rem 0.6rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy {
    padding: 2rem 1.3rem;
  }

  h1 {
    max-width: none;
  }

  .hero-grid,
  .contact-shell,
  .split-grid,
  .package-grid,
  .three-up,
  .four-up,
  .milestone-grid,
  .process-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
