:root {
  --charcoal: #0f2742;
  --ink: #173b63;
  --gold: #ff7a1a;
  --gold-soft: #ffa860;
  --cream: #f7fbff;
  --slate: #244f7c;
  --card: #ffffff;
  --ok: #2f8f56;
  --danger: #b84b4b;
  --radius: 18px;
  --radius-soft: 14px;
  --shadow: 0 16px 36px rgba(16, 42, 68, 0.14);
  --shadow-soft: 0 10px 26px rgba(23, 58, 92, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.55;
  color: #163552;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 0%, rgba(37, 109, 193, 0.22), transparent 36%),
    radial-gradient(circle at 92% 14%, rgba(255, 122, 26, 0.2), transparent 33%),
    linear-gradient(180deg, #edf6ff 0%, #e4f0ff 48%, #f1f7ff 100%);
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  z-index: -2;
  animation: drift 20s ease-in-out infinite;
}

.orb-a {
  width: 30vw;
  max-width: 380px;
  aspect-ratio: 1;
  top: 8vh;
  left: -4vw;
  background: radial-gradient(circle at 35% 35%, rgba(38, 128, 215, 0.35), rgba(38, 128, 215, 0));
}

.orb-b {
  width: 28vw;
  max-width: 340px;
  aspect-ratio: 1;
  top: 55vh;
  right: -6vw;
  background: radial-gradient(circle at 65% 40%, rgba(240, 122, 33, 0.3), rgba(240, 122, 33, 0));
  animation-delay: -8s;
}

.orb-c {
  width: 22vw;
  max-width: 280px;
  aspect-ratio: 1;
  top: 78vh;
  left: 42vw;
  background: radial-gradient(circle at 50% 50%, rgba(73, 145, 215, 0.2), rgba(73, 145, 215, 0));
  animation-delay: -12s;
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(43, 124, 200, 0.16) 0%, rgba(43, 124, 200, 0) 72%);
  transition: opacity 0.25s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, #1f7ad0, #f07a21);
  box-shadow: 0 0 20px rgba(31, 122, 208, 0.35);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(26, 72, 117, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 72, 117, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.15px;
}

a {
  color: inherit;
}

.section {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 5rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: auto -2.5% 0 -2.5%;
  height: 42%;
  z-index: -1;
  border-radius: 30px;
  border: 1px solid rgba(44, 106, 165, 0.1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14));
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f07a21;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.85rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32, 88, 145, 0.15);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f7fbff;
  background: linear-gradient(140deg, #14508d, #2f87d9);
  box-shadow: 0 10px 22px rgba(20, 80, 141, 0.26);
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.18rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #123a64;
  transition: color 0.2s ease;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  background: linear-gradient(90deg, #2878c5, #f07a21);
}

.site-nav a:hover,
.site-nav a.active-link {
  color: #0f4b80;
}

.site-nav a:hover::after,
.site-nav a.active-link::after {
  transform: scaleX(1);
}

.layout-toggle {
  border: 1px solid rgba(20, 93, 160, 0.26);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  color: #123a64;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.layout-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 122, 33, 0.48);
}

.layout-toggle[aria-pressed="true"] {
  background: linear-gradient(130deg, #123a64, #1f5d99);
  border-color: rgba(18, 58, 100, 0.8);
  color: #f7fbff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #fff;
  background: linear-gradient(130deg, #f07a21, #ff9a3d);
  box-shadow: 0 12px 24px rgba(240, 122, 33, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 16px 34px rgba(240, 122, 33, 0.33);
}

.btn-ghost {
  color: #17456f;
  border-color: rgba(20, 93, 160, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.btn-nav {
  padding: 0.55rem 1rem;
  border-color: rgba(20, 93, 160, 0.3);
}

.hero {
  padding-top: 3.1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.hero-content {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(241, 249, 255, 0.7)),
    linear-gradient(115deg, rgba(42, 124, 202, 0.06), rgba(240, 122, 33, 0.06));
  border: 1px solid rgba(32, 88, 145, 0.2);
  border-radius: 34px;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: min(67vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 122, 33, 0.2), rgba(240, 122, 33, 0));
  pointer-events: none;
}

.hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.05rem, 4.9vw, 4.25rem);
  line-height: 1.04;
  max-width: 12ch;
}

.hero-copy {
  max-width: 60ch;
  color: #355674;
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-badges {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(20, 93, 160, 0.24);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.34rem 0.7rem;
  font-size: 0.82rem;
  color: #2d577d;
  white-space: nowrap;
  text-align: center;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(32, 88, 145, 0.2);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  width: min(820px, 90%);
  margin: -4.8rem 0 0 auto;
  position: relative;
  z-index: 2;
}

.hero-panel h2 {
  margin-top: 0;
}

.metric-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-grid article {
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(19, 86, 146, 0.09), rgba(19, 86, 146, 0.04));
  padding: 0.95rem;
}

.metric-number {
  margin: 0;
  font-size: 1.62rem;
  font-weight: 700;
  color: #f07a21;
}

.metric-label {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: #2f5a81;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(32, 88, 145, 0.19);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(241, 249, 255, 0.88));
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:nth-child(1) {
  transform: translateY(0.25rem);
}

.service-card:nth-child(2) {
  transform: translateY(-0.35rem);
}

.service-card:nth-child(3) {
  transform: translateY(0.45rem);
}

.service-card::after,
.timeline-item::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  opacity: 0.55;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(28, 78, 127, 0.14);
}

.service-card ul {
  margin-bottom: 0;
  padding-left: 1rem;
}

.pricing {
  isolation: isolate;
}

.estimator {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 1rem;
  align-items: start;
}

.estimator-controls,
.estimate-result {
  border-radius: var(--radius);
  border: 1px solid rgba(32, 88, 145, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.estimate-result {
  position: sticky;
  top: 6.4rem;
  order: -1;
}

.estimator-controls label {
  margin: 0.65rem 0 0.25rem;
  display: block;
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(32, 88, 145, 0.24);
  background: #ffffff;
  color: #1c3f64;
  padding: 0.72rem;
  font-family: inherit;
}

select:focus,
input:focus,
textarea:focus {
  outline: 2px solid rgba(240, 122, 33, 0.25);
  border-color: rgba(240, 122, 33, 0.72);
}

input[type="range"] {
  padding: 0;
}

.helper {
  margin: 0.4rem 0 0.6rem;
  font-size: 0.9rem;
}

.checkline {
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.checkline input {
  width: 16px;
  height: 16px;
}

.estimate-price {
  margin: 0.45rem 0;
  color: #f07a21;
  font-size: 2.3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 122, 208, 0.35), rgba(240, 122, 33, 0.35));
}

.timeline-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(32, 88, 145, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-item {
  padding-top: 1.6rem;
}

.timeline-item h3 {
  position: relative;
}

.timeline-item h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f07a21;
  position: absolute;
  top: -22px;
  left: 0;
  box-shadow: 0 0 0 5px rgba(240, 122, 33, 0.16);
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(28, 78, 127, 0.14);
}

.testimonial-wrap {
  overflow: hidden;
}

.testimonial-slider {
  border-radius: var(--radius);
  border: 1px solid rgba(32, 88, 145, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(241, 249, 255, 0.9));
  min-height: 190px;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.testimonial-slider::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(44, 117, 190, 0.16), rgba(44, 117, 190, 0));
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fade 0.45s ease;
}

.slider-dots {
  display: flex;
  gap: 0.42rem;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #8cb2d7;
  cursor: pointer;
}

.dot.active {
  background: #f07a21;
}

.faq input[type="search"] {
  margin-bottom: 0.9rem;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(32, 88, 145, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 0.86rem 1rem;
}

.faq-item:nth-child(even) {
  border-left: 4px solid rgba(31, 122, 208, 0.55);
}

.faq-item:nth-child(odd) {
  border-left: 4px solid rgba(240, 122, 33, 0.55);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.booking-form {
  border-radius: var(--radius);
  border: 1px solid rgba(32, 88, 145, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.field-group {
  margin-bottom: 0.9rem;
}

.field-group.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.8rem 0 0;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  margin-top: 2.4rem;
  padding: 1.4rem 4vw 2.8rem;
  text-align: center;
  color: #2d567d;
  border-top: 1px solid rgba(32, 88, 145, 0.2);
}

body.layout-invert {
  color: #eef6ff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 179, 104, 0.16), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(74, 150, 230, 0.18), transparent 31%),
    linear-gradient(180deg, #07111d 0%, #0c1b2c 46%, #13263a 100%);
}

body.layout-invert .bg-noise {
  opacity: 0.28;
  background-image:
    linear-gradient(to right, rgba(206, 225, 245, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(206, 225, 245, 0.04) 1px, transparent 1px);
}

body.layout-invert .scroll-progress {
  background: linear-gradient(90deg, #ffb56f, #5caeff);
  box-shadow: 0 0 20px rgba(92, 174, 255, 0.3);
}

body.layout-invert .section::before {
  border-color: rgba(173, 212, 247, 0.11);
  background: linear-gradient(160deg, rgba(12, 28, 45, 0.68), rgba(9, 20, 33, 0.18));
}

body.layout-invert .eyebrow,
body.layout-invert .metric-number,
body.layout-invert .estimate-price,
body.layout-invert .timeline-item h3::before,
body.layout-invert .dot.active {
  color: #ffb56f;
}

body.layout-invert .site-header {
  border-bottom-color: rgba(169, 211, 248, 0.12);
  background: rgba(7, 17, 29, 0.8);
}

body.layout-invert .brand-mark {
  color: #082039;
  background: linear-gradient(140deg, #ffb56f, #ffd7a1);
  box-shadow: 0 10px 22px rgba(255, 181, 111, 0.22);
}

body.layout-invert .site-nav a,
body.layout-invert .brand-text,
body.layout-invert .layout-toggle,
body.layout-invert .site-footer,
body.layout-invert .helper,
body.layout-invert .metric-label,
body.layout-invert .hero-copy,
body.layout-invert .estimate-note,
body.layout-invert .faq-item p {
  color: #d8e8f8;
}

body.layout-invert .site-nav a::after {
  background: linear-gradient(90deg, #ffb56f, #63b3ff);
}

body.layout-invert .site-nav a:hover,
body.layout-invert .site-nav a.active-link {
  color: #ffffff;
}

body.layout-invert .layout-toggle {
  border-color: rgba(173, 212, 247, 0.22);
  background: rgba(16, 33, 52, 0.78);
}

body.layout-invert .layout-toggle[aria-pressed="true"] {
  background: linear-gradient(130deg, #ffb56f, #ffcf9e);
  border-color: rgba(255, 181, 111, 0.75);
  color: #082039;
}

body.layout-invert .btn-gold {
  color: #082039;
  background: linear-gradient(130deg, #ffb56f, #ffd39d);
  box-shadow: 0 12px 24px rgba(255, 181, 111, 0.2);
}

body.layout-invert .btn-ghost,
body.layout-invert .btn-nav {
  color: #eef6ff;
  border-color: rgba(173, 212, 247, 0.28);
  background: rgba(17, 38, 60, 0.76);
}

body.layout-invert .hero-content,
body.layout-invert .hero-panel,
body.layout-invert .service-card,
body.layout-invert .estimator-controls,
body.layout-invert .estimate-result,
body.layout-invert .timeline-item,
body.layout-invert .testimonial-slider,
body.layout-invert .faq-item,
body.layout-invert .booking-form {
  border-color: rgba(173, 212, 247, 0.16);
  background: linear-gradient(160deg, rgba(11, 26, 42, 0.92), rgba(18, 39, 61, 0.82));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

body.layout-invert .hero-content::after,
body.layout-invert .testimonial-slider::after {
  background: radial-gradient(circle, rgba(255, 181, 111, 0.14), rgba(255, 181, 111, 0));
}

body.layout-invert .hero-badges span,
body.layout-invert .metric-grid article {
  border-color: rgba(173, 212, 247, 0.14);
  background: rgba(122, 176, 231, 0.08);
  color: #dcecff;
}

body.layout-invert .timeline::before {
  background: linear-gradient(90deg, rgba(255, 181, 111, 0.35), rgba(92, 174, 255, 0.35));
}

body.layout-invert .dot {
  background: #456b8f;
}

body.layout-invert select,
body.layout-invert input,
body.layout-invert textarea {
  border-color: rgba(173, 212, 247, 0.16);
  background: rgba(8, 20, 33, 0.92);
  color: #eef6ff;
}

body.layout-invert select:focus,
body.layout-invert input:focus,
body.layout-invert textarea:focus {
  outline-color: rgba(255, 181, 111, 0.22);
  border-color: rgba(255, 181, 111, 0.76);
}

body.layout-invert .faq-item:nth-child(even) {
  border-left-color: rgba(99, 179, 255, 0.72);
}

body.layout-invert .faq-item:nth-child(odd) {
  border-left-color: rgba(255, 181, 111, 0.72);
}

body.layout-invert .site-footer {
  border-top-color: rgba(173, 212, 247, 0.12);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 88, 145, 0.3);
  background: rgba(255, 255, 255, 0.92);
  color: #1b446d;
  text-decoration: none;
  padding: 0.5rem 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #1b446d;
}

.reveal,
.reveal-delay,
.reveal-delay-2 {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal.visible,
.reveal-delay.visible,
.reveal-delay-2.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -20px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1040px) {
  .estimator {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    width: 100%;
    margin: 0.9rem 0 0;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-result {
    position: static;
    order: 0;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .timeline-item {
    transform: none;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-top: 1rem;
  }

  .timeline-item h3::before {
    position: static;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0.8rem;
    width: min(280px, 90vw);
    border-radius: 14px;
    border: 1px solid rgba(20, 93, 160, 0.24);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .field-group.two-col,
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .section::before {
    inset: auto -2% 0 -2%;
    height: 46%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.3rem 0;
  }

  .hero-content,
  .hero-panel {
    border-radius: 20px;
  }

  .hero-content {
    min-height: 0;
  }

  .cursor-glow {
    display: none;
  }

  .ambient-orb {
    opacity: 0.6;
  }
}
