:root {
  --navy: #10233f;
  --blue: #1f5f99;
  --orange: #f97316;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2ec;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.topbar { background: var(--navy); color: #dbeafe; font-size: 0.9rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; flex-wrap: wrap; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand { font-weight: 900; font-size: 1.25rem; color: var(--navy); letter-spacing: -0.03em; }
.brand span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 20px; font-weight: 700; color: #344054; font-size: 0.95rem; }
.site-nav a[aria-current="page"] { color: var(--orange); }
.nav-toggle { display: none; border: 0; background: var(--navy); color: var(--white); padding: 10px 12px; border-radius: 12px; font-weight: 800; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28); }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.text-link { color: var(--blue); font-weight: 900; }

.hero { background: radial-gradient(circle at top right, #ffe8d6 0, transparent 34%), linear-gradient(135deg, #f8fbff 0%, #edf5ff 100%); padding: 90px 0 70px; }
.hero-grid, .split-grid, .quote-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 900; font-size: 0.8rem; }
h1, h2, h3 { color: var(--navy); line-height: 1.05; letter-spacing: -0.045em; margin: 0; }
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.35rem; }
.lead { color: #41516a; font-size: clamp(1.08rem, 2vw, 1.28rem); margin: 22px 0 0; max-width: 670px; }
.hero-actions, .inline-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero-card { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
.score { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.score div { background: var(--soft); border-radius: 16px; padding: 16px; }
.score strong { display: block; color: var(--navy); font-size: 1.6rem; }
.score span { color: var(--muted); font-weight: 700; font-size: 0.9rem; }

.section { padding: 76px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy); color: #e8f0fa; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading-split { display: flex; justify-content: space-between; gap: 28px; max-width: none; align-items: end; }
.section-heading-split p:last-child { max-width: 430px; color: var(--muted); margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 28px rgba(16, 35, 63, 0.06); }
.card p { color: var(--muted); }
.card ul { padding-left: 20px; color: #46556d; }
.tag { display: inline-flex; color: var(--orange); background: #fff1e8; padding: 6px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 900; margin-bottom: 14px; }
.project-shot { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; border-radius: 14px; border: 1px solid var(--line); margin-bottom: 18px; background: var(--soft); }

.process { counter-reset: step; }
.step { position: relative; padding-left: 58px; }
.step:before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 24px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--white); font-weight: 900; }

.price-card { display: flex; flex-direction: column; min-height: 100%; }
.price { color: var(--navy); font-size: 2rem; font-weight: 900; margin: 10px 0; }
.featured { border: 2px solid var(--orange); transform: translateY(-8px); }

.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow); display: grid; gap: 14px; }
.quote-form label { display: grid; gap: 7px; font-weight: 800; color: var(--navy); }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit; color: var(--ink); }
textarea { resize: vertical; min-height: 130px; }
.form-status { margin: 0; color: var(--blue); font-weight: 800; }

.page-hero { background: linear-gradient(135deg, #f8fbff, #edf5ff); padding: 64px 0; }
.breadcrumbs { color: var(--muted); font-weight: 700; margin: 0 0 18px; }
.blog-article { max-width: 780px; margin: 0 auto; }
.blog-article p, .blog-article li { font-size: 1.08rem; color: #3f4d63; }
.blog-article h2 { margin-top: 42px; }

.site-footer { background: #0b1728; color: #d9e6f5; padding: 52px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 28px; }
.footer-grid a { color: #d9e6f5; display: block; margin: 8px 0; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; left: 20px; right: 20px; top: 72px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .hero-grid, .split-grid, .quote-grid, .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .section-heading-split { display: block; }
  .hero { padding-top: 58px; }
  .featured { transform: none; }
}
