:root {
  --primary-50: #e8fbff;
  --primary-100: #cff6ff;
  --primary-200: #9beeff;
  --primary-400: #3dd8ff;
  --primary-500: #1bc5ef;
  --primary-600: #0f9ec2;
  --primary-700: #0c7f9b;
  --foreground: #f4f6fb;
  --foreground-light: #d1e6ee;
  --muted: #a9c3d0;
  --border: #214055;
  --surface: #102131;
  --surface-dark: #0b1823;
  --background: #07131d;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.28), 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-card-hover: 0 15px 34px rgba(0, 0, 0, 0.42), 0 6px 14px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: none;
}

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

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Teko", "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.3;
}

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

ul {
  margin: 0;
  padding: 0;
}

.pill,
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  border-radius: 999px;
  background: rgba(27, 197, 239, 0.14);
  color: var(--primary-400);
  padding: 0.35rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--radius-lg);
  min-height: 46px;
  padding: 0.65rem 1.5rem;
  border: 2px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

.btn-solid {
  background: var(--primary-600);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

.btn-solid:hover {
  background: var(--primary-700);
}

.btn-outline {
  border-color: var(--primary-500);
  color: var(--foreground);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-500);
  color: #fff;
}

.btn-ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--foreground);
}

.btn-light {
  background: #fff;
  color: var(--primary-600);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-700);
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.topbar {
  display: block;
  background: #05080d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-list {
  min-height: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.8rem;
}

.topbar-item {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-align: center;
}

