:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --panel-alt: #eef4ff;
  --text: #121826;
  --muted: #5d6780;
  --line: #dfe7f3;
  --primary: #ff7a1a;
  --primary-dark: #e96100;
  --secondary: #0f172a;
  --success: #0d9488;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --max-width: 1180px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 251, 0.8);
  border-bottom: 1px solid rgba(223, 231, 243, 0.8);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #ffb648);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.35);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 18px 28px rgba(255, 122, 26, 0.22);
}

.button-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0 0 1.4rem;
  max-width: 620px;
  font-size: 1.08rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.quick-facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--secondary);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(155deg, #0f172a 0%, #16253d 55%, #111827 100%);
  border-radius: var(--radius);
  padding: 2rem;
  color: white;
  box-shadow: var(--shadow);
}

.mini-tag {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.18);
  color: #ffc695;
  padding: 0.45rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 1rem 0 1.4rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

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

.stats div {
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 0.95rem;
}

.stats span {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.8);
}

.small-note {
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.7);
}

.trust-bar {
  padding: 0.8rem 0 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 25px rgba(15,23,42,0.02);
}

.trust-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary);
  font-weight: 600;
}

.section {
  padding: 3rem 0;
}

.accent {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.06), rgba(255, 122, 26, 0.01));
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.left {
  text-align: left;
}

.section-heading h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.pricing-grid,
.service-grid,
.steps-grid {
  display: grid;
  gap: 1.25rem;
}

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

.pricing-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.summary-card,
.price-card,
.service-card,
.step-card,
.info-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.03);
}

.summary-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.summary-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.summary-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  color: var(--muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.summary-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-list span {
  display: inline-block;
  padding-right: 0.5rem;
}

.summary-card strong {
  color: var(--secondary);
  font-size: 1.05rem;
  white-space: nowrap;
}

.emphasis-summary {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(255,255,255,1));
  border-color: rgba(255, 122, 26, 0.2);
}

.minimum-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.summary-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.price-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
}

.price small {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.service-card {
  text-align: left;
}

.service-card span {
  font-size: 2.2rem;
}

.service-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.25rem;
}

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

.service-card strong {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.7rem;
  color: var(--secondary);
}

.calculator {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.calc-form,
.calc-result {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.03);
}

.calc-form {
  padding: 1.5rem;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
}

label span {
  font-size: 0.92rem;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--text);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(255, 122, 26, 0.2);
  border-color: rgba(255, 122, 26, 0.45);
}

.toggle-row {
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.8rem;
}

.toggle-row input {
  width: 22px;
  min-height: 22px;
  accent-color: var(--primary);
}

.full-width {
  grid-column: 1 / -1;
}

#estimateBtn {
  margin-top: 1.2rem;
  width: 100%;
}

.calc-result {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.result-row strong {
  color: var(--secondary);
}

.total-row {
  padding-top: 0.2rem;
  border-bottom: none;
  font-size: 1.12rem;
}

.total-row strong {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

#calcMessage {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.emphasis {
  border-color: rgba(255, 122, 26, 0.2);
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), rgba(255,255,255,0.9));
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.delivery-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.delivery-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: #f9fafc;
  border: 1px solid var(--line);
}

.legal-block {
  padding-top: 0.5rem;
}

.legal-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(255, 122, 26, 0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.legal-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.delivery-areas {
  padding-top: 0.5rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.areas-list span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.areas-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
}

.small-copy {
  margin-top: 1rem;
  color: var(--muted);
}

.info-panel h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.info-panel p {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.info-panel small {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

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

.step-card {
  padding: 1.75rem;
}

.step-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 122, 26, 0.1);
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-dark);
}

.step-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}

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

.cta-strip {
  padding-top: 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #111827, #1b2440);
  color: white;
  border-radius: 26px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow);
}

.cta-strip-inner h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.footer {
  background: #0f172a;
  color: rgba(255,255,255,0.82);
  padding: 4rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  margin-bottom: 1rem;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-weight: 600;
}

.contact-list a {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 980px) {
  .hero-inner,
  .two-column,
  .pricing-grid,
  .service-grid,
  .pricing-summary,
  .steps-grid,
  .trust-row,
  .calculator {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .calculator,
  .pricing-summary {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .footer-inner,
  .footer-bottom,
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid,
  .service-grid,
  .steps-grid,
  .trust-row,
  .two-column,
  .field-grid,
  .pricing-summary {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 4.25rem;
  }

  .hero-copy h1 {
    letter-spacing: -0.05em;
  }
}
