/* Final premium design pass loaded last. Keeps content/routing intact. */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --max: 1200px;
  --bg: #03070d;
  --panel: rgba(8, 16, 29, 0.74);
  --panel-2: rgba(11, 22, 38, 0.82);
  --ink: #f5f8fc;
  --muted: #a8b7ca;
  --soft: #7f90a7;
  --line: rgba(86, 126, 166, 0.18);
  --blue: #008cff;
  --blue-2: #35c8ff;
  --cyan: #35c8ff;
  --glow: 0 0 22px rgba(0, 140, 255, 0.24), 0 18px 58px rgba(0, 0, 0, 0.34);
  --shadow: 0 22px 76px rgba(0, 0, 0, 0.36);
  --radius: 16px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 140, 255, 0.15), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(53, 200, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #03070d 0%, #07111f 44%, #03070d 100%);
}

.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: clamp(10px, 1.25vw, 18px);
  min-height: 62px;
  padding: 10px max(18px, calc((100vw - var(--max)) / 2 + 18px));
  border-bottom: 1px solid rgba(65, 195, 255, 0.14);
  background: rgba(3, 8, 16, 0.74);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(1.15);
}

.site-header.is-scrolled {
  background: rgba(3, 8, 16, 0.9);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  width: clamp(108px, 8vw, 132px);
  height: auto;
  max-width: 34vw;
}

.nav-links {
  gap: clamp(10px, 1.55vw, 24px);
  font-size: clamp(11px, 0.78vw, 13px);
  min-width: 0;
}

.nav-links a {
  padding: 9px 0;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  display: block;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-phone {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #006cff, #32c9ff);
  font-size: 12px;
}

@media (max-width: 1420px) and (min-width: 1181px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: 18px;
  }

  .nav-links {
    justify-content: center;
    gap: clamp(9px, 1.18vw, 18px);
    font-size: clamp(10.5px, 0.72vw, 12px);
  }

  .header-phone {
    min-height: 32px;
    padding-inline: 12px;
    font-size: 11px;
  }
}

@media (max-width: 1260px) and (min-width: 1181px) {
  .header-phone {
    display: none !important;
  }
}

@media (min-width: 1181px) {
  .site-header {
    align-items: center !important;
    min-height: 58px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .brand-logo {
    width: clamp(104px, 6.6vw, 124px) !important;
    max-height: 38px !important;
    object-fit: contain;
  }

  .nav-links {
    gap: clamp(10px, 1.18vw, 20px) !important;
    font-size: clamp(11px, 0.72vw, 12.5px) !important;
  }

  .header-phone {
    min-height: 32px !important;
    padding-inline: 13px !important;
  }
}

@media (min-width: 1181px) and (max-height: 520px) {
  .site-header {
    min-height: 54px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .brand-logo {
    width: 100px !important;
    max-height: 34px !important;
  }

  .nav-links {
    gap: clamp(8px, 1vw, 16px) !important;
    font-size: 11px !important;
  }

  .header-phone {
    min-height: 30px !important;
    padding-inline: 11px !important;
    font-size: 10.5px !important;
  }

  .hero h1 {
    font-size: clamp(32px, 2.9vw, 44px) !important;
    line-height: 1.06 !important;
  }

  .hero p:not(.eyebrow) {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .hero-actions .btn {
    min-height: 34px !important;
    padding: 0 16px !important;
    font-size: 10.5px !important;
  }
}

.hero,
.hero.hero-compact,
.hero.hero-support,
.hero.contact-hero {
  min-height: 470px !important;
  max-height: none !important;
  height: auto !important;
  display: flex;
  align-items: flex-start;
  margin: 0 !important;
  border-radius: 0;
}

.hero.hero-compact,
.hero.hero-support {
  min-height: 410px !important;
  max-height: none !important;
}

.hero.contact-hero {
  min-height: 260px !important;
  max-height: 260px !important;
}

.hero-bg,
.hero-bg-home,
.hero-bg-services,
.hero-bg-service-detail,
.hero-bg-support,
.hero-bg-contact,
.hero-bg-location,
.hero-bg-projects {
  background-size: cover !important;
  background-position: center 38% !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.9) !important;
}

.hero-veil,
.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.92), rgba(2, 7, 13, 0.66), rgba(2, 7, 13, 0.34)) !important,
    radial-gradient(circle at 76% 42%, rgba(0, 140, 255, 0.24), transparent 34%) !important;
}

.hero-copy,
.hero-compact .hero-copy,
.hero-support .hero-copy,
.contact-hero .hero-copy {
  width: min(var(--max), calc(100% - 44px)) !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 96px 0 40px !important;
  transform: translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -6px), 0);
}

.hero-copy {
  margin-left: max(22px, calc((100vw - var(--max)) / 2 + 22px)) !important;
  margin-right: auto !important;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 58px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em !important;
}

.hero-compact h1,
.hero-support h1 {
  font-size: clamp(36px, 4.2vw, 52px) !important;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: #c7d3e3;
  font-size: clamp(16px, 1.6vw, 18px) !important;
  line-height: 1.65 !important;
}

.hero-status {
  right: max(22px, calc((100vw - var(--max)) / 2 + 22px)) !important;
  bottom: 20px !important;
  max-width: 520px;
}

.scroll-indicator {
  bottom: 16px !important;
}

.section,
.split,
.why,
.dual,
.final-cta,
.detail-grid,
.process,
.story,
.values,
.testimonials,
.quote,
.contact-layout,
.article,
.why-trust,
.local-seo-proof {
  width: min(var(--max), calc(100% - 44px)) !important;
}

.section {
  position: relative;
  margin: 0 auto !important;
  padding: clamp(48px, 7vw, 76px) 0 !important;
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(900px, 78vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(65, 195, 255, 0.22), transparent);
  transform: translateX(-50%);
}

.section-head {
  max-width: 780px !important;
  margin-bottom: clamp(26px, 4vw, 42px) !important;
  text-align: center;
}

.eyebrow {
  margin-bottom: 16px !important;
  padding: 7px 14px;
  border-color: rgba(65, 195, 255, 0.24);
  background: rgba(0, 140, 255, 0.1);
  color: #8ddeff;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.section h2,
.split h2,
.why h2,
.dual h2,
.final-cta h2,
.detail-grid h2,
.process h2,
.story h2,
.contact-panel h2 {
  font-size: clamp(32px, 3.8vw, 42px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.018em !important;
}

.section p,
.split p,
.why p,
.dual p,
.final-cta p,
.detail-grid p,
.process p,
.story p,
.contact-panel p,
.article p {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px) !important;
  line-height: 1.68 !important;
}

.split,
.dual,
.detail-grid,
.story,
.contact-layout {
  gap: 22px !important;
  margin-top: 28px !important;
}

.cards,
.services-grid,
.project-grid,
.plan-grid,
.blog-grid,
.solution-grid,
.bullet-grid,
.why-grid,
.values,
.trust-grid {
  gap: 18px !important;
}

.services-grid,
.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.blog-grid,
.project-grid,
.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.bullet-grid,
.why-grid,
.values {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.service-card,
.plan-card,
.blog-card,
.project-card,
.location-card,
.trust-card,
.why-grid article,
.bullet-grid article,
.process article,
.values article,
.split figure,
.split > div,
.dual article,
.detail-grid article,
.story article,
.contact-panel,
.contact-form,
.article,
.location-browser-card,
.admin-blog-list,
.admin-blog-editor,
.admin-blog-login {
  border: 1px solid rgba(65, 195, 255, 0.16) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 140, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(6, 14, 26, 0.78) !important;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28) !important;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card,
.plan-card,
.blog-card,
.project-card,
.location-card {
  min-height: 100%;
  overflow: hidden;
}

.service-card:hover,
.plan-card:hover,
.blog-card:hover,
.project-card:hover,
.location-card:hover,
.trust-card:hover,
.why-grid article:hover,
.bullet-grid article:hover,
.process article:hover,
.values article:hover {
  transform: translateY(-6px);
  border-color: rgba(65, 195, 255, 0.42) !important;
  box-shadow: 0 0 0 1px rgba(65, 195, 255, 0.12), 0 22px 80px rgba(0, 140, 255, 0.14), 0 22px 70px rgba(0, 0, 0, 0.32) !important;
}

.service-card-media,
.plan-card-media,
.project-card > img,
.blog-card > img,
.location-card figure,
.split figure,
.before-after figure {
  overflow: hidden;
  border-radius: 18px 18px 0 0 !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f) !important;
}

.service-card-media,
.plan-card-media,
.project-card > img,
.blog-card > img,
.location-card figure {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
}

.service-card-media img,
.plan-card-media img,
.project-card img,
.blog-card img,
.location-card img,
.split figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.service-card:hover img,
.plan-card:hover img,
.project-card:hover img,
.blog-card:hover img,
.location-card:hover img,
.split:hover figure img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.06);
}

.service-card-body,
.plan-card-body,
.blog-card-copy,
.project-card-copy,
.project-card div,
.blog-card div {
  padding: 20px !important;
}

.service-card h3,
.plan-card h3,
.project-card h3,
.blog-card h3,
.location-card strong,
.trust-card h3,
.why-grid h3,
.bullet-grid h3,
.process h3,
.values h3 {
  font-size: clamp(18px, 1.5vw, 22px) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em !important;
}

.service-card p,
.plan-card p,
.project-card p,
.blog-card p,
.trust-card p {
  font-size: 15.5px !important;
  line-height: 1.62 !important;
}

.btn,
.header-phone,
.blog-card b,
.project-card b,
.service-card b,
.plan-card b {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease !important;
}

.btn {
  min-height: 38px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: 0.045em !important;
}

.btn.primary,
.header-phone {
  background: linear-gradient(135deg, #0072ff, #35c8ff) !important;
  box-shadow: 0 0 22px rgba(0, 140, 255, 0.26) !important;
}

.btn.ghost {
  border: 1px solid rgba(65, 195, 255, 0.54) !important;
  color: #aeeaff !important;
  background: rgba(0, 140, 255, 0.055) !important;
}

.btn:hover,
.header-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.34) !important;
}

.final-cta {
  align-items: center;
  margin: 44px auto 0 !important;
  padding: clamp(26px, 4vw, 40px) !important;
}

.contact-layout {
  margin-top: 26px !important;
}

.contact-form,
.luxury-form {
  padding: clamp(22px, 4vw, 34px) !important;
}

