@font-face {
  font-family: "Magnolia Script";
  src: url("./fonts/magnolia-script.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #08233d;
  --muted: #567083;
  --blue-900: #063b70;
  --blue-700: #006ec8;
  --blue-600: #008bd6;
  --blue-400: #38c6ee;
  --blue-100: #d9f5ff;
  --blue-50: #f0fbff;
  --mint: #5ce0c0;
  --white: #fff;
  --line: #d8e8f0;
  --shadow: 0 24px 70px rgba(4, 73, 121, 0.15);
  --radius: 1.5rem;
  --radius-sm: 0.9rem;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: var(--blue-50);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--blue-100);
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 12vw, 5.5rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.55rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.24rem);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2.25rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue-700);
  box-shadow: 0 10px 24px rgba(0, 110, 200, 0.22);
  color: var(--white);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  background: var(--blue-900);
  box-shadow: 0 14px 30px rgba(0, 110, 200, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--blue-50);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-placeholder,
.btn-placeholder:hover {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.icon {
  width: 1.2rem;
  height: 1.2rem;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(216, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.75rem 0.75rem 1.2rem 1.2rem;
  background: linear-gradient(145deg, var(--blue-400), var(--blue-700));
  box-shadow: 0 8px 20px rgba(0, 110, 200, 0.25);
  color: var(--white);
}

.brand-mark svg {
  width: 1.55rem;
}

.brand-name {
  color: var(--blue-900);
  font-family: "Magnolia Script", "Brush Script MT", cursive;
  font-size: clamp(1.2rem, 4.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav,
.header-phone {
  display: none;
}

.menu-toggle {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.4rem;
}

.mobile-menu {
  position: fixed;
  z-index: 49;
  inset: 4.8rem 0 auto;
  display: none;
  padding: 1rem max(1rem, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu > a:not(.btn) {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu > a:not(.btn):hover {
  background: var(--blue-50);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 90% 5%, rgba(92, 224, 192, 0.22), transparent 26rem),
    linear-gradient(180deg, var(--blue-50), var(--white));
}

.hero h1 span {
  color: var(--blue-700);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  max-width: 41rem;
  margin-bottom: 1.6rem;
}

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

.hero-points li,
.check-line {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.check {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.05rem;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 950;
}

.hero-art {
  position: relative;
  min-height: 26rem;
  margin-top: 3rem;
}

.art-panel {
  position: absolute;
  inset: 1.5rem 0 0 1.5rem;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-900));
  box-shadow: var(--shadow);
}

.art-panel::before,
.art-panel::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.art-panel::before {
  width: 21rem;
  height: 21rem;
  top: -8rem;
  right: -8rem;
}

.art-panel::after {
  width: 13rem;
  height: 13rem;
  bottom: -6rem;
  left: -5rem;
}

.washer {
  position: absolute;
  width: 64%;
  aspect-ratio: 0.92;
  right: 7%;
  bottom: 0;
  border-radius: 1.4rem 1.4rem 0 0;
  background: linear-gradient(145deg, #fff, #d7f1f9);
  box-shadow: -16px 24px 50px rgba(0, 28, 61, 0.25);
}

.washer-controls {
  position: absolute;
  top: 8%;
  right: 8%;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.washer-controls::before,
.washer-controls::after {
  border-radius: 50%;
  background: var(--blue-700);
  content: "";
}

.washer-controls::before {
  width: 0.55rem;
  height: 0.55rem;
}

.washer-controls span {
  height: 0.65rem;
  flex: 1;
  border-radius: 999px;
  background: #b8e5f3;
}

.washer-controls::after {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.3rem solid #7ad2ee;
}

.washer-door {
  position: absolute;
  width: 66%;
  aspect-ratio: 1;
  top: 26%;
  left: 17%;
  display: grid;
  place-items: center;
  border: 0.8rem solid #c0e9f5;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ink), var(--blue-700));
  box-shadow: inset 0 0 0 0.3rem rgba(255, 255, 255, 0.55);
}

.washer-door::after {
  width: 72%;
  height: 42%;
  border-radius: 45% 52% 48% 56%;
  background: linear-gradient(180deg, var(--blue-400), var(--mint));
  content: "";
  transform: rotate(-8deg);
}

.bubble {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.bubble-one {
  width: 3.4rem;
  height: 3.4rem;
  top: 12%;
  left: 12%;
}

.bubble-two {
  width: 1.3rem;
  height: 1.3rem;
  top: 32%;
  left: 27%;
}

.price-tag {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-tag small,
.price-tag span,
.price-tag strong {
  display: block;
}

.price-tag small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-tag strong {
  color: var(--blue-700);
  font-size: 2.6rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price-tag span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

/* Content cards */
.trust-bar {
  border-block: 1px solid var(--line);
}

.trust-item {
  display: flex;
  min-height: 6.7rem;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
}

.trust-icon,
.card-icon,
.step-number {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--blue-100);
  color: var(--blue-700);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.trust-item small {
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.35;
}

.service-card,
.industry-card,
.step-card {
  height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(5, 74, 120, 0.07);
}

.card-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 1.55rem;
}

.service-card p,
.industry-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-primary,
.pricing-secondary {
  height: 100%;
  padding: 1.6rem;
}

.pricing-primary {
  background:
    radial-gradient(circle at 100% 0, rgba(92, 224, 192, 0.2), transparent 20rem),
    var(--ink);
  color: var(--white);
}

.pricing-primary h2 {
  color: var(--white);
}

.pricing-primary .lead {
  color: #c9e4f1;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  margin: 1.7rem 0;
}

.price strong {
  color: var(--mint);
  font-size: clamp(4.5rem, 20vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.price span {
  color: var(--blue-100);
  font-weight: 800;
}

.price-list,
.coverage-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.price-list li,
.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.info-note {
  margin-top: 20px;
  padding: 1rem;
  border-left: 3px solid var(--blue-400);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--blue-50);
  color: var(--muted);
  font-size: 0.9rem;
}

.step-number {
  margin-bottom: 1rem;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
}

.industry-card {
  display: flex;
  gap: 1rem;
}

.industry-card .card-icon {
  margin: 0;
}

.map-card {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(145deg, #dff7ff, #bfeaf7);
}

.map-card::before,
.map-card::after {
  position: absolute;
  border: 1px solid rgba(0, 110, 200, 0.18);
  border-radius: 50%;
  content: "";
}

.map-card::before {
  width: 24rem;
  height: 24rem;
  top: -7rem;
  left: -8rem;
}

.map-card::after {
  width: 17rem;
  height: 17rem;
  right: -5rem;
  bottom: -6rem;
}

.route {
  position: absolute;
  width: 52%;
  height: 70%;
  top: 15%;
  left: 26%;
  border-left: 5px dotted var(--blue-700);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(0, 110, 200, 0.2);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(5, 74, 120, 0.12);
  font-size: 0.82rem;
  font-weight: 850;
}

.pin::before {
  width: 0.85rem;
  height: 0.85rem;
  border: 0.23rem solid var(--blue-700);
  border-radius: 50%;
  content: "";
}

.pin-cbd {
  left: 8%;
  bottom: 12%;
}

.pin-chatswood {
  top: 12%;
  right: 6%;
}

.coverage-copy {
  margin-top: 2.5rem;
}

/* FAQ */
.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 820;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  content: "+";
  font-size: 1.2rem;
}

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

.faq-answer {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: 2rem;
  background: linear-gradient(125deg, var(--blue-700), var(--blue-900));
  box-shadow: var(--shadow);
  color: var(--white);
}

.cta-card::after {
  position: absolute;
  width: 15rem;
  height: 15rem;
  right: -7rem;
  bottom: -10rem;
  border: 2rem solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-card h2 {
  color: var(--white);
}

.cta-card p {
  margin-bottom: 0;
  color: #d9f4ff;
}

.cta-action {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.cta-text {
  margin-top: 15px;
}

/* Footer and template */
.site-footer {
  padding: 3.5rem 0 1.4rem;
  background: var(--ink);
  color: #bdd1df;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-name {
  color: var(--white);
}

.site-footer .brand + p {
  margin-top: 1.25rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-footer p,
.site-footer address {
  color: #bdd1df;
  font-size: 0.9rem;
  font-style: normal;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a {
  color: #d9e9f3;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  margin-top: 2.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(189, 209, 223, 0.18);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: #8faaba;
  font-size: 0.78rem;
}

.template-main {
  min-height: 58vh;
  padding: 4.5rem 0;
}

.template-content {
  max-width: 48rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .hero {
    padding: 5rem 0;
  }

  .service-card,
  .industry-card,
  .step-card {
    padding: 1.5rem;
  }

  .pricing-primary,
  .pricing-secondary,
  .cta-card {
    padding: 2.5rem;
  }

  .cta-action,
  .coverage-copy {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.45rem;
  }

  .desktop-nav a {
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
  }

  .desktop-nav a:hover {
    color: var(--blue-700);
  }

  .header-phone {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero-art {
    min-height: 33rem;
    margin-top: 0;
  }

  .pricing-primary,
  .pricing-secondary {
    padding: 3.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