.topbar-item a:hover {
  color: var(--primary-400);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.site-header.scrolled {
  background: rgba(6, 8, 12, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand span {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav > a,
.menu-trigger {
  padding: 0.45rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  background: transparent;
  font-family: inherit;
}

.menu-trigger {
  cursor: pointer;
}

.menu-group {
  position: relative;
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #111722;
  box-shadow: var(--shadow-card-hover);
  padding: 0.45rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.18s ease;
}

.menu-group:hover .menu-dropdown,
.menu-group:focus-within .menu-dropdown,
.menu-group.open .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown a {
  border-radius: 0.65rem;
  color: #dfe6f3;
  font-size: 0.88rem;
  padding: 0.58rem 0.75rem;
}

.menu-dropdown a:hover {
  background: #1d2636;
  color: var(--primary-400);
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
  border-radius: 0.6rem;
  padding: 0.42rem 0.75rem;
  font-weight: 600;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 8.1rem 0 6rem;
  text-align: center;
}

.hero-content h1,
.hero-content p,
.hero-content .pill {
  color: #fff;
}

.hero-content .pill {
  background: rgba(255, 255, 255, 0.1);
}

.hero-content p {
  margin-top: 1.1rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.hero-stats {
  margin: 2.8rem auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat {
  text-align: center;
  padding-inline: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat:first-child {
  border-left: 0;
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1;
}

.hero-stat span {
  margin-top: 0.25rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.contact-strip {
  background: linear-gradient(90deg, #0c7f9b 0%, #22c9f2 100%);
  color: #fff;
}

.contact-strip-inner {
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.contact-item {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-item + .contact-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.promo-feature-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(61, 216, 255, 0.16), transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(246, 166, 79, 0.14), transparent 36%),
    linear-gradient(135deg, #081826 0%, #0d2536 100%);
}

.promo-feature-grid {
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.promo-feature-image-wrap {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(126, 230, 255, 0.35);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.promo-feature-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.promo-feature-copy {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(126, 230, 255, 0.28);
  background: rgba(10, 25, 37, 0.84);
  box-shadow: var(--shadow-card);
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.promo-feature-copy p {
  margin-top: 0.85rem;
}

.promo-feature-copy h2 {
  margin-top: 0.2rem;
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 380px;
  padding-top: 80px;
  background: linear-gradient(120deg, #07131d 0%, #102131 50%, #1a3040 100%);
}

.page-hero .hero-overlay {
  background: linear-gradient(to right, rgba(7, 10, 16, 0.88), rgba(9, 12, 18, 0.62));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.page-hero h1,
.page-hero p,
.page-hero .pill,
.crumbs {
  color: #fff;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 760px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding-block: 4rem;
}

.section-alt {
  background: var(--surface-dark);
}

.section-dark {
  background: linear-gradient(135deg, #0b1823 0%, #13283a 52%, #1a3447 100%);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark .pill,
.section-dark .eyebrow {
  color: #fff;
}

.section-dark .section-head h2 {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.section-dark .section-head p {
  color: rgba(244, 246, 251, 0.9);
}

.section-dark .pill {
  background: rgba(27, 197, 239, 0.24);
  color: #ffd3a0;
  border: 1px solid rgba(27, 197, 239, 0.35);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head p {
  margin: 0.95rem auto 0;
  max-width: 760px;
  font-size: 1.12rem;
}

.about-grid,
.promo-feature-grid,
.split,
.standards-grid,
.quote-grid,
.areas-grid,
.footer-grid,
.services-grid,
.process-grid,
.testimonials-grid,
.service-feature-grid,
.gallery,
.three-up {
  display: grid;
  gap: 1.5rem;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-grid p,
.standards-grid p,
.split p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-points,
.service-checks,
.checklist,
.contact-points,
.areas-list,
.footer-list,
.standards-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.about-points li,
.service-checks li,
.checklist li,
.standards-list li {
  list-style: none;
  position: relative;
  padding-left: 1.55rem;
  color: var(--foreground-light);
}

.about-points li::before,
.service-checks li::before,
.checklist li::before,
.standards-list li::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.65rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--primary-500);
}

.about-points strong {
  color: var(--foreground);
}

.photo-frame,
.feature-photo img,
.service-feature-image,
.gallery img,
.service-card,
.process-card,
.testimonial-card,
.faq-list,
.contact-card,
.areas-panel,
.map-shell,
.three-up article,
.timeline article,
.service-feature-grid article {
  border-radius: var(--radius-2xl);
}

.photo-frame,
.feature-photo img,
.service-feature-image,
.gallery img,
.service-card,
.process-card,
.testimonial-card,
.faq-list,
.contact-card,
.three-up article,
.timeline article,
.service-feature-grid article {
  border: 1px solid var(--border);
  background: var(--surface);
}

.photo-frame {
  position: relative;
  overflow: hidden;
}

.photo-frame img,
.feature-photo img,
.service-feature-image {
  width: 100%;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #0d131d;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  padding: 0.65rem 0.8rem;
}

.photo-badge strong {
  color: var(--primary-500);
  font-size: 1.5rem;
  line-height: 1;
}

.photo-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--foreground-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.service-card {
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-body {
  padding: 1.35rem;
}

.service-body p {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.service-link {
  margin-top: 0.85rem;
  display: inline-block;
  font-weight: 700;
  color: var(--primary-500);
}

.standards-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.standards-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.process-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.process-step {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-500);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.process-card p {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.process-cta,
.service-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

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

.testimonial-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #fbbf24;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-meta {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}

.testimonial-meta strong {
  display: block;
  color: var(--foreground);
}

.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.gallery img {
  width: 100%;
  height: clamp(210px, 20vw, 320px);
  object-fit: cover;
  object-position: center center;
  background: var(--surface-dark);
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-item button:hover {
  color: var(--primary-600);
}

.faq-item button::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
}

.faq-item.open button::after {
  content: "\2212";
}

.faq-item > div {
  display: none;
  padding: 0 1.2rem 1.2rem;
}

.faq-item.open > div {
  display: block;
}

.faq-item p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.areas-section {
  background: linear-gradient(135deg, #102131 0%, #173249 42%, #1f4057 100%);
  color: #fff;
}

.areas-section .section-head h2,
.areas-section .section-head p,
.areas-section .pill,
.areas-section h3,
.areas-section p {
  color: #fff;
}

.areas-section .pill {
  background: rgba(255, 255, 255, 0.1);
}

.areas-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.areas-panel,
.map-shell {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.areas-panel {
  padding: 1.5rem;
  backdrop-filter: blur(5px);
}

.areas-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.1rem;
}

.areas-list li {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.97rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.map-shell {
  overflow: hidden;
  min-height: 360px;
}

.map-shell iframe {
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.quote-grid {
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: stretch;
}

.embed-shell {
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
  background: var(--surface);
  overflow: hidden;
  height: 620px;
}

.contact-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.contact-card > p {
  margin-top: 0.55rem;
}

.contact-points li,
.contact-list li {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--surface);
  padding: 0.65rem 0.75rem;
}

.contact-points strong {
  display: block;
  color: var(--foreground-light);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.1rem 0 1.5rem;
}

.cta-band {
  background: linear-gradient(90deg, #0c7f9b 0%, #22c9f2 100%);
  color: #fff;
}

.cta-band .container {
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: 1.1rem;
}

.site-footer {
  background: #05080d;
  color: #fff;
  padding-top: 4rem;
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 0.8rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-list {
  gap: 0.55rem;
}

.map-link {
  margin-top: 0.8rem;
  display: inline-block;
  color: #fff;
  font-weight: 600;
}

.footer-service-areas {
  margin-top: 0.8rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1.4rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

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

.service-feature-grid article,
.three-up article,
.timeline article {
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.service-feature-grid article p,
.three-up article p,
.timeline article p,
.process-card p,
.service-body p,
.contact-card p {
  margin-top: 0.65rem;
  line-height: 1.7;
}

.pricing-stage {
  background:
    radial-gradient(circle at 12% 15%, rgba(27, 197, 239, 0.16), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(61, 216, 255, 0.14), transparent 30%);
}

.pricing-head p {
  max-width: 760px;
  margin-inline: auto;
}

.pricing-toggle-shell {
  margin: -0.4rem auto 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.pricing-toggle-shell > p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9ad6e7;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(100, 226, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 25, 36, 0.92);
  padding: 0.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.pricing-toggle-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #bde8f5;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pricing-toggle-btn:hover {
  transform: translateY(-1px);
}

.pricing-toggle-btn.is-active {
  background: linear-gradient(95deg, #20bee2 0%, #7de8ff 100%);
  color: #0a2c3b;
}

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

.pricing-card {
  grid-column: span 4;
  position: relative;
  border: 1px solid rgba(61, 216, 255, 0.26);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(13, 29, 43, 0.98) 0%, rgba(11, 24, 35, 0.96) 100%);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card.is-updating {
  opacity: 0.65;
  transform: translateY(1px);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(61, 216, 255, 0.58);
}

.pricing-card-top h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
}

.pricing-card-top p {
  margin-top: 0.3rem;
  color: #bfe8f4;
  font-size: 0.9rem;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
}

.pricing-price {
  font-family: "Teko", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 7vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
}

.pricing-frequency {
  color: #d7edf3;
  font-size: 1rem;
  padding-bottom: 0.55rem;
}

.pricing-alt {
  color: #7ee6ff;
  font-weight: 700;
}

.pricing-copy {
  color: var(--muted);
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 0.2rem 0 0.7rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #e7f3f7;
}

.pricing-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #39d8ff;
  font-weight: 700;
}

.pricing-featured {
  background: linear-gradient(150deg, rgba(20, 52, 72, 0.98) 0%, rgba(12, 36, 51, 0.96) 100%);
  border-color: rgba(82, 222, 255, 0.85);
}

.pricing-featured .pricing-price {
  color: #d6f7ff;
}

.pricing-badge {
  position: absolute;
  top: -0.72rem;
  right: 1rem;
  border-radius: 999px;
  background: linear-gradient(95deg, #29c6eb 0%, #79e8ff 100%);
  color: #073448;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  box-shadow: 0 8px 20px rgba(12, 117, 141, 0.44);
}

.pricing-wide {
  grid-column: 4 / span 6;
}

.pricing-one-time {
  overflow: hidden;
}

.pricing-mini-badge {
  position: absolute;
  top: 0.9rem;
  right: -2.2rem;
  width: 9.4rem;
  text-align: center;
  background: linear-gradient(98deg, #f6a64f 0%, #ffd591 100%);
  color: #5b2d00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0;
  transform: rotate(33deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.pricing-note {
  margin-top: 1.35rem;
  border: 1px solid rgba(125, 228, 255, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(7, 20, 30, 0.72);
  padding: 0.85rem 1rem;
}

.pricing-note p {
  color: #d0eaf2;
}

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

@media (max-width: 1090px) {
  .about-grid,
  .promo-feature-grid,
  .split,
  .standards-grid,
  .areas-grid,
  .quote-grid,
  .services-grid,
  .pricing-grid,
  .process-grid,
  .testimonials-grid,
  .gallery,
  .footer-grid,
  .service-feature-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

  .topbar-list {
    grid-template-columns: 1fr;
    padding: 0.55rem 0;
  }

  .topbar-item {
    font-size: 0.78rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 0.8rem;
  }

  .hero-stat:first-child {
    border-top: 0;
  }

  .areas-list,
  .standards-list {
    grid-template-columns: 1fr;
  }

  .embed-shell {
    height: 600px;
  }

  .contact-strip-inner {
    grid-template-columns: 1fr;
    padding: 0.7rem 0;
  }

  .contact-item + .contact-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 0.5rem;
  }

  .promo-feature-image-wrap img {
    min-height: 320px;
  }

  .pricing-wide {
    grid-column: auto;
  }
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 4vw;
    right: 4vw;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #111722;
    box-shadow: var(--shadow-card-hover);
    padding: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav > a,
  .menu-trigger {
    color: #e7edf8;
    width: 100%;
    padding: 0.5rem 0.35rem;
    text-align: left;
  }

  .menu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    display: none;
  }

  .menu-group.open .menu-dropdown {
    display: grid;
  }

  .brand span {
    font-size: 1rem;
  }

  .hero-content {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1280px, 94vw);
  }

  .hero-content {
    padding: 7.4rem 0 5rem;
  }

  .hero-content p {
    font-size: 1.02rem;
  }

  .pricing-price {
    font-size: 3rem;
  }

  .pricing-frequency {
    font-size: 0.94rem;
    padding-bottom: 0.4rem;
  }

  .pricing-toggle-shell {
    flex-direction: column;
    gap: 0.55rem;
  }

  .pricing-toggle-btn {
    font-size: 0.78rem;
    padding: 0.55rem 0.8rem;
  }

  .gallery img {
    height: clamp(180px, 56vw, 240px);
  }
}