.field input,
.field select,
.field textarea,
.location-tools input,
.location-tools select,
.admin-blog-tools input {
  min-height: 48px !important;
  border-color: rgba(65, 195, 255, 0.18) !important;
  border-radius: 14px !important;
  color: #fff !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(4, 12, 22, 0.86) !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.field textarea {
  min-height: 136px !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.location-tools input:focus,
.location-tools select:focus,
.admin-blog-tools input:focus {
  border-color: rgba(65, 195, 255, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.14), 0 0 28px rgba(0, 140, 255, 0.12) !important;
  outline: none;
}

.location-directory {
  padding-top: 26px !important;
}

.location-browser-card {
  margin-bottom: 24px !important;
  padding: clamp(20px, 3vw, 28px) !important;
}

.hero.location-hero {
  min-height: 260px !important;
  max-height: 260px !important;
}

.admin-blog-page {
  padding-top: 112px !important;
}

.admin-blog-layout {
  max-width: var(--max);
}

.reveal-item,
.section,
.split,
.why,
.dual,
.final-cta,
.why-trust,
.process {
  will-change: transform, opacity;
}

@media (max-width: 1040px) {
  .services-grid,
  .solution-grid,
  .blog-grid,
  .project-grid,
  .plan-grid,
  .bullet-grid,
  .why-grid,
  .values,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero h1 {
    font-size: clamp(38px, 6vw, 48px) !important;
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2 {
    font-size: clamp(30px, 4.8vw, 38px) !important;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 14px;
  }

  .site-header {
    padding: 10px 16px !important;
  }

  .brand-logo {
    width: 116px;
    height: 40px;
  }

  .hero,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.contact-hero,
  .hero.location-hero {
    min-height: 260px !important;
    max-height: 260px !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: calc(100% - 34px) !important;
    padding: 82px 0 28px !important;
    transform: none;
  }

  .hero h1,
  .hero-compact h1,
  .hero-support h1 {
    font-size: clamp(30px, 9vw, 34px) !important;
    line-height: 1.08 !important;
  }

  .hero p:not(.eyebrow) {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
  }

  .hero-actions,
  .cta-actions {
    gap: 9px !important;
    margin-top: 18px !important;
  }

  .section,
  .split,
  .why,
  .dual,
  .final-cta,
  .detail-grid,
  .process,
  .story,
  .values,
  .testimonials,
  .quote,
  .contact-layout,
  .article,
  .why-trust,
  .local-seo-proof {
    width: calc(100% - 32px) !important;
  }

  .section {
    padding: 40px 0 !important;
  }

  .section-head {
    margin-bottom: 24px !important;
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2,
  .contact-panel h2 {
    font-size: clamp(26px, 8vw, 30px) !important;
  }

  .section p,
  .split p,
  .why p,
  .dual p,
  .final-cta p,
  .detail-grid p,
  .process p,
  .story p,
  .article p {
    font-size: 15.5px !important;
    line-height: 1.62 !important;
  }

  .services-grid,
  .solution-grid,
  .blog-grid,
  .project-grid,
  .plan-grid,
  .bullet-grid,
  .why-grid,
  .values,
  .trust-grid,
  .split,
  .dual,
  .detail-grid,
  .story,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .split > div,
  .dual article,
  .detail-grid article,
  .story article,
  .contact-panel,
  .article,
  .contact-form,
  .final-cta {
    padding: 20px !important;
  }

  .btn {
    min-height: 40px !important;
    padding: 0 14px !important;
  }

  .mobile-menu {
    background: rgba(3, 8, 16, 0.96) !important;
    backdrop-filter: blur(24px);
  }
}

/* Final alignment to the provided premium reference. */
.hero,
.hero.hero-home {
  min-height: clamp(500px, 56vw, 560px) !important;
}

.hero.hero-compact,
.hero.hero-support,
.hero.hero-projects,
.hero.hero-services,
.hero.hero-service-detail,
.hero.location-hero {
  min-height: clamp(420px, 48vw, 500px) !important;
}

.hero.contact-hero {
  min-height: 340px !important;
}

.hero-copy {
  padding-top: 122px !important;
  padding-bottom: 58px !important;
}

.hero h1 {
  font-size: clamp(48px, 5vw, 70px) !important;
  max-width: 780px !important;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px !important;
}

.hero-status {
  display: none !important;
}

.home-feature-services {
  margin-top: 0 !important;
  padding-top: clamp(34px, 5vw, 54px) !important;
}

.home-feature-services .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.home-feature-services .service-card:nth-child(n + 5) {
  display: none !important;
}

.home-feature-services .service-card-media {
  height: 178px !important;
  min-height: 178px !important;
}

.why-trust {
  margin-top: 0 !important;
}

.about-preview {
  margin-top: clamp(42px, 6vw, 74px) !important;
}

@media (min-width: 1280px) {
  .hero,
  .hero.hero-home {
    min-height: 590px !important;
  }

  .home-feature-services .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1024px) {
  .home-feature-services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-feature-services .service-card:nth-child(n + 5) {
    display: flex !important;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero.hero-home,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.hero-services,
  .hero.hero-service-detail,
  .hero.location-hero,
  .hero.contact-hero {
    min-height: auto !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: calc(100% - 36px) !important;
    margin-inline: 18px !important;
    padding-top: 104px !important;
    padding-bottom: 50px !important;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.05 !important;
  }

  .home-feature-services .services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 761px) {
  .home-feature-services {
    position: relative !important;
    z-index: 6 !important;
    margin-top: -92px !important;
    padding-top: 0 !important;
  }

  .home-feature-services .section-head {
    display: none !important;
  }

  .home-feature-services .services-grid {
    width: min(100% - 96px, 1120px) !important;
    margin-inline: auto !important;
  }

  .home-feature-services .service-card {
    min-height: 318px !important;
  }

  .why-trust {
    margin-top: 20px !important;
  }
}

/* Final trust-row sizing override. */
.why-trust {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: 22px auto 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 16px !important;
}

@media (max-width: 760px) {
  .why-trust {
    width: calc(100% - 36px) !important;
    padding: 8px 14px !important;
  }
}

/* Cleaner premium process timeline. */
.timeline-section {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: clamp(48px, 6vw, 76px) auto !important;
  padding: clamp(26px, 3.4vw, 34px) !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 72% 0%, rgba(22, 124, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.82), rgba(3, 8, 15, 0.95)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32) !important;
}

.timeline-section > .eyebrow,
.timeline-section > h2 {
  display: block !important;
  max-width: 760px !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.timeline-section > h2 {
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.1 !important;
}

.timeline-section > div {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: clamp(22px, 3vw, 30px) !important;
}

.timeline-section > div::before {
  position: absolute !important;
  top: 31px !important;
  right: 8% !important;
  left: 8% !important;
  z-index: 0 !important;
  height: 1px !important;
  content: "" !important;
  background: linear-gradient(90deg, transparent, rgba(53, 164, 255, 0.45), rgba(255, 255, 255, 0.22), rgba(53, 164, 255, 0.45), transparent) !important;
}

.timeline-section article {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  align-content: start !important;
  min-height: 158px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

.timeline-section article:hover {
  transform: translateY(-4px) !important;
  box-shadow: none !important;
}

.timeline-section article span {
  display: grid !important;
  place-items: center !important;
  width: 62px !important;
  height: 62px !important;
  margin: 0 auto 18px !important;
  border: 1px solid rgba(81, 181, 255, 0.42) !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 35% 25%, rgba(53, 200, 255, 0.36), transparent 46%),
    #061425 !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  box-shadow: 0 0 28px rgba(22, 124, 255, 0.22) !important;
}

.timeline-section article h3 {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.15 !important;
}

.timeline-section article p {
  max-width: 190px !important;
  margin: 0 auto !important;
  color: rgba(218, 227, 239, 0.74) !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

@media (max-width: 1040px) {
  .timeline-section {
    width: min(100% - 48px, 900px) !important;
  }

  .timeline-section > div {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .timeline-section > div::before {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .timeline-section {
    width: calc(100% - 36px) !important;
    margin: 42px auto !important;
    padding: 24px 18px !important;
  }

  .timeline-section > div {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .timeline-section article {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 14px !important;
    min-height: 0 !important;
    text-align: left !important;
  }

  .timeline-section article span {
    width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
  }

  .timeline-section article h3,
  .timeline-section article p {
    max-width: none !important;
    margin-inline: 0 !important;
  }
}

/* Cleaner Why Choose layout. */
.why {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr) !important;
  gap: clamp(24px, 4vw, 44px) !important;
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: clamp(48px, 6vw, 76px) auto !important;
  padding: clamp(28px, 4vw, 42px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 9% 18%, rgba(22, 124, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(8, 16, 28, 0.9), rgba(3, 8, 15, 0.96)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32) !important;
}

.why > div:first-child {
  align-self: center !important;
  max-width: 420px !important;
}

.why > div:first-child::after {
  display: block !important;
  width: 72px !important;
  height: 2px !important;
  margin-top: 24px !important;
  content: "" !important;
  background: linear-gradient(90deg, #167cff, rgba(53, 200, 255, 0)) !important;
  box-shadow: 0 0 22px rgba(22, 124, 255, 0.52) !important;
}

.why h2 {
  max-width: 390px !important;
  margin: 0 !important;
  font-size: clamp(32px, 3.5vw, 48px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.why-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.why-grid article {
  display: grid !important;
  grid-template-columns: 50px minmax(0, 1fr) !important;
  gap: 14px !important;
  min-height: 150px !important;
  padding: 18px !important;
  border: 1px solid rgba(119, 178, 255, 0.18) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(53, 164, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(13, 24, 39, 0.78), rgba(5, 11, 20, 0.92)) !important;
  box-shadow: none !important;
}

.why-grid article span {
  display: grid !important;
  place-items: center !important;
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(81, 181, 255, 0.28) !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(20, 130, 255, 0.92), rgba(53, 200, 255, 0.72)) !important;
  box-shadow: 0 16px 38px rgba(22, 124, 255, 0.22) !important;
}

.why-grid article svg {
  width: 22px !important;
  height: 22px !important;
  color: #ffffff !important;
}

.why-grid article h3 {
  margin: 0 0 7px !important;
  color: #ffffff !important;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  line-height: 1.15 !important;
}

.why-grid article p {
  margin: 0 !important;
  color: rgba(218, 227, 239, 0.72) !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

@media (max-width: 1040px) {
  .why {
    grid-template-columns: 1fr !important;
    width: min(100% - 48px, 900px) !important;
  }

  .why > div:first-child {
    max-width: 760px !important;
  }

  .why h2 {
    max-width: 720px !important;
  }
}

@media (max-width: 760px) {
  .why {
    width: calc(100% - 36px) !important;
    margin: 42px auto !important;
    padding: 24px 18px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .why-grid article {
    min-height: 0 !important;
  }
}

/* Final trust-row sizing override. */
.why-trust {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: 22px auto 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 16px !important;
}

@media (max-width: 760px) {
  .why-trust {
    width: calc(100% - 36px) !important;
    padding: 8px 14px !important;
  }
}

/* Keep the homepage trust row inside the page container instead of full-bleed. */
.why-trust {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: 22px auto 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 24% 0%, rgba(22, 124, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.84), rgba(3, 8, 15, 0.94)) !important;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34) !important;
}

.trust-grid {
  gap: 0 !important;
}

.trust-card {
  min-height: 84px !important;
  padding: 14px 18px !important;
}

@media (max-width: 760px) {
  .why-trust {
    width: calc(100% - 36px) !important;
    margin-top: 20px !important;
    padding: 8px 14px !important;
  }
}

/* Fixed services mega menu: opaque, readable, and above page content. */
.site-header {
  isolation: isolate !important;
  z-index: 10000 !important;
}

.site-header .nav-links,
.site-header .nav-item,
.site-header .has-mega {
  position: relative !important;
  z-index: 10001 !important;
}

.site-header .mega-menu {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  z-index: 10002 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  gap: 10px !important;
  width: min(860px, calc(100vw - 48px)) !important;
  max-width: calc(100vw - 48px) !important;
  max-height: min(72vh, 620px) !important;
  padding: 16px !important;
  overflow: auto !important;
  border: 1px solid rgba(73, 178, 255, 0.34) !important;
  border-radius: 18px !important;
  background: #050b14 !important;
  background-image:
    radial-gradient(circle at 18% 0%, rgba(23, 130, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #030812 100%) !important;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.88),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 44px rgba(31, 149, 255, 0.22) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 8px) scale(0.98) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: opacity 160ms ease, transform 160ms ease !important;
}

.site-header .has-mega:hover .mega-menu,
.site-header .has-mega:focus-within .mega-menu,
.site-header .has-mega.is-open .mega-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) scale(1) !important;
}

.site-header .mega-menu a {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  min-width: 0 !important;
  min-height: 112px !important;
  padding: 14px !important;
  border: 1px solid rgba(92, 180, 255, 0.16) !important;
  border-radius: 14px !important;
  background: #0a1422 !important;
  background-image: linear-gradient(145deg, rgba(14, 27, 45, 0.98), rgba(6, 13, 24, 0.98)) !important;
  color: #f8fbff !important;
  box-shadow: none !important;
  white-space: normal !important;
}

.site-header .mega-menu a:hover,
.site-header .mega-menu a:focus-visible {
  border-color: rgba(53, 164, 255, 0.62) !important;
  background-image: linear-gradient(145deg, rgba(19, 44, 72, 1), rgba(7, 16, 30, 1)) !important;
  box-shadow: 0 0 26px rgba(26, 144, 255, 0.2) !important;
  outline: none !important;
}

.site-header .mega-menu svg {
  width: 22px !important;
  height: 22px !important;
  margin-top: 2px !important;
  color: #35c7ff !important;
  filter: drop-shadow(0 0 10px rgba(53, 199, 255, 0.34)) !important;
}

.site-header .mega-menu strong {
  display: block !important;
  min-width: 0 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-shadow: none !important;
  white-space: normal !important;
}

.site-header .mega-menu small {
  display: -webkit-box !important;
  min-width: 0 !important;
  margin-top: 6px !important;
  overflow: hidden !important;
  color: #d4dfed !important;
  font-size: 11.5px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
  white-space: normal !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
}

.site-header .mega-menu a span {
  min-width: 0 !important;
  white-space: normal !important;
}

@media (max-width: 1180px) {
  .site-header .mega-menu {
    position: static !important;
    display: none !important;
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin-top: 10px !important;
    transform: none !important;
  }

  .site-header .has-mega.is-open .mega-menu {
    display: grid !important;
    grid-template-columns: 1fr !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

/* Contact hero overlap fix: keep it compact without clipping the headline. */
.hero.contact-hero,
.hero.hero-contact.contact-hero {
  min-height: clamp(430px, 34vw, 500px) !important;
  max-height: none !important;
  overflow: hidden !important;
}

.contact-hero .hero-copy,
.hero-contact.contact-hero .hero-copy {
  padding-top: clamp(120px, 9vw, 148px) !important;
  padding-bottom: 56px !important;
}

.contact-hero h1,
.hero-contact.contact-hero h1 {
  max-width: 760px !important;
  font-size: clamp(46px, 4.1vw, 64px) !important;
  line-height: 1.04 !important;
}

.contact-hero p:not(.eyebrow),
.hero-contact.contact-hero p:not(.eyebrow) {
  max-width: 720px !important;
  font-size: clamp(16px, 1.1vw, 18px) !important;
  line-height: 1.55 !important;
}

.contact-layout {
  margin-top: clamp(26px, 3vw, 44px) !important;
}

@media (max-width: 760px) {
  .hero.contact-hero,
  .hero.hero-contact.contact-hero {
    min-height: auto !important;
  }

  .contact-hero .hero-copy,
  .hero-contact.contact-hero .hero-copy {
    padding-top: 104px !important;
    padding-bottom: 44px !important;
  }

  .contact-hero h1,
  .hero-contact.contact-hero h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
  }
}

/* Responsive hardening and phone-only floating action. */
*,
*::before,
*::after {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.floating-phone {
  position: fixed;
  right: max(18px, calc((100vw - var(--max)) / 2 + 18px));
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  min-width: 48px;
  padding: 0 18px;
  border: 1px solid rgba(126, 225, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #006cff, #2fc7ff);
  box-shadow: 0 0 24px rgba(0, 140, 255, 0.34), 0 18px 58px rgba(0, 0, 0, 0.32);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(18px);
  animation: phonePulse 2.8s ease-in-out infinite;
}

.floating-phone svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.floating-phone:hover,
.floating-phone:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(0, 140, 255, 0.46), 0 20px 70px rgba(0, 0, 0, 0.38);
  outline: 2px solid rgba(126, 225, 255, 0.55);
  outline-offset: 3px;
}

.floating-phone-mobile {
  display: none;
}

.nav-links a.is-active,
.nav-item > a.is-active {
  color: #ffffff !important;
  text-shadow: 0 0 18px rgba(37, 171, 255, 0.55);
}

.nav-links a.is-active::after,
.nav-item > a.is-active::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.has-mega {
  position: relative;
}

.mega-menu {
  z-index: 95 !important;
  width: min(820px, calc(100vw - 52px)) !important;
  max-width: calc(100vw - 52px) !important;
  overflow: hidden;
  border-color: rgba(57, 190, 255, 0.36) !important;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 166, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(5, 12, 23, 0.995), rgba(3, 8, 16, 0.99)) !important;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(85, 205, 255, 0.12) inset,
    0 0 70px rgba(0, 145, 255, 0.2) !important;
  backdrop-filter: blur(18px) saturate(135%) !important;
}

.has-mega.is-open .mega-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) scale(1) !important;
}

.mega-menu a {
  border-color: rgba(73, 185, 255, 0.16) !important;
  background:
    linear-gradient(145deg, rgba(14, 25, 41, 0.98), rgba(7, 15, 27, 0.96)) !important;
  color: #f2f8ff !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  border-color: rgba(70, 198, 255, 0.55) !important;
  background:
    linear-gradient(145deg, rgba(16, 39, 62, 0.99), rgba(8, 19, 34, 0.98)) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(0, 170, 255, 0.18) !important;
}

.mega-menu strong {
  color: #ffffff !important;
  text-shadow: 0 0 14px rgba(41, 183, 255, 0.22);
}

.mega-menu small {
  color: #c8d7e8 !important;
  font-weight: 600;
}

.mega-menu svg {
  color: #34c7ff !important;
  filter: drop-shadow(0 0 10px rgba(35, 190, 255, 0.38));
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 2px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.mobile-logo .brand-logo {
  width: 130px;
  height: auto;
}

.mobile-menu-close {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(55, 177, 255, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(0, 128, 255, 0.16), rgba(4, 13, 24, 0.92));
  color: #ffffff;
  font: 500 28px/1 var(--font, inherit);
  box-shadow: 0 14px 34px rgba(0, 115, 255, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(63, 196, 255, 0.72);
  box-shadow: 0 18px 42px rgba(0, 150, 255, 0.28);
  outline: none;
}

.admin-visual-grid,
.admin-home-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-visual-grid figure,
.admin-home-grid figure,
.admin-blog-login figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(58, 176, 255, 0.18);
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 168, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(1, 6, 14, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.admin-visual-grid figure::after,
.admin-home-grid figure::after,
.admin-blog-login figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 13, 0.02), rgba(2, 7, 13, 0.52)),
    radial-gradient(circle at 80% 20%, rgba(0, 168, 255, 0.16), transparent 30%);
  pointer-events: none;
}

.admin-visual-grid img,
.admin-home-grid img,
.admin-blog-login img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.005);
}

.admin-home-grid a {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 0 0 24px;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(58, 176, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(12, 25, 44, 0.76), rgba(3, 9, 18, 0.92));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.admin-home-grid a:hover,
.admin-home-grid a:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(64, 190, 255, 0.58);
  box-shadow: 0 28px 90px rgba(0, 118, 255, 0.24);
  outline: none;
}

.admin-home-grid h2,
.admin-home-grid p {
  margin-inline: 22px;
}

.admin-home-grid h2 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.2vw, 30px);
}

.admin-home-grid p {
  margin-top: 0;
  color: var(--muted);
}

.admin-blog-login figure {
  margin-bottom: 22px;
}

.admin-blog-visuals {
  margin-top: -16px;
}

.service-card img,
.blog-card img,
.project-card img,
.location-card img,
.plan-card img,
.admin-home-grid img {
  background:
    radial-gradient(circle at 24% 20%, rgba(0, 168, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f);
  transition: transform 450ms ease, filter 450ms ease;
}

.service-card:hover img,
.blog-card:hover img,
.project-card:hover img,
.location-card:hover img,
.admin-home-grid a:hover img {
  transform: scale(1.06);
}

.back-to-top {
  right: max(18px, calc((100vw - var(--max)) / 2 + 18px)) !important;
  bottom: 82px !important;
}

@keyframes phonePulse {
  0%,
  100% {
    box-shadow: 0 0 22px rgba(0, 140, 255, 0.3), 0 18px 58px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow: 0 0 34px rgba(0, 195, 255, 0.46), 0 18px 58px rgba(0, 0, 0, 0.32);
  }
}

.site-footer,
.footer-contact,
.site-footer nav,
.hero-actions,
.cta-actions,
.filter-tabs,
.location-tools,
.admin-blog-tools,
.admin-editor-actions {
  flex-wrap: wrap;
}

.service-card,
.plan-card,
.blog-card,
.project-card,
.location-card,
.trust-card,
.bullet-grid article,
.why-grid article,
.process article,
.values article {
  min-width: 0;
}

.service-card h3,
.plan-card h3,
.project-card h3,
.blog-card h3,
.location-card strong,
.section h2,
.hero h1,
.final-cta h2,
.detail-grid h2 {
  overflow-wrap: anywhere;
}

.hero-glow,
.ambient-particles {
  max-width: none;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
}

.lead-hp {
  position: fixed !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip-path: inset(50%) !important;
}

.lead-hp input {
  position: absolute !important;
  inset: 0 !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.testimonials {
  overflow: hidden;
}

.testimonials blockquote {
  max-width: 100%;
  transform: translateX(0) !important;
  visibility: hidden;
}

.testimonials blockquote.is-active {
  visibility: visible;
}

.contact-form,
.admin-blog-form,
.luxury-form,
.location-tools,
.admin-form-grid {
  min-width: 0;
}

.field,
.field input,
.field select,
.field textarea,
.location-tools label,
.location-tools input,
.location-tools select {
  width: 100%;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto !important;
  }

  .nav-links,
  .header-phone {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-menu {
    position: fixed !important;
    top: 70px !important;
    right: 16px !important;
    left: 16px !important;
    z-index: 85 !important;
    display: grid !important;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    padding: 14px !important;
    border: 1px solid rgba(65, 195, 255, 0.2) !important;
    border-radius: 20px !important;
    background:
      radial-gradient(circle at 20% 0%, rgba(0, 140, 255, 0.16), transparent 34%),
      rgba(3, 8, 16, 0.97) !important;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.46), 0 0 36px rgba(0, 140, 255, 0.12) !important;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    backdrop-filter: blur(24px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-menu a {
    display: flex !important;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    color: #eef8ff !important;
    font-size: 15px !important;
    font-weight: 850 !important;
  }

  .mobile-menu a:last-child {
    justify-content: center;
    margin-top: 8px;
    color: white !important;
    background: linear-gradient(135deg, #0072ff, #35c8ff);
    box-shadow: 0 0 20px rgba(0, 140, 255, 0.24);
  }

  .mobile-logo {
    min-height: 54px !important;
    margin-bottom: 4px;
  }
}

@media (min-width: 1025px) {
  .services-grid,
  .solution-grid,
  .blog-grid,
  .project-grid,
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .bullet-grid,
  .why-grid,
  .values,
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1600px) {
  .hero h1 {
    font-size: 58px !important;
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2 {
    font-size: 42px !important;
  }
}

@media (max-width: 1024px) {
  .hero,
  .hero.hero-compact,
  .hero.hero-support {
    min-height: 340px !important;
    max-height: none !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy {
    padding-top: 92px !important;
  }

  .hero-status {
    display: none !important;
  }

  .services-grid,
  .solution-grid,
  .blog-grid,
  .project-grid,
  .plan-grid,
  .bullet-grid,
  .why-grid,
  .values,
  .trust-grid,
  .location-list.large {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .split,
  .dual,
  .detail-grid,
  .story,
  .contact-layout,
  .authority-panel,
  .local-seo-proof,
  .admin-blog-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 82px;
  }

  .floating-phone {
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    width: auto;
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
  }

  .floating-phone-desktop {
    display: none;
  }

  .floating-phone-mobile {
    display: inline;
  }

  .back-to-top {
    bottom: 78px !important;
    right: 16px !important;
  }

  .site-header {
    min-height: 62px;
  }

  .mobile-menu {
    top: 66px !important;
    right: 12px !important;
    left: 12px !important;
    max-height: calc(100dvh - 82px);
  }

  .mobile-menu-top {
    padding-bottom: 14px;
  }

  .hero,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.contact-hero,
  .hero.location-hero {
    min-height: 244px !important;
    max-height: none !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    padding-top: 76px !important;
    padding-bottom: 24px !important;
  }

  .hero h1,
  .hero-compact h1,
  .hero-support h1 {
    font-size: clamp(25px, 8vw, 31px) !important;
    line-height: 1.08 !important;
  }

  .hero p:not(.eyebrow) {
    display: none !important;
  }

  .hero-actions,
  .cta-actions,
  .filter-tabs,
  .location-tools,
  .admin-blog-tools,
  .admin-editor-actions {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions {
    flex-direction: row !important;
    gap: 8px !important;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    width: auto !important;
    min-width: 0;
    padding-inline: 10px !important;
    white-space: nowrap;
  }

  .btn,
  .cta-actions .btn,
  .filter-tabs button,
  .location-tools label,
  .admin-editor-actions .btn {
    width: 100%;
    min-height: 44px !important;
  }

  .services-grid,
  .solution-grid,
  .blog-grid,
  .project-grid,
  .plan-grid,
  .bullet-grid,
  .why-grid,
  .values,
  .trust-grid,
  .location-list.large,
  .use-case-grid,
  .before-after-grid,
  .authority-grid,
  .seo-link-rail > div:last-child,
  .admin-form-grid,
  .admin-preview-panel,
  .admin-visual-grid,
  .admin-home-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card-body,
  .plan-card-body,
  .blog-card-copy,
  .project-card-copy,
  .project-card div,
  .blog-card div {
    padding: 18px !important;
  }

  .contact-form button[type="submit"],
  .admin-blog-form button[type="submit"] {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 104px;
  }

  .site-header {
    padding-inline: 12px !important;
  }

  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
  }

  .hero-copy,
  .section,
  .split,
  .why,
  .dual,
  .final-cta,
  .detail-grid,
  .process,
  .story,
  .values,
  .testimonials,
  .quote,
  .contact-layout,
  .article,
  .why-trust,
  .local-seo-proof {
    width: calc(100% - 24px) !important;
  }

  .hero h1 {
    font-size: 28px !important;
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2 {
    font-size: 25px !important;
  }
}

/* Image refresh and contact hero correction. Loaded last on purpose. */
.hero.contact-hero {
  min-height: 320px !important;
  max-height: 320px !important;
  overflow: hidden;
}

.contact-hero .hero-copy {
  max-width: 680px !important;
  padding-top: 104px !important;
  padding-bottom: 24px !important;
}

.contact-hero h1 {
  font-size: clamp(38px, 4.1vw, 48px) !important;
  line-height: 1.06 !important;
  max-width: 660px;
}

.contact-hero p:not(.eyebrow) {
  display: block !important;
  max-width: 620px;
  font-size: clamp(16px, 1.35vw, 18px) !important;
  line-height: 1.48 !important;
}

.service-card-media,
.plan-card-media,
.project-card > img,
.location-card figure {
  background:
    radial-gradient(circle at 72% 24%, rgba(0, 168, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #02070d, #07111f);
}

.service-card-media img,
.plan-card-media img,
.project-card > img,
.location-card figure img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.04);
}

.plan-card:nth-child(1) .plan-card-media img,
.plan-card:nth-child(2) .plan-card-media img,
.plan-card:nth-child(3) .plan-card-media img {
  object-position: center 46%;
}

@media (max-width: 760px) {
  .hero.contact-hero {
    min-height: 260px !important;
    max-height: none !important;
  }

  .contact-hero .hero-copy {
    padding-top: 78px !important;
    padding-bottom: 22px !important;
  }

  .contact-hero h1 {
    font-size: clamp(29px, 8vw, 34px) !important;
  }

  .contact-hero p:not(.eyebrow) {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}

/* Reference-style visual pass: image-led luxury tech layout. */
:root {
  --ref-bg: #02060b;
  --ref-panel: rgba(5, 12, 21, 0.86);
  --ref-panel-soft: rgba(14, 22, 33, 0.68);
  --ref-line: rgba(134, 188, 255, 0.18);
  --ref-blue: #167cff;
  --ref-blue-2: #35a4ff;
  --ref-text: #f8fbff;
  --ref-muted: #b6c0cf;
}

body {
  background:
    radial-gradient(circle at 72% 2%, rgba(28, 112, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #010407 0%, #04101d 46%, #010407 100%) !important;
  color: var(--ref-text) !important;
}

.site-header {
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  min-height: 70px !important;
  padding: 0 clamp(18px, 3.8vw, 58px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 !important;
  background: rgba(0, 2, 6, 0.92) !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.46) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
}

.site-header.is-scrolled {
  background: rgba(0, 2, 6, 0.97) !important;
}

.brand-logo {
  width: clamp(142px, 12vw, 190px) !important;
  max-height: 48px !important;
  object-fit: contain;
}

.nav-links {
  justify-content: center !important;
  gap: clamp(18px, 2vw, 34px) !important;
  font-size: clamp(11px, 0.72vw, 13px) !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.nav-links a,
.nav-item > a {
  color: rgba(242, 247, 255, 0.86) !important;
  padding: 25px 0 22px !important;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-item > a:hover,
.nav-item > a.is-active {
  color: #ffffff !important;
}

.nav-links a::after,
.nav-item > a::after {
  bottom: 13px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #087cff 18%, #35a4ff 80%, transparent) !important;
  box-shadow: 0 0 14px rgba(22, 124, 255, 0.7);
}

.header-phone {
  min-height: 42px !important;
  padding: 0 24px !important;
  border: 1px solid rgba(71, 156, 255, 0.45) !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #0b6fff, #1b8dff) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 15px 45px rgba(17, 116, 255, 0.34) !important;
}

.hero,
.hero.hero-compact,
.hero.hero-support,
.hero.contact-hero,
.hero.location-hero {
  min-height: clamp(620px, 82vh, 760px) !important;
  overflow: hidden !important;
  background: #02060b !important;
}

.hero.hero-compact,
.hero.hero-support,
.hero.contact-hero,
.hero.location-hero {
  min-height: clamp(500px, 64vh, 620px) !important;
}

.hero-bg,
.hero-bg-home,
.hero-bg-services,
.hero-bg-service-detail,
.hero-bg-support,
.hero-bg-contact,
.hero-bg-location,
.hero-bg-projects {
  background-position: center center !important;
  filter: saturate(1.1) contrast(1.08) brightness(0.92) !important;
  transform: none !important;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(0, 3, 8, 0.92) 0%, rgba(0, 6, 13, 0.78) 34%, rgba(0, 8, 16, 0.42) 68%, rgba(0, 4, 9, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 6, 13, 0.16) 56%, rgba(0, 6, 13, 0.82) 100%) !important;
}

.hero-copy,
.hero-compact .hero-copy,
.hero-support .hero-copy,
.contact-hero .hero-copy {
  width: min(650px, calc(100% - 56px)) !important;
  max-width: 650px !important;
  margin-left: clamp(24px, 5vw, 74px) !important;
  padding-top: clamp(134px, 18vh, 172px) !important;
  padding-bottom: 110px !important;
  transform: none !important;
}

.hero .eyebrow,
.section .eyebrow,
.split .eyebrow,
.why .eyebrow,
.dual .eyebrow,
.final-cta .eyebrow {
  border: 0 !important;
  background: transparent !important;
  color: #1487ff !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.07em !important;
}

.hero h1 {
  max-width: 720px !important;
  color: #ffffff !important;
  font-size: clamp(48px, 5.2vw, 84px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.54) !important;
}

.hero p:not(.eyebrow) {
  max-width: 560px !important;
  color: rgba(228, 236, 248, 0.86) !important;
  font-size: clamp(15px, 1.08vw, 18px) !important;
  line-height: 1.72 !important;
}

.hero-actions {
  gap: 18px !important;
  margin-top: 30px !important;
}

.btn,
.header-phone,
.hero-actions .btn,
.cta-actions .btn,
.filter-tabs button {
  border-radius: 6px !important;
  min-height: 46px !important;
  padding: 0 24px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.btn.primary,
.hero-actions .btn.primary,
.cta-actions .btn.primary {
  border-color: rgba(69, 157, 255, 0.5) !important;
  background: linear-gradient(135deg, #0b66ff, #1f95ff) !important;
  color: #ffffff !important;
  box-shadow: 0 20px 50px rgba(22, 124, 255, 0.34) !important;
}

.btn.ghost,
.hero-actions .btn.ghost,
.cta-actions .btn.ghost {
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: rgba(4, 8, 14, 0.54) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.hero-status {
  position: absolute !important;
  bottom: 164px !important;
  left: clamp(24px, 5vw, 74px) !important;
  z-index: 3 !important;
  display: flex !important;
  width: min(640px, calc(100% - 56px)) !important;
  gap: 22px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-status span {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.hero-status b {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(89, 168, 255, 0.28) !important;
  border-radius: 50% !important;
  color: #2d99ff !important;
  background: rgba(4, 16, 31, 0.68) !important;
  font-size: 10px !important;
  box-shadow: inset 0 0 18px rgba(19, 125, 255, 0.13), 0 0 24px rgba(15, 119, 255, 0.2);
}

.hero-status small {
  display: block !important;
  max-width: 118px !important;
  color: rgba(232, 239, 249, 0.74) !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  text-transform: none !important;
}

.scroll-indicator {
  display: none !important;
}

.section,
.split,
.why,
.dual,
.final-cta,
.detail-grid,
.process,
.story,
.values,
.testimonials,
.quote,
.contact-layout,
.article,
.location-page,
.admin-blog-layout,
.lead-collection-page {
  width: min(1160px, calc(100% - 48px)) !important;
}

.section {
  padding-top: clamp(64px, 7vw, 92px) !important;
  padding-bottom: clamp(64px, 7vw, 92px) !important;
}

.section-head {
  align-items: end !important;
  margin-bottom: 32px !important;
}

.section h2,
.split h2,
.why h2,
.dual h2,
.final-cta h2,
.detail-grid h2,
.process h2,
.story h2 {
  color: #ffffff !important;
  font-size: clamp(31px, 3.5vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
}

.cards,
.services-grid,
.project-grid,
.blog-grid,
.plan-grid,
.solution-grid {
  gap: 14px !important;
}

.service-card,
.plan-card,
.project-card,
.blog-card,
.location-card {
  overflow: hidden !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(8, 16, 28, 0.72), rgba(4, 9, 16, 0.95)) !important;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.service-card:hover,
.plan-card:hover,
.project-card:hover,
.blog-card:hover,
.location-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(53, 164, 255, 0.58) !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45), 0 0 34px rgba(22, 124, 255, 0.24) !important;
}

.service-card-media,
.plan-card-media,
.project-card > img,
.blog-card > img,
.location-card figure {
  height: 190px !important;
  min-height: 190px !important;
  border-radius: 0 !important;
}

.service-card-media::after,
.plan-card-media::after,
.location-card figure::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 4, 10, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 55%) !important;
}

.service-card .icon,
.service-card-media .icon {
  right: auto !important;
  bottom: 18px !important;
  left: 18px !important;
  width: 46px !important;
  height: 46px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 50% !important;
  background: rgba(9, 16, 26, 0.68) !important;
  color: #ffffff !important;
  box-shadow: 0 0 22px rgba(22, 124, 255, 0.22) !important;
}

.service-card-body,
.plan-card-body,
.blog-card-copy,
.project-card-copy,
.project-card div,
.blog-card div {
  padding: 18px 18px 20px !important;
}

.service-card h3,
.plan-card h3,
.project-card h3,
.blog-card h3 {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase;
}

.service-card p,
.plan-card p,
.project-card p,
.blog-card p {
  color: rgba(218, 227, 239, 0.76) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.service-card b,
.plan-card b,
.project-card b,
.blog-card b,
.section-head a {
  color: #2d99ff !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

.why-trust {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 20px clamp(20px, 5vw, 72px) !important;
  border-block: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 0 !important;
  background: rgba(0, 1, 4, 0.7) !important;
}

.why-trust .section-head {
  display: none !important;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

.trust-card {
  min-height: 86px !important;
  padding: 16px 20px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.trust-card:last-child {
  border-right: 0 !important;
}

.trust-card span {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
}

.trust-card h3 {
  font-size: 13px !important;
  text-transform: uppercase;
}

.trust-card p {
  font-size: 12px !important;
  color: rgba(225, 233, 244, 0.64) !important;
}

.final-cta,
.split,
.dual,
.story article,
.authority-panel,
.contact-panel,
.location-tools,
.lead-collection-intro,
.lead-collection-form {
  border-color: rgba(119, 178, 255, 0.18) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 70% 24%, rgba(22, 124, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(10, 17, 29, 0.8), rgba(4, 8, 14, 0.94)) !important;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.34) !important;
}

.floating-phone {
  border-radius: 999px !important;
  background: linear-gradient(135deg, #0b6fff, #31a9ff) !important;
  box-shadow: 0 18px 50px rgba(16, 123, 255, 0.36) !important;
}

@media (min-width: 1280px) {
  .home-placement + .process,
  .services-grid,
  .solution-grid,
  .project-grid,
  .blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .section .services-grid:first-child,
  .all-services {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 68px !important;
    padding-inline: 18px !important;
    border-radius: 0 !important;
  }

  .brand-logo {
    width: 138px !important;
  }

  .menu-toggle {
    border-radius: 6px !important;
  }

  .hero,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.contact-hero,
  .hero.location-hero {
    min-height: auto !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: min(100% - 36px, 680px) !important;
    margin-left: 18px !important;
    padding-top: 112px !important;
    padding-bottom: 88px !important;
  }

  .hero-status {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: min(100% - 36px, 680px) !important;
    margin: -58px 18px 34px !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 760px) {
  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    padding-top: 100px !important;
    padding-bottom: 54px !important;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px) !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-status {
    display: none !important;
  }

  .service-card-media,
  .plan-card-media,
  .project-card > img,
  .blog-card > img,
  .location-card figure {
    height: 210px !important;
  }

  .trust-grid {
    grid-template-columns: 1fr !important;
  }

  .trust-card {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
}

/* Home page: pull the image cards into the first view like the reference. */
@media (min-width: 761px) {
  .home-feature-services {
    position: relative !important;
    z-index: 6 !important;
    margin-top: -92px !important;
    padding-top: 0 !important;
  }

  .home-feature-services .section-head {
    display: none !important;
  }

  .home-feature-services .services-grid {
    width: min(100% - 96px, 1120px) !important;
    margin-inline: auto !important;
  }

  .home-feature-services .service-card {
    min-height: 318px !important;
  }

  .why-trust {
    margin-top: 20px !important;
  }
}

/* Last-mile overrides: keep the reference-style first screen compact and clean. */
.hero-status {
  display: none !important;
}

.hero,
.hero.hero-home {
  min-height: clamp(500px, 56vw, 560px) !important;
}

.hero.hero-compact,
.hero.hero-support,
.hero.hero-projects,
.hero.hero-services,
.hero.hero-service-detail,
.hero.location-hero {
  min-height: clamp(420px, 48vw, 500px) !important;
}

.hero.contact-hero {
  min-height: 340px !important;
}

.hero-copy {
  padding-top: 122px !important;
  padding-bottom: 58px !important;
}

.home-feature-services {
  margin-top: 0 !important;
  padding-top: clamp(34px, 5vw, 54px) !important;
}

.home-feature-services .services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.home-feature-services .service-card:nth-child(n + 5) {
  display: none !important;
}

.home-feature-services .service-card-media {
  height: 178px !important;
  min-height: 178px !important;
}

@media (min-width: 1280px) {
  .hero,
  .hero.hero-home {
    min-height: 590px !important;
  }
}

@media (max-width: 1024px) {
  .home-feature-services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-feature-services .service-card:nth-child(n + 5) {
    display: flex !important;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero.hero-home,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.hero-services,
  .hero.hero-service-detail,
  .hero.location-hero,
  .hero.contact-hero {
    min-height: auto !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: calc(100% - 36px) !important;
    margin-inline: 18px !important;
    padding-top: 104px !important;
    padding-bottom: 50px !important;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
    line-height: 1.05 !important;
  }

  .home-feature-services .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final final home-card overlay after all visual-pass rules. */
@media (min-width: 761px) {
  .home-feature-services {
    position: relative !important;
    z-index: 6 !important;
    margin-top: -92px !important;
    padding-top: 0 !important;
  }

  .home-feature-services .section-head {
    display: none !important;
  }

  .home-feature-services .services-grid {
    width: min(100% - 96px, 1120px) !important;
    margin-inline: auto !important;
  }

  .home-feature-services .service-card {
    min-height: 318px !important;
  }

  .why-trust {
    margin-top: 20px !important;
  }
}

/* Final trust-row sizing override. */
.why-trust {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: 22px auto 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(119, 178, 255, 0.2) !important;
  border-radius: 16px !important;
}

@media (max-width: 760px) {
  .why-trust {
    width: calc(100% - 36px) !important;
    padding: 8px 14px !important;
  }
}

/* Final Why Choose layout override. */
.why {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr) !important;
  gap: clamp(24px, 4vw, 44px) !important;
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin: clamp(48px, 6vw, 76px) auto !important;
  padding: clamp(28px, 4vw, 42px) !important;
  align-items: center !important;
}

.why-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.why-grid article {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  gap: 14px !important;
  min-height: 138px !important;
  padding: 18px !important;
  align-content: start !important;
}

.why-grid article h3 {
  font-size: clamp(17px, 1.3vw, 20px) !important;
  line-height: 1.15 !important;
}

.why-grid article p {
  font-size: 13.5px !important;
  line-height: 1.45 !important;
}

@media (max-width: 1040px) {
  .why {
    grid-template-columns: 1fr !important;
    width: min(100% - 48px, 900px) !important;
  }
}

@media (max-width: 760px) {
  .why {
    width: calc(100% - 36px) !important;
    padding: 24px 18px !important;
  }

  .why-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final card text placement for Why Choose proof cards. */
.why-grid article span {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: start !important;
}

.why-grid article h3,
.why-grid article p {
  grid-column: 2 !important;
  min-width: 0 !important;
}

.why-grid article p {
  margin: 2px 0 0 !important;
  max-width: 100% !important;
}

@media (max-width: 760px) {
  .why-grid article {
    grid-template-columns: 48px minmax(0, 1fr) !important;
  }
}

/* Realistic homepage coverage visual. */
.coverage-map {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  gap: clamp(28px, 5vw, 54px) !important;
}

.coverage-map .coverage-picture {
  position: relative !important;
  min-height: 360px !important;
  aspect-ratio: 16 / 9 !important;
  border: 1px solid rgba(65, 195, 255, 0.34) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(65, 195, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #02070d, #07111f) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(0, 149, 255, 0.14) !important;
}

.coverage-picture::before,
.coverage-picture::after {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  content: "" !important;
}

.coverage-picture::before {
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.58), rgba(2, 7, 13, 0.18) 44%, rgba(2, 7, 13, 0.54)),
    linear-gradient(0deg, rgba(2, 7, 13, 0.8), transparent 44%, rgba(2, 7, 13, 0.16)) !important;
}

.coverage-picture::after {
  background:
    radial-gradient(circle at 50% 52%, rgba(65, 195, 255, 0.18), transparent 24%),
    linear-gradient(120deg, transparent 0 40%, rgba(65, 195, 255, 0.1) 50%, transparent 62%) !important;
  mix-blend-mode: screen !important;
}

.coverage-picture img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.01) !important;
  filter: saturate(1.08) contrast(1.08) brightness(0.86) !important;
  transition: transform 700ms ease, filter 700ms ease !important;
}

.coverage-picture:hover img {
  transform: scale(1.045) !important;
  filter: saturate(1.14) contrast(1.12) brightness(0.92) !important;
}

.coverage-city-links {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  left: 18px !important;
  z-index: 3 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

.coverage-city-links a {
  position: static !important;
  min-width: 0 !important;
  padding: 8px 11px !important;
  border: 1px solid rgba(119, 210, 255, 0.36) !important;
  border-radius: 999px !important;
  color: #f5fbff !important;
  background: rgba(3, 10, 20, 0.72) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  transform: none !important;
  backdrop-filter: blur(12px) !important;
}

.coverage-city-links a:hover {
  border-color: rgba(65, 195, 255, 0.82) !important;
  background: rgba(0, 132, 255, 0.82) !important;
  box-shadow: 0 0 24px rgba(0, 168, 255, 0.32) !important;
}

@media (max-width: 1024px) {
  .coverage-map {
    width: min(100% - 48px, 880px) !important;
    grid-template-columns: 1fr !important;
  }

  .coverage-city-links {
    justify-content: flex-start !important;
  }
}

@media (max-width: 760px) {
  .coverage-map {
    width: calc(100% - 36px) !important;
  }

  .coverage-map .coverage-picture {
    min-height: auto !important;
    aspect-ratio: auto !important;
    border-radius: 18px !important;
    overflow: visible !important;
  }

  .coverage-picture img {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 18px 18px 0 0 !important;
    object-fit: cover !important;
  }

  .coverage-picture::before,
  .coverage-picture::after {
    border-radius: 18px 18px 0 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    bottom: auto !important;
  }

  .coverage-city-links {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 4 !important;
    display: flex !important;
    max-height: none !important;
    padding: 12px !important;
    overflow: visible !important;
    border-top: 1px solid rgba(65, 195, 255, 0.16) !important;
    background: linear-gradient(180deg, rgba(6, 15, 28, 0.92), rgba(3, 9, 18, 0.96)) !important;
  }

  .coverage-city-links a {
    padding: 7px 8px !important;
    font-size: 9.5px !important;
  }
}

/* Lovable UI transfer: visual language only, existing content/routes stay intact. */
:root {
  --lovable-bg: #07101b;
  --lovable-bg-deep: #02060b;
  --lovable-surface: rgba(15, 26, 42, 0.72);
  --lovable-surface-strong: rgba(12, 20, 33, 0.92);
  --lovable-border: rgba(91, 145, 198, 0.18);
  --lovable-electric: #2aa7ff;
  --lovable-electric-2: #35d0ff;
  --lovable-muted: #a7b4c6;
  --lovable-heading: "Space Grotesk", system-ui, sans-serif;
  --lovable-body: "DM Sans", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth !important;
}

body {
  font-family: var(--lovable-body) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(42, 167, 255, 0.16), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(53, 208, 255, 0.08), transparent 28%),
    linear-gradient(180deg, var(--lovable-bg-deep), var(--lovable-bg) 38%, var(--lovable-bg-deep)) !important;
}

h1,
h2,
h3,
.brand span,
.btn,
.eyebrow,
.service-card b,
.nav-links a,
.header-phone {
  font-family: var(--lovable-heading) !important;
}

.site-header {
  top: 0 !important;
  width: min(100% - 28px, 1480px) !important;
  min-height: 72px !important;
  margin: 8px auto 0 !important;
  padding: 12px clamp(18px, 2.4vw, 30px) !important;
  border: 1px solid rgba(91, 145, 198, 0.16) !important;
  border-radius: 0 0 18px 18px !important;
  background: rgba(3, 8, 16, 0.9) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(22px) saturate(135%) !important;
}

.site-header.is-scrolled {
  background: rgba(3, 8, 16, 0.96) !important;
  border-color: rgba(42, 167, 255, 0.22) !important;
}

.brand {
  gap: 1px !important;
  line-height: 0.88 !important;
  color: #f7fbff !important;
  letter-spacing: 0.04em !important;
}

.brand span {
  font-size: 25px !important;
  color: #f6fbff !important;
  text-shadow: 0 0 24px rgba(42, 167, 255, 0.28) !important;
}

.brand small {
  color: #8fb4dd !important;
  font-size: 8px !important;
  letter-spacing: 0.48em !important;
}

.nav-links {
  justify-content: center !important;
  gap: clamp(10px, 1.18vw, 22px) !important;
  min-width: 0 !important;
}

.nav-links a,
.nav-item > a,
.nav-item > button {
  position: relative !important;
  color: rgba(237, 246, 255, 0.78) !important;
  font-size: clamp(10.5px, 0.78vw, 12px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.nav-links a::after,
.nav-item > a::after,
.nav-item > button::after {
  position: absolute !important;
  right: 0 !important;
  bottom: -10px !important;
  left: 0 !important;
  height: 2px !important;
  border-radius: 999px !important;
  content: "" !important;
  background: linear-gradient(90deg, transparent, var(--lovable-electric), transparent) !important;
  opacity: 0 !important;
  transform: scaleX(0.55) !important;
  transition: opacity 180ms ease, transform 180ms ease !important;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-item > a:hover,
.nav-item > a.is-active,
.nav-item > button:hover,
.nav-item > button.is-active {
  color: #ffffff !important;
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-item > a:hover::after,
.nav-item > a.is-active::after,
.nav-item > button:hover::after,
.nav-item > button.is-active::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

.header-phone,
.btn.primary,
.btn.hero,
.lead-submit {
  border: 0 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #1179ff, #35c8ff) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 14px 42px rgba(17, 121, 255, 0.3) !important;
}

.header-phone {
  white-space: nowrap !important;
  padding-inline: clamp(14px, 1.55vw, 22px) !important;
}

@media (max-width: 1320px) {
  .site-header {
    width: 100% !important;
    margin-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
  }

  .nav-links {
    gap: 10px !important;
  }

  .nav-links a,
  .nav-item > a,
  .nav-item > button {
    font-size: 10.5px !important;
  }

  .header-phone {
    min-height: 40px !important;
    padding-inline: 14px !important;
    font-size: 11px !important;
  }
}

.header-phone:hover,
.btn.primary:hover,
.lead-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 20px 56px rgba(42, 167, 255, 0.42) !important;
}

.btn,
.header-phone {
  min-height: 44px !important;
  border-radius: 12px !important;
  padding: 0 18px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.btn.ghost {
  border: 1px solid rgba(158, 195, 230, 0.28) !important;
  color: #eef7ff !important;
  background: rgba(10, 18, 30, 0.66) !important;
  backdrop-filter: blur(12px) !important;
}

.btn.ghost:hover {
  border-color: rgba(42, 167, 255, 0.68) !important;
  color: #ffffff !important;
  background: rgba(42, 167, 255, 0.1) !important;
}

.hero,
.hero.hero-home {
  min-height: min(760px, 92vh) !important;
  padding-top: 96px !important;
  border-bottom: 1px solid rgba(91, 145, 198, 0.16) !important;
}

.hero-home .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(2, 6, 11, 0.96), rgba(2, 6, 11, 0.78) 43%, rgba(2, 6, 11, 0.34)),
    linear-gradient(0deg, rgba(2, 6, 11, 0.98), transparent 42%),
    url("/images/lovable/hero-bg.jpg") !important;
  background-position: center center !important;
  filter: saturate(1.08) contrast(1.08) brightness(0.88) !important;
}

.hero-veil {
  background:
    radial-gradient(circle at 64% 38%, rgba(42, 167, 255, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(2, 6, 11, 0.9), rgba(2, 6, 11, 0.42), rgba(2, 6, 11, 0.16)) !important;
}

.hero-copy {
  width: min(100% - 96px, 1120px) !important;
  max-width: 690px !important;
  margin-inline: auto !important;
  padding-top: clamp(118px, 13vh, 150px) !important;
  padding-bottom: clamp(160px, 18vh, 220px) !important;
}

.hero h1 {
  max-width: 760px !important;
  font-size: clamp(42px, 5.6vw, 78px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance !important;
}

.hero p:not(.eyebrow) {
  max-width: 575px !important;
  color: rgba(220, 232, 246, 0.82) !important;
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 1.7 !important;
}

.eyebrow {
  color: var(--lovable-electric-2) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
}

.hero-status {
  right: max(42px, calc((100vw - 1120px) / 2)) !important;
  bottom: 110px !important;
  width: min(430px, 32vw) !important;
  padding: 20px !important;
  border: 1px solid rgba(152, 196, 255, 0.2) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(21, 28, 42, 0.78), rgba(72, 80, 98, 0.42)) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34), 0 0 60px rgba(42, 167, 255, 0.18) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
}

.home-feature-services {
  margin-top: -118px !important;
  position: relative !important;
  z-index: 7 !important;
}

.service-card,
.project-card,
.blog-card,
.plan-card,
.admin-card,
.contact-card,
.form-card,
.why,
.why-trust,
.timeline-section,
.coverage-picture,
.split > article,
.dual article,
.feature-list article {
  border-color: var(--lovable-border) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(16, 27, 43, 0.86), rgba(6, 12, 22, 0.94)) !important;
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.26) !important;
}

.service-card:hover,
.project-card:hover,
.blog-card:hover,
.plan-card:hover {
  border-color: rgba(42, 167, 255, 0.46) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), 0 0 34px rgba(42, 167, 255, 0.17) !important;
}

.service-card-media {
  border-radius: 15px 15px 0 0 !important;
}

.service-card-media::after,
.project-card figure::after,
.blog-card figure::after {
  background: linear-gradient(180deg, transparent 20%, rgba(2, 6, 11, 0.7) 100%) !important;
}

.service-card h3,
.project-card h3,
.blog-card h3,
.plan-card h3 {
  color: #f7fbff !important;
  font-size: clamp(18px, 1.45vw, 22px) !important;
  letter-spacing: -0.03em !important;
}

.service-card p,
.project-card p,
.blog-card p,
.plan-card p {
  color: var(--lovable-muted) !important;
  line-height: 1.65 !important;
}

.service-card .icon {
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  background: rgba(42, 167, 255, 0.86) !important;
  box-shadow: 0 0 30px rgba(42, 167, 255, 0.32) !important;
}

.section,
.split,
.dual,
.why,
.process,
.brand-tech,
.coverage-map {
  width: min(100% - 96px, 1120px) !important;
  max-width: 1120px !important;
}

.section-head h2,
.split h2,
.dual h2,
.why h2,
.process h2,
.coverage-map h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.site-header .mega-menu {
  border-color: rgba(91, 145, 198, 0.22) !important;
  background: rgba(4, 11, 20, 0.98) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56), 0 0 44px rgba(42, 167, 255, 0.14) !important;
}

.mobile-menu {
  background: rgba(3, 8, 16, 0.98) !important;
  backdrop-filter: blur(22px) !important;
}

@media (max-width: 1024px) {
  .site-header {
    width: 100% !important;
    margin-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-radius: 0 !important;
  }

  .hero-status {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100% - 48px, 720px) !important;
    margin: -130px auto 60px !important;
  }

  .home-feature-services {
    margin-top: 0 !important;
  }

  .section,
  .split,
  .dual,
  .why,
  .process,
  .brand-tech,
  .coverage-map {
    width: min(100% - 48px, 900px) !important;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero.hero-home {
    min-height: auto !important;
    padding-top: 72px !important;
  }

  .hero-copy {
    width: calc(100% - 36px) !important;
    padding-top: 98px !important;
    padding-bottom: 84px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
    line-height: 1 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .hero-status {
    width: calc(100% - 36px) !important;
    margin: -50px auto 36px !important;
  }

  .section,
  .split,
  .dual,
  .why,
  .process,
  .brand-tech,
  .coverage-map {
    width: calc(100% - 36px) !important;
  }
}

/* Lovable-style Support page: dark architectural hero, left copy, cards overlapping below. */
.hero.hero-support {
  display: block !important;
  min-height: clamp(620px, 78vh, 760px) !important;
  padding-top: 96px !important;
  overflow: hidden !important;
  background: #02050a !important;
}

.hero.hero-support .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(2, 5, 10, 0.98) 0%, rgba(2, 5, 10, 0.88) 35%, rgba(2, 5, 10, 0.42) 68%, rgba(2, 5, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 5, 10, 0.98), transparent 46%),
    url("/images/heroes/home-luxury-smart-home-night.webp") !important;
  background-position: center center !important;
  background-size: cover !important;
  filter: saturate(1.08) contrast(1.06) brightness(0.86) !important;
}

.hero.hero-support .hero-veil {
  background:
    radial-gradient(circle at 66% 52%, rgba(25, 139, 255, 0.22), transparent 27%),
    radial-gradient(circle at 18% 46%, rgba(25, 139, 255, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(0, 2, 6, 0.86), rgba(0, 4, 10, 0.36), rgba(0, 5, 13, 0.12)) !important;
}

.hero.hero-support .hero-copy {
  width: min(100% - 120px, 1120px) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding-top: clamp(128px, 14vh, 170px) !important;
  padding-bottom: 220px !important;
  text-align: left !important;
}

.hero.hero-support .hero-copy > * {
  max-width: 610px !important;
}

.hero.hero-support h1 {
  font-size: clamp(48px, 5vw, 76px) !important;
  line-height: 0.99 !important;
  letter-spacing: -0.05em !important;
}

.hero.hero-support .hero-copy p:not(.eyebrow) {
  color: rgba(224, 235, 248, 0.84) !important;
  font-size: clamp(16px, 1.15vw, 18px) !important;
}

.hero.hero-support .hero-actions {
  justify-content: flex-start !important;
}

.hero.hero-support + .section {
  position: relative !important;
  z-index: 8 !important;
  width: min(100% - 120px, 1120px) !important;
  margin-top: 28px !important;
  padding-top: 0 !important;
  background: transparent !important;
}

.hero.hero-support + .section .plan-grid {
  width: 100% !important;
  margin-inline: auto !important;
}

.hero.hero-support + .section .plan-card {
  border-color: rgba(113, 172, 232, 0.26) !important;
  background: linear-gradient(180deg, rgba(15, 27, 43, 0.9), rgba(5, 11, 20, 0.96)) !important;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34) !important;
}

@media (max-width: 1024px) {
  .hero.hero-support {
    min-height: auto !important;
  }

  .hero.hero-support .hero-copy {
    width: min(100% - 48px, 900px) !important;
    padding-top: 120px !important;
    padding-bottom: 150px !important;
  }

  .hero.hero-support + .section {
    width: min(100% - 48px, 900px) !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 760px) {
  .hero.hero-support .hero-copy {
    width: calc(100% - 36px) !important;
    padding-top: 100px !important;
    padding-bottom: 96px !important;
  }

  .hero.hero-support h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  .hero.hero-support .hero-actions {
    justify-content: stretch !important;
  }

  .hero.hero-support + .section {
    width: calc(100% - 36px) !important;
    margin-top: 0 !important;
  }
}

/* Homepage reference style from Lovable screenshot. */
body:has(.hero-home) .site-header {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-height: 74px !important;
  margin: 0 !important;
  padding: 0 max(18px, calc((100vw - 1350px) / 2 + 18px)) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(126, 154, 190, 0.16) !important;
  border-radius: 0 !important;
  background: rgba(5, 11, 20, 0.94) !important;
  box-shadow: none !important;
}

body:has(.hero-home) .brand-logo {
  width: 140px !important;
  height: 48px !important;
}

body:has(.hero-home) .nav-links {
  gap: clamp(12px, 1.15vw, 22px) !important;
}

body:has(.hero-home) .nav-links > a,
body:has(.hero-home) .nav-item > a {
  color: rgba(223, 231, 242, 0.72) !important;
  font-size: clamp(11px, 0.7vw, 13px) !important;
  font-family: var(--lovable-body) !important;
  font-weight: 700 !important;
}

body:has(.hero-home) .nav-links > a[href="#/solutions"],
body:has(.hero-home) .nav-links > a[href="#/support"],
body:has(.hero-home) .nav-links > a[href="#/resources"],
body:has(.hero-home) .nav-links > a[href="#/blog"],
body:has(.hero-home) .nav-links > a[href="#/solutions/lead-automation"] {
  display: inline-flex !important;
}

body:has(.hero-home) .header-phone {
  min-height: 44px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  color: #06111d !important;
  background: linear-gradient(135deg, #00a7ff, #30d4ff) !important;
  font-size: 14px !important;
  font-family: var(--lovable-body) !important;
  box-shadow: 0 16px 42px rgba(0, 170, 255, 0.24) !important;
}

.hero.hero-home {
  min-height: 100vh !important;
  padding-top: 74px !important;
  border-bottom: 0 !important;
}

.hero.hero-home .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 16, 0.94) 0%, rgba(3, 8, 16, 0.68) 38%, rgba(3, 8, 16, 0.14) 100%),
    linear-gradient(0deg, rgba(3, 8, 16, 0.92), transparent 40%),
    var(--hero-image) !important;
  background-position: center center !important;
  filter: saturate(1.05) contrast(1.08) brightness(0.72) !important;
}

.hero.hero-home .hero-veil {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 167, 255, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(3, 8, 16, 0.86), rgba(3, 8, 16, 0.34), rgba(3, 8, 16, 0.08)) !important;
}

.hero.hero-home .hero-copy {
  width: min(100% - 96px, 1350px) !important;
  max-width: 1350px !important;
  margin: 0 auto !important;
  padding-top: clamp(180px, 21vh, 250px) !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}

.hero.hero-home .hero-copy > * {
  max-width: 1060px !important;
}

.hero.hero-home .eyebrow {
  margin-bottom: 30px !important;
  color: #00aaff !important;
  font-family: var(--lovable-body) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.32em !important;
}

.hero.hero-home h1 {
  color: #f7fbff !important;
  font-size: clamp(58px, 6.9vw, 96px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.055em !important;
  max-width: 1060px !important;
  text-shadow: 0 12px 52px rgba(0, 0, 0, 0.42) !important;
}

.hero.hero-home .hero-accent {
  color: #08aeff !important;
  white-space: nowrap !important;
  text-shadow: 0 0 42px rgba(0, 170, 255, 0.28) !important;
}

.hero.hero-home .hero-copy p:not(.eyebrow) {
  max-width: 620px !important;
  margin-top: 34px !important;
  color: rgba(214, 226, 244, 0.86) !important;
  font-size: 20px !important;
  line-height: 1.45 !important;
}

.hero.hero-home .hero-actions {
  margin-top: 40px !important;
  gap: 16px !important;
  justify-content: flex-start !important;
}

.hero.hero-home .hero-actions .btn {
  min-width: 164px !important;
  min-height: 54px !important;
  border-radius: 999px !important;
  font-family: var(--lovable-body) !important;
  font-size: 15px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.hero.hero-home .hero-status {
  position: absolute !important;
  left: max(48px, calc((100vw - 1350px) / 2 + 24px)) !important;
  right: auto !important;
  bottom: clamp(100px, 12vh, 150px) !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) !important;
  gap: clamp(34px, 4vw, 72px) !important;
  width: min(calc(100vw - 96px), 760px) !important;
  max-width: 760px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
}

.hero.hero-home .hero-status span {
  display: block !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.hero.hero-home .hero-status b {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  place-items: normal !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #08aeff !important;
  font-size: 34px !important;
  font-family: var(--lovable-heading) !important;
  line-height: 1 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.hero.hero-home .hero-status small {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin-top: 8px !important;
  color: rgba(216, 228, 244, 0.85) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}

.hero.hero-home + .home-feature-services {
  margin-top: 0 !important;
  padding-top: 64px !important;
}

@media (max-width: 900px) {
  body:has(.hero-home) .nav-links,
  body:has(.hero-home) .header-phone {
    display: none !important;
  }

  .hero.hero-home .hero-copy {
    width: calc(100% - 36px) !important;
    padding-top: 128px !important;
  }

  .hero.hero-home h1 {
    font-size: clamp(44px, 12vw, 70px) !important;
  }

  .hero.hero-home .hero-status {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: calc(100% - 36px) !important;
    margin: 42px auto 56px !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* Global Lovable-style visual system across all public pages. */
:root {
  --izzo-page-max: 1350px;
  --izzo-section-max: 1200px;
  --izzo-header-h: 74px;
  --izzo-blue: #08aeff;
  --izzo-blue-2: #2fd6ff;
  --izzo-ink: #020711;
  --izzo-panel: rgba(9, 19, 33, 0.82);
  --izzo-line: rgba(118, 174, 231, 0.18);
}

html {
  scroll-padding-top: var(--izzo-header-h);
}

body {
  background:
    radial-gradient(circle at 74% 0%, rgba(0, 150, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #020711 0%, #04101d 42%, #020711 100%) !important;
}

.site-header {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-height: var(--izzo-header-h) !important;
  margin: 0 !important;
  padding: 0 max(18px, calc((100vw - var(--izzo-page-max)) / 2 + 18px)) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(126, 154, 190, 0.16) !important;
  border-radius: 0 !important;
  background: rgba(5, 11, 20, 0.95) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
}

.site-header.is-scrolled {
  background: rgba(5, 11, 20, 0.98) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28) !important;
}

.brand-logo {
  width: 140px !important;
  height: 48px !important;
}

.nav-links {
  gap: clamp(12px, 1.05vw, 22px) !important;
  align-items: center !important;
}

.nav-links > a,
.nav-item > a {
  position: relative !important;
  color: rgba(223, 231, 242, 0.74) !important;
  font-family: var(--lovable-body) !important;
  font-size: clamp(11px, 0.7vw, 13px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.nav-links > a::after,
.nav-item > a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -20px !important;
  width: 26px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, var(--izzo-blue), transparent) !important;
  box-shadow: 0 0 14px rgba(0, 170, 255, 0.7) !important;
  opacity: 0 !important;
  transform: translateX(-50%) scaleX(0.3) !important;
  transition: opacity 180ms ease, transform 180ms ease !important;
}

.nav-links > a:hover,
.nav-item:hover > a,
.nav-links > a.active,
.nav-item > a.active,
.nav-links > a.is-active,
.nav-item > a.is-active {
  color: #ffffff !important;
}

.nav-links > a:hover::after,
.nav-item:hover > a::after,
.nav-links > a.active::after,
.nav-item > a.active::after,
.nav-links > a.is-active::after,
.nav-item > a.is-active::after {
  opacity: 1 !important;
  transform: translateX(-50%) scaleX(1) !important;
}

.header-phone {
  min-height: 44px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  color: #06111d !important;
  background: linear-gradient(135deg, #00a7ff, #30d4ff) !important;
  font-family: var(--lovable-body) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 16px 42px rgba(0, 170, 255, 0.24) !important;
}

.mega-menu {
  top: calc(100% + 14px) !important;
  z-index: 9999 !important;
  width: min(980px, calc(100vw - 48px)) !important;
  padding: 20px !important;
  border: 1px solid rgba(66, 165, 245, 0.26) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(9, 18, 31, 0.98), rgba(4, 10, 19, 0.98)),
    radial-gradient(circle at 25% 0%, rgba(0, 170, 255, 0.16), transparent 34%) !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58), 0 0 40px rgba(0, 170, 255, 0.1) !important;
  backdrop-filter: blur(24px) saturate(160%) !important;
}

.mega-menu a,
.mega-menu .mega-item {
  border: 1px solid rgba(108, 171, 235, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(11, 24, 40, 0.88) !important;
  color: #f5f9ff !important;
}

.mega-menu a:hover,
.mega-menu .mega-item:hover {
  border-color: rgba(47, 214, 255, 0.45) !important;
  background: rgba(14, 38, 62, 0.98) !important;
  box-shadow: 0 0 24px rgba(0, 170, 255, 0.14) !important;
}

.mega-menu p,
.mega-menu small {
  color: rgba(222, 232, 246, 0.78) !important;
}

.hero:not(.hero-home) {
  display: block !important;
  min-height: clamp(500px, 62vh, 680px) !important;
  padding-top: var(--izzo-header-h) !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(74, 157, 238, 0.14) !important;
  background: var(--izzo-ink) !important;
}

.hero:not(.hero-home).hero-compact,
.hero.hero-contact {
  min-height: clamp(420px, 48vh, 560px) !important;
}

.hero:not(.hero-home) .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 16, 0.95) 0%, rgba(3, 8, 16, 0.66) 42%, rgba(3, 8, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 8, 16, 0.94), transparent 45%),
    var(--hero-image) !important;
  background-position: center center !important;
  background-size: cover !important;
  filter: saturate(1.08) contrast(1.08) brightness(0.72) !important;
}

.hero:not(.hero-home) .hero-veil {
  background:
    radial-gradient(circle at 76% 18%, rgba(0, 167, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 42%, rgba(0, 167, 255, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(3, 8, 16, 0.9), rgba(3, 8, 16, 0.34), rgba(3, 8, 16, 0.1)) !important;
}

.hero:not(.hero-home) .hero-copy {
  width: min(100% - 96px, var(--izzo-page-max)) !important;
  max-width: var(--izzo-page-max) !important;
  margin: 0 auto !important;
  padding-top: clamp(120px, 14vh, 178px) !important;
  padding-bottom: clamp(86px, 12vh, 140px) !important;
  text-align: left !important;
}

.hero:not(.hero-home) .hero-copy > * {
  max-width: 760px !important;
}

.hero:not(.hero-home) .eyebrow,
.section .eyebrow,
.split .eyebrow {
  color: var(--izzo-blue) !important;
  font-family: var(--lovable-body) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.24em !important;
}

.hero:not(.hero-home) h1 {
  color: #f7fbff !important;
  font-family: var(--lovable-heading) !important;
  font-size: clamp(48px, 5.3vw, 78px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  text-shadow: 0 14px 54px rgba(0, 0, 0, 0.42) !important;
}

.hero:not(.hero-home) .hero-copy p:not(.eyebrow) {
  max-width: 680px !important;
  color: rgba(214, 226, 244, 0.86) !important;
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.5 !important;
}

.hero:not(.hero-home) .hero-actions {
  margin-top: 34px !important;
  justify-content: flex-start !important;
}

.hero:not(.hero-home) .hero-status {
  display: none !important;
}

.section,
.split,
.dual,
.why,
.process,
.brand-tech,
.coverage-map,
.final-cta,
.lead-collection-page,
.article {
  width: min(100% - 96px, var(--izzo-section-max)) !important;
  max-width: var(--izzo-section-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: clamp(64px, 8vw, 108px) !important;
  padding-bottom: clamp(64px, 8vw, 108px) !important;
}

.section-head {
  max-width: 820px !important;
  margin-bottom: clamp(30px, 4vw, 50px) !important;
}

.section-head h2,
.split h2,
.dual h2,
.why h2,
.process h2,
.coverage-map h2,
.article h1,
.article h2 {
  color: #f7fbff !important;
  font-family: var(--lovable-heading) !important;
  font-size: clamp(34px, 3.6vw, 54px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
}

.section p,
.split p,
.dual p,
.why p,
.process p,
.coverage-map p,
.article p,
.service-card p,
.project-card p,
.plan-card p,
.blog-card p,
.location-card p {
  color: rgba(216, 228, 244, 0.78) !important;
  line-height: 1.6 !important;
}

.cards,
.services-grid,
.project-grid,
.blog-grid,
.plan-grid,
.solution-grid,
.location-list {
  gap: clamp(18px, 2vw, 28px) !important;
}

.service-card,
.project-card,
.blog-card,
.plan-card,
.location-card,
.why-card,
.process-step,
.contact-card,
.form-card,
.admin-card {
  border: 1px solid rgba(80, 161, 241, 0.18) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(13, 25, 42, 0.9), rgba(5, 12, 22, 0.96)) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24) !important;
  overflow: hidden !important;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease !important;
}

.service-card:hover,
.project-card:hover,
.blog-card:hover,
.plan-card:hover,
.location-card:hover,
.why-card:hover,
.process-step:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(47, 214, 255, 0.48) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 42px rgba(0, 170, 255, 0.13) !important;
}

.service-card-media,
.project-card figure,
.plan-card-media,
.blog-card > img,
.location-card figure,
.split figure,
.media-card {
  overflow: hidden !important;
  border-radius: 18px 18px 0 0 !important;
}

.service-card img,
.project-card img,
.plan-card img,
.blog-card img,
.location-card img,
.split img {
  filter: saturate(1.06) contrast(1.05) brightness(0.82) !important;
  transition: transform 420ms ease, filter 420ms ease !important;
}

.service-card:hover img,
.project-card:hover img,
.plan-card:hover img,
.blog-card:hover img,
.location-card:hover img {
  transform: scale(1.06) !important;
  filter: saturate(1.16) contrast(1.08) brightness(0.92) !important;
}

.service-card h3,
.project-card h3,
.blog-card h3,
.plan-card h3,
.location-card h3 {
  color: #f7fbff !important;
  font-size: clamp(20px, 1.5vw, 25px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.035em !important;
}

.service-card b,
.project-card b,
.blog-card b,
.plan-card b,
.location-card b,
.section-head a:not(.btn) {
  color: var(--izzo-blue-2) !important;
  font-family: var(--lovable-body) !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.btn,
button,
.form-card button,
.luxury-form button {
  border-radius: 999px !important;
  min-height: 48px !important;
  padding: 0 24px !important;
  font-family: var(--lovable-body) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.btn.primary,
button[type="submit"],
.luxury-form button[type="submit"] {
  color: #06111d !important;
  background: linear-gradient(135deg, #087dff, #2fd6ff) !important;
  box-shadow: 0 18px 48px rgba(0, 153, 255, 0.24) !important;
}

.btn.ghost,
.hero-actions .btn.ghost,
.cta-actions .btn.ghost {
  color: #f5fbff !important;
  border: 1px solid rgba(208, 230, 255, 0.28) !important;
  background: rgba(5, 12, 22, 0.46) !important;
}

input,
select,
textarea {
  border-color: rgba(80, 161, 241, 0.22) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(10, 24, 40, 0.92), rgba(6, 14, 26, 0.96)) !important;
  color: #f7fbff !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 214, 255, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.12), 0 0 24px rgba(0, 170, 255, 0.18) !important;
}

.final-cta,
.cta-band {
  border: 1px solid rgba(80, 161, 241, 0.2) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 170, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(11, 24, 40, 0.96), rgba(5, 11, 20, 0.98)) !important;
}

.floating-phone {
  background: linear-gradient(135deg, #087dff, #2fd6ff) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 52px rgba(0, 153, 255, 0.28) !important;
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 22px !important;
  }

  .nav-links {
    gap: 16px !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    z-index: 10001 !important;
  }

  .nav-links,
  .header-phone {
    display: none !important;
  }

  .mobile-menu {
    z-index: 10000 !important;
    border: 1px solid rgba(80, 161, 241, 0.2) !important;
    background: rgba(5, 11, 20, 0.98) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
  }

  .hero:not(.hero-home) {
    min-height: auto !important;
    padding-top: 70px !important;
  }

  .hero:not(.hero-home) .hero-copy {
    width: calc(100% - 36px) !important;
    padding-top: 90px !important;
    padding-bottom: 76px !important;
  }

  .hero:not(.hero-home) h1 {
    font-size: clamp(38px, 11vw, 54px) !important;
    letter-spacing: -0.045em !important;
  }

  .hero:not(.hero-home) .hero-actions,
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero:not(.hero-home) .hero-actions .btn,
  .hero-actions .btn {
    width: 100% !important;
  }

  .section,
  .split,
  .dual,
  .why,
  .process,
  .brand-tech,
  .coverage-map,
  .final-cta,
  .lead-collection-page,
  .article {
    width: calc(100% - 36px) !important;
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .cards,
  .services-grid,
  .project-grid,
  .blog-grid,
  .plan-grid,
  .solution-grid,
  .location-list {
    grid-template-columns: 1fr !important;
  }
}

/* Final mobile hardening pass. */
@media (max-width: 900px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    padding-bottom: 82px !important;
  }

  .site-header {
    height: 70px !important;
    padding-inline: 18px !important;
  }

  .brand-logo {
    width: 118px !important;
    height: 44px !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid rgba(129, 178, 231, 0.24) !important;
    border-radius: 8px !important;
    background: rgba(10, 20, 34, 0.82) !important;
    z-index: 10002 !important;
  }

  .menu-toggle span {
    display: block !important;
    flex: 0 0 2px !important;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border-radius: 999px !important;
    background: #dff4ff !important;
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.4) !important;
  }

  .hero-glow {
    display: none !important;
  }

  .hero,
  .hero.hero-home,
  .hero.hero-home.home-reference-hero,
  .hero:not(.hero-home) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: auto !important;
    padding-top: 70px !important;
  }

  .hero .hero-copy,
  .hero.hero-home .hero-copy,
  .hero.hero-home.home-reference-hero .hero-copy,
  .hero:not(.hero-home) .hero-copy {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    margin: 0 auto !important;
    padding-top: clamp(86px, 18vh, 122px) !important;
    padding-bottom: 54px !important;
    box-sizing: border-box !important;
  }

  .hero h1,
  .hero.hero-home h1,
  .hero.hero-home.home-reference-hero h1,
  .hero:not(.hero-home) h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(34px, 10.4vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
    overflow-wrap: normal !important;
  }

  .hero.hero-home .hero-accent,
  .hero.hero-home.home-reference-hero .hero-accent {
    display: block !important;
    white-space: normal !important;
    max-width: 100% !important;
  }

  .hero .eyebrow,
  .hero.hero-home .eyebrow {
    max-width: 100% !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    letter-spacing: 0.28em !important;
  }

  .hero .hero-copy p:not(.eyebrow),
  .hero.hero-home .hero-copy p:not(.eyebrow),
  .hero:not(.hero-home) .hero-copy p:not(.eyebrow) {
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero.hero-home .hero-actions,
  .hero-actions {
    width: 100% !important;
    margin-top: 28px !important;
    gap: 14px !important;
  }

  .hero.hero-home .hero-actions .btn,
  .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hero.hero-home .hero-status,
  .hero.hero-home.home-reference-hero .hero-status {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    margin: -16px auto 54px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .hero.hero-home .hero-status span {
    padding: 14px 16px !important;
    border: 1px solid rgba(64, 167, 255, 0.18) !important;
    border-radius: 16px !important;
    background: rgba(5, 16, 29, 0.62) !important;
  }

  .hero.hero-home .hero-status b {
    font-size: 28px !important;
  }

  .split,
  .dual,
  .story,
  .values,
  .detail-grid,
  .contact-layout,
  .lead-layout,
  .admin-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-card,
  .form-card,
  .luxury-form,
  form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .luxury-form,
  .contact-form {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100% !important;
  }

  .floating-phone {
    left: 14px !important;
    right: 14px !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    width: auto !important;
    min-height: 52px !important;
  }

  .back-to-top {
    bottom: 78px !important;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .hero.hero-home h1,
  .hero.hero-home.home-reference-hero h1,
  .hero:not(.hero-home) h1 {
    font-size: clamp(31px, 9.8vw, 36px) !important;
  }

  .hero .eyebrow,
  .hero.hero-home .eyebrow {
    letter-spacing: 0.22em !important;
  }
}

/* Mobile process timeline readability fix. */
@media (max-width: 760px) {
  .timeline-section {
    padding: 26px 18px !important;
  }

  .timeline-section > .eyebrow,
  .timeline-section > h2 {
    text-align: left !important;
  }

  .timeline-section > h2 {
    font-size: clamp(28px, 8.4vw, 36px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .timeline-section > div {
    gap: 14px !important;
  }

  .timeline-section article {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 16px !important;
    border: 1px solid rgba(80, 161, 241, 0.14) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(10, 24, 40, 0.78), rgba(5, 12, 22, 0.72)) !important;
    text-align: left !important;
  }

  .timeline-section article span {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
  }

  .timeline-section article h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: 19px !important;
    line-height: 1.15 !important;
  }

  .timeline-section article p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}
