:root {
  --black: #070707;
  --panel: #121212;
  --panel-2: #1a1a1a;
  --cyan: #00c8ff;
  --blue: #0878ff;
  --lime: #96ff00;
  --accent: #00c8ff;
  --accent-2: #96ff00;
  --white: #ffffff;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1180px;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: var(--lime);
  color: #001017;
  padding: 0.7rem 1rem;
  z-index: 100;
  border-radius: 8px;
}
.skip-link:focus {
  top: 1rem;
}
.topbar {
  background: linear-gradient(90deg, var(--lime), var(--cyan) 52%, var(--blue));
  color: #001018;
  text-align: center;
  padding: 0.42rem 1rem;
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 7, 7, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: block;
  width: 210px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  text-indent: -9999px;
  background: url("/assets/rushwaves-logo.png") center 51% / 275px 275px
    no-repeat;
  text-decoration: none;
}
.brand span {
  display: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav > a {
  text-decoration: none;
  color: #ddd;
  font-weight: 700;
  font-size: 0.9rem;
}
.nav > a:hover,
.nav > a[aria-current="page"] {
  color: var(--cyan);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: #fff;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--cyan);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: linear-gradient(
    110deg,
    var(--lime),
    var(--cyan) 58%,
    var(--blue)
  );
  color: #001017;
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(0, 200, 255, 0.18);
}
.button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}
.button-small {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
}
.eyebrow {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
}
h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  max-width: 860px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: 1.35rem;
}
p {
  margin: 0;
  color: var(--muted);
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 680px;
}
.hero {
  min-height: 690px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.76) 35%,
      rgba(0, 0, 0, 0.12) 76%
    ),
    url("/assets/rushwaves-hero.png") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-content {
  padding: 7rem 0 5.5rem;
  max-width: 750px;
}
.hero h1 em {
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.hero p {
  margin-top: 1.3rem;
  font-size: 1.13rem;
  max-width: 610px;
  color: #e0e0e0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.trust-row div {
  background: rgba(7, 7, 7, 0.88);
  padding: 1.1rem 1.4rem;
}
.trust-row strong {
  display: block;
  color: var(--cyan);
  font-size: 1.3rem;
}
.trust-row span {
  color: #ddd;
  font-size: 0.9rem;
}
.section {
  padding: 6.5rem 0;
}
.section-dark {
  background: #0d0d0d;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.section-head p {
  max-width: 520px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.card {
  padding: 1.7rem;
  background: linear-gradient(145deg, rgba(0, 200, 255, 0.055), transparent 45%),
    var(--panel);
  border: 1px solid rgba(0, 200, 255, 0.18);
  border-radius: var(--radius);
}
.card .number {
  color: var(--lime);
  font-weight: 950;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 1.3rem;
}
.card h3 {
  margin-bottom: 0.65rem;
}
.card p + .text-link {
  margin-top: 1.1rem;
}
.text-link {
  display: inline-block;
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}
.rate-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--lime),
    var(--cyan) 62%,
    var(--blue)
  );
  color: #001017;
  border-radius: 28px;
}
.rate-copy {
  padding: clamp(2rem, 6vw, 4rem);
}
.rate-copy .eyebrow,
.rate-copy p {
  color: #001017;
}
.price {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 1000;
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin: 1.2rem 0;
}
.price small {
  font-size: 1.2rem;
  letter-spacing: 0;
}
.rate-side {
  background: #171717;
  color: #fff;
  padding: clamp(2rem, 6vw, 4rem);
  display: grid;
  align-content: center;
  gap: 1rem;
}
.rate-side p {
  color: #d0d0d0;
}
.route-band {
  background: linear-gradient(135deg, #1b1b1b, #0a0a0a);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.page-hero {
  padding: 7rem 0 4.5rem;
  background: radial-gradient(
      circle at 88% 8%,
      rgba(0, 200, 255, 0.2),
      transparent 25%
    ),
    radial-gradient(circle at 78% 60%, rgba(150, 255, 0, 0.09), transparent 22%),
    #0b0b0b;
  border-bottom: 1px solid var(--line);
}
.page-hero p {
  margin-top: 1.25rem;
}
.content-stack {
  display: grid;
  gap: 1rem;
}
.list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.list li {
  color: #e7e7e7;
  padding-left: 1.6rem;
  position: relative;
}
.list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  position: absolute;
  left: 0;
  top: 0.55rem;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--panel);
}
th,
td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
th {
  color: var(--lime);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
}
td {
  color: #eee;
}
tr:last-child td {
  border-bottom: 0;
}
.location-card strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 0.45rem;
}
.faq-list {
  display: grid;
  gap: 0.8rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 1.2rem 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  color: var(--lime);
  font-size: 1.35rem;
}
.faq-item.open .faq-question::after {
  content: "–";
}
.faq-answer {
  display: none;
  padding: 0 1.3rem 1.3rem;
}
.faq-item.open .faq-answer {
  display: block;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}
.contact-card {
  min-height: 210px;
}
.contact-card a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}
.cta {
  background: linear-gradient(
    125deg,
    var(--lime),
    var(--cyan) 55%,
    var(--blue)
  );
  color: #001017;
  border-radius: 30px;
  padding: clamp(2rem, 7vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.cta p {
  color: #171717;
  margin-top: 0.7rem;
}
.cta .button {
  border-color: #000;
  background: #000;
  color: #fff;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}
.footer-grid h3 {
  font-size: 0.95rem;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}
.footer-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 0.3rem 0;
}
.footer-grid a:hover {
  color: var(--cyan);
}
.legal {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: #848484;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.lux-home {
  background: #fff;
  color: #07131b;
}
.lux-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: #e8edf0;
}
.lux-header .nav > a {
  color: #27343c;
}
.lux-header .nav > a:hover,
.lux-header .nav > a[aria-current="page"] {
  color: #0878ff;
}
.lux-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 86% 35%,
      rgba(0, 200, 255, 0.28),
      transparent 29%
    ),
    linear-gradient(120deg, #07131b 0%, #07131b 53%, #06395a 100%);
}
.lux-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 70px solid rgba(150, 255, 0, 0.12);
  border-radius: 50%;
  right: -190px;
  bottom: -230px;
}
.lux-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4rem;
  padding-block: 5.5rem;
}
.lux-hero-copy {
  position: relative;
  z-index: 2;
}
.lux-pill {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(150, 255, 0, 0.12);
  border: 1px solid rgba(150, 255, 0, 0.35);
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lux-hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(3.2rem, 6vw, 6rem);
  color: #fff;
}
.lux-hero h1 em {
  color: var(--cyan);
  font-style: normal;
}
.lux-hero-copy > p {
  margin-top: 1.35rem;
  max-width: 650px;
  color: #d7e2e8;
  font-size: 1.12rem;
}
.customer-info {
  padding: 4.5rem 0;
  background: #07131b;
  border-top: 1px solid rgba(0, 200, 255, 0.18);
  border-bottom: 1px solid rgba(0, 200, 255, 0.18);
}
.customer-info-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.customer-info-heading h2 {
  color: #fff;
}
.customer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.customer-info-card {
  padding: 1.6rem;
  border: 1px solid #284452;
  border-radius: 20px;
  background: #102632;
}
.customer-info-card > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.customer-info-card h3 {
  margin-bottom: 0.65rem;
  color: #fff;
}
.customer-info-card p {
  color: #c3d1d7;
}
.customer-info-card strong {
  color: var(--cyan);
}
.lux-hero-art {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.lux-hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 48% 52% 45% 55%;
  background: linear-gradient(
    145deg,
    var(--lime),
    var(--cyan) 58%,
    var(--blue)
  );
  filter: drop-shadow(0 30px 60px rgba(0, 200, 255, 0.25));
}
.lux-hero-art img {
  position: relative;
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.28));
}
.route-card {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: min(310px, 75%);
  background: #fff;
  color: #07131b;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.route-card strong,
.route-card small {
  display: block;
}
.route-card strong {
  font-size: 1.25rem;
}
.route-card strong span {
  color: var(--blue);
  margin: 0 0.5rem;
}
.route-card small {
  color: #52636d;
}
.lux-section {
  padding: 7rem 0;
}
.lux-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}
.lux-heading h2 {
  margin-top: 0.55rem;
  color: #07131b;
}
.lux-heading p {
  margin-top: 1rem;
  color: #65727a;
  font-size: 1.05rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 1.8rem;
  border: 1px solid #e3eaee;
  border-radius: 20px;
  color: #07131b;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 12px 35px rgba(11, 44, 61, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: 0 18px 45px rgba(0, 123, 190, 0.12);
}
.service-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-size: 1.6rem;
  font-weight: 900;
}
.service-card h3 {
  margin-top: 1.25rem;
}
.service-card p {
  margin: 0.75rem 0 1rem;
  color: #65727a;
}
.service-card b {
  margin-top: auto;
  color: #0878ff;
  font-size: 0.9rem;
}
.calculator-section {
  background: #f1f7f9;
}
.calculator-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.calculator-copy h2 {
  color: #07131b;
  margin: 0.6rem 0 1.2rem;
}
.calculator-copy p {
  color: #65727a;
}
.calc-points {
  list-style: none;
  padding: 0;
  margin: 1.7rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.calc-points li::before {
  content: "✓";
  color: #07131b;
  background: var(--lime);
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  margin-right: 0.7rem;
  font-weight: 950;
}
.calculator-card {
  background: #07131b;
  color: #fff;
  border-radius: 28px;
  padding: clamp(1.7rem, 5vw, 3rem);
  box-shadow: 0 25px 65px rgba(7, 19, 27, 0.2);
  display: grid;
  gap: 1rem;
}
.calculator-card h3 {
  margin: 0.4rem 0;
  font-size: 1.8rem;
}
.calculator-card p {
  color: #aabac3;
}
.calculator-card label {
  margin-top: 0.6rem;
  font-weight: 800;
}
.calculator-card input {
  width: 100%;
  border: 1px solid #38505e;
  border-radius: 12px;
  background: #102632;
  color: #fff;
  padding: 1rem;
  font: inherit;
  font-size: 1.15rem;
  outline: none;
}
.calculator-card input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.15);
}
.calc-result {
  margin-top: 0.4rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.24);
}
.calc-result span,
.calc-result small {
  display: block;
  color: #b7cad4;
}
.calc-result strong {
  display: block;
  color: var(--lime);
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 0.25rem 0;
}
.lux-faq {
  background: #fff;
}
.faq-split {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 5rem;
  align-items: start;
}
.lux-faq .faq-list {
  gap: 0.75rem;
}
.lux-faq .faq-item {
  background: #f6fafb;
  border-color: #e1e9ed;
}
.lux-faq .faq-question {
  color: #07131b;
}
.lux-faq .faq-answer p {
  color: #65727a;
}
.lux-faq .text-link {
  margin-top: 1.3rem;
}
.contact-band {
  padding: 5rem 0;
  background: linear-gradient(
    115deg,
    var(--lime),
    var(--cyan) 55%,
    var(--blue)
  );
  color: #03131c;
}
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.contact-band .eyebrow {
  color: #03131c;
}
.contact-band h2 {
  margin: 0.5rem 0;
}
.contact-band p {
  color: #14333f;
}
.contact-actions {
  display: flex;
  gap: 1rem;
}
.contact-actions a {
  min-width: 190px;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: #07131b;
  color: #fff;
  text-decoration: none;
}
.contact-actions small,
.contact-actions strong {
  display: block;
}
.contact-actions small {
  color: #a8bbc5;
}
.lux-footer {
  background: #07131b;
  color: #fff;
}
.lux-footer .footer-grid > div:first-child p {
  margin-top: 1rem;
  max-width: 300px;
}
@media (max-width: 960px) {
  .menu-button {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open {
    display: flex;
  }
  .nav .button {
    width: 100%;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .rate-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lux-header .nav {
    background: #fff;
    border-color: #dde5e9;
  }
  .lux-hero-grid,
  .calculator-grid,
  .faq-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lux-hero-art {
    min-height: 340px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .customer-info-grid {
    grid-template-columns: 1fr;
  }
  .contact-band-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero {
    min-height: 620px;
    background-position: 61% center;
  }
  .hero-content {
    padding: 5rem 0 2rem;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4.4rem 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .route-band,
  .cta {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal {
    flex-direction: column;
  }
  .lux-hero-grid {
    min-height: auto;
    padding-block: 4rem;
  }
  .lux-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
  .lux-hero-art {
    min-height: 270px;
  }
  .customer-info {
    padding: 3.5rem 0;
  }
  .customer-info-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .route-card {
    right: auto;
    left: 0;
    bottom: 0;
  }
  .lux-section {
    padding: 4.5rem 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 230px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .contact-actions a {
    min-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.lux-hero-art::before {
  display: none;
}
.lux-hero-art img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
  filter: none;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
}
.branch-section {
  background: #07131b;
}
.branch-section .lux-heading h2 {
  color: #fff;
}
.branch-section .lux-heading p {
  color: #b7c5cc;
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.branch-card {
  position: relative;
  padding: 2rem;
  border-radius: 22px;
  background: #102632;
  border: 1px solid #284452;
  color: #fff;
}
.branch-card > strong {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.branch-card h3 {
  margin: 0.45rem 0 1rem;
  font-size: 1.75rem;
}
.branch-address {
  color: #d5e1e6;
  min-height: 3.2rem;
}
.hours {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 0.3rem;
}
.hours b {
  color: var(--lime);
  margin-bottom: 0.25rem;
}
.hours span {
  color: #d5e1e6;
}
.main-branch {
  border: 2px solid var(--lime);
  box-shadow: 0 0 0 5px rgba(150, 255, 0, 0.08);
}
.main-badge {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  background: var(--lime);
  color: #07131b;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dark-branches .branch-card {
  background: #121f27;
}
@media (max-width: 680px) {
  .lux-hero-art img {
    height: 300px;
  }
  .branch-grid {
    grid-template-columns: 1fr;
  }
  .main-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 1rem;
  }
}
.detailed-calculator {
  gap: 1.2rem;
}
.calc-fields {
  display: grid;
  gap: 1rem;
}
.calc-fields.two-col {
  grid-template-columns: 1fr 1fr;
}
.calculator-card label {
  display: grid;
  gap: 0.45rem;
}
.calculator-card label small {
  font-weight: 400;
  color: #9db0bb;
}
.calculator-card select {
  width: 100%;
  border: 1px solid #38505e;
  border-radius: 12px;
  background: #102632;
  color: #fff;
  padding: 1rem;
  font: inherit;
  outline: none;
}
.calculator-card select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.15);
}
.calculator-card .check-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0;
  font-weight: 700;
}
.check-row input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--lime);
}
.estimate-panel {
  display: grid;
  gap: 1rem;
  margin-top: 0.4rem;
}
.estimate-group {
  overflow: hidden;
  border: 1px solid #38505e;
  border-radius: 16px;
}
.estimate-group h4 {
  margin: 0;
  padding: 1rem 1.15rem;
  background: #102632;
  font-size: 1.05rem;
}
.estimate-group p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 1.15rem;
  color: #c7d4da;
}
.estimate-group p:first-of-type {
  padding-top: 1rem;
}
.estimate-group p b {
  text-align: right;
  color: #fff;
  font-size: 0.9rem;
}
.estimate-group .subtotal {
  margin-top: 0.65rem;
  padding-block: 0.9rem;
  border-top: 1px solid #38505e;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
}
.grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 16px;
  background: linear-gradient(110deg, var(--lime), var(--cyan));
  color: #07131b;
  font-weight: 900;
}
.grand-total strong {
  font-size: 1.45rem;
}
.estimate-panel > small {
  color: #9db0bb;
  line-height: 1.5;
}
@media (max-width: 680px) {
  .calc-fields.two-col {
    grid-template-columns: 1fr;
  }
  .estimate-group p {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.1rem;
  }
  .estimate-group p b {
    text-align: left;
  }
}
.simple-how {
  background: #fff;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.how-step {
  position: relative;
  padding: 2rem;
  border: 1px solid #e3eaee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(11, 44, 61, 0.06);
}
.how-step > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #07131b;
  font-size: 1.7rem;
  font-weight: 950;
}
.how-step h3 {
  margin: 1.25rem 0 0.65rem;
  color: #07131b;
}
.how-step p {
  color: #65727a;
}
.estimate-group p span small {
  display: block;
  color: #91a5af;
  font-size: 0.78rem;
}
@media (max-width: 680px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
.rate-launch {
  padding: 7rem 0;
  background: radial-gradient(
      circle at 18% 15%,
      rgba(0, 200, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #0b628e, #063451 60%, #071f31);
  color: #fff;
}
.rate-launch-inner {
  max-width: 900px;
  text-align: center;
}
.rate-launch h2 {
  margin: 0.7rem auto 1.2rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.rate-launch p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: #d5e7ef;
  font-size: 1.15rem;
}
.rate-launch-visual {
  width: min(100%, 760px);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}
.rate-launch-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.rate-launch .button {
  display: flex;
  width: 100%;
  max-width: 720px;
  margin: 1rem auto;
  min-height: 78px;
  border-radius: 20px;
  font-size: 1.15rem;
}
.rate-launch-button {
  background: linear-gradient(110deg, var(--lime), var(--cyan));
  color: #07131b;
  border: 0;
}
.rate-register-button {
  background: #eaf1f5;
  color: #253746;
  border: 0;
}
.rate-launch-inner > strong {
  display: block;
  margin: 2rem auto 0;
  font-style: italic;
}
.calculator-page {
  background: #eef5f7;
}
.narrow-calculator {
  max-width: 820px;
}
.fee-note {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(150, 255, 0, 0.08);
  border: 1px solid rgba(150, 255, 0, 0.25);
}
.fee-note h4 {
  margin: 0 0 0.8rem;
  color: var(--lime);
  font-size: 1.05rem;
}
.fee-note p {
  margin: 0.5rem 0;
  color: #d1dde3;
}
.fee-note strong {
  color: #fff;
}
.hs-search {
  position: relative;
  display: grid;
  gap: 0.45rem;
}
.hs-search > label {
  margin: 0;
}
.hs-search > small {
  color: #9db0bb;
}
.hs-results {
  position: absolute;
  z-index: 20;
  top: calc(100% - 1.45rem);
  left: 0;
  right: 0;
  max-height: 390px;
  overflow-y: auto;
  border: 1px solid #4d6877;
  border-radius: 14px;
  background: #fff;
  color: #07131b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}
.hs-results button {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 0;
  border-bottom: 1px solid #dce6ea;
  background: #fff;
  color: #07131b;
  text-align: left;
  cursor: pointer;
}
.hs-results button:hover,
.hs-results button:focus {
  background: #e9faff;
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}
.hs-results button:last-child {
  border-bottom: 0;
}
.hs-results button strong,
.hs-results button small {
  display: block;
}
.hs-results button strong span {
  float: right;
  color: #0878ff;
  font-size: 0.78rem;
}
.hs-results button small {
  margin-top: 0.2rem;
  color: #52636d;
  line-height: 1.35;
}
.hs-empty {
  padding: 1rem;
  color: #52636d;
}
.hs-selected {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(150, 255, 0, 0.35);
  border-radius: 12px;
  background: rgba(150, 255, 0, 0.08);
}
.hs-selected strong,
.hs-selected span,
.hs-selected small {
  display: block;
}
.hs-selected strong {
  color: var(--lime);
}
.hs-selected span {
  color: #e5eef2;
}
.hs-selected small {
  margin-top: 0.25rem;
  color: #a9bbc4;
}
.estimate-panel > small a {
  color: var(--cyan);
}
.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.whatsapp-float svg {
  width: 31px;
  height: 31px;
}
@media (max-width: 680px) {
  .rate-launch-visual img {
    height: 240px;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}
