
:root {
  --clr-deep: #0d1b2a;
  --clr-mid: #1b3a5c;
  --clr-accent: #4a90c4;
  --clr-accent-light: #7ab8e0;
  --clr-accent-soft: #2d6a9e;
  --clr-accent-muted: #1e4d72;
  --clr-gold: #c8a96e;
  --clr-gold-light: #e0c48a;
  --clr-text: #e8edf2;
  --clr-text-secondary: #a8bfd4;
  --clr-text-dark: #1a2b3c;
  --clr-text-dark-secondary: #3d5a73;
  --clr-bg: #f0f4f8;
  --clr-bg-section: #e8eef5;
  --clr-white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-light: rgba(255, 255, 255, 0.15);
  --glass-bg-strong: rgba(255, 255, 255, 0.22);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-light: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 4px 24px rgba(13, 27, 42, 0.25), 0 1px 4px rgba(13, 27, 42, 0.12);
  --glass-shadow-hover: 0 8px 40px rgba(13, 27, 42, 0.35), 0 2px 8px rgba(13, 27, 42, 0.18);

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.05);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.12), 0 2px 4px rgba(13,27,42,0.08);
  --shadow-lg: 0 8px 32px rgba(13,27,42,0.16), 0 4px 12px rgba(13,27,42,0.10);
  --shadow-xl: 0 16px 48px rgba(13,27,42,0.20), 0 6px 16px rgba(13,27,42,0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --nav-height: 72px;
  --font-heading: 'Vollkorn', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --section-py: clamp(64px, 8vw, 120px);
  --section-px: clamp(20px, 5vw, 80px);
  --container-max: 1280px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body.pageBody {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
ul { list-style: none; }


.sectionEyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}
.sectionEyebrow--light { color: var(--clr-accent-light); }

.sectionTitle {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text-dark);
  margin-bottom: 20px;
}
.sectionTitle--light { color: var(--clr-text); }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-soft) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(74,144,196,0.35), 0 1px 4px rgba(74,144,196,0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,144,196,0.45), 0 2px 8px rgba(74,144,196,0.25);
  color: var(--clr-white);
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.1);
  color: var(--clr-white);
}

.linkArrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.linkArrow:hover { gap: 12px; color: var(--clr-accent-soft); }


.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.siteHeader_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.siteHeader_logoImg { width: 32px; height: 32px; }
.siteHeader_logoText {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}
.siteHeader_logoAccent { color: var(--clr-accent-light); }

.siteNav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.siteNav_link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}
.siteNav_link:hover, .siteNav_link--active {
  color: var(--clr-text);
  background: rgba(255,255,255,0.08);
}
.siteNav_link--active { color: var(--clr-accent-light); }

.siteHeader_menuBtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.siteHeader_menuBtn:hover { background: rgba(255,255,255,0.08); }
.menuBtn_line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.siteHeader_progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-gold) 100%);
  transition: width 0.1s linear;
}


.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: linear-gradient(145deg, var(--clr-deep) 0%, var(--clr-mid) 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  pointer-events: none;
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobileMenu.mobileMenu--open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  pointer-events: all;
}

.mobileMenu_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: calc(var(--nav-height) + 40px) var(--section-px) 60px;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}
.mobileMenu--open .mobileMenu_inner { opacity: 1; }

.mobileMenu_nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.mobileMenu_link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobileMenu_link:hover { color: var(--clr-accent-light); padding-left: 8px; }

.mobileMenu_contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobileMenu_contactLink {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.mobileMenu_contactLink:hover { color: var(--clr-accent-light); }


.mainHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mainHero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mainHero_bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mainHero_bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 27, 42, 0.82) 0%,
    rgba(27, 58, 92, 0.70) 50%,
    rgba(13, 27, 42, 0.60) 100%);
}

.mainHero_content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) var(--section-px) 80px;
  display: flex;
  justify-content: center;
}

.mainHero_glassCard {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-border-light);
}

.mainHero_eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent-light);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(74,144,196,0.15);
  border-radius: var(--radius-full);
  border: 1px solid rgba(74,144,196,0.25);
}

.mainHero_title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.mainHero_desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(232, 237, 242, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mainHero_ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.mainHero_scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mainHero_scrollDot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--clr-accent-light);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}


.contactStrip {
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}
.contactStrip_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contactCard {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border-right: 1px solid rgba(13,27,42,0.08);
  transition: background 0.2s ease;
}
.contactCard:last-child { border-right: none; }
.contactCard:hover { background: rgba(74,144,196,0.04); }

.contactCard_icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74,144,196,0.3);
}

.contactCard_label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 4px;
}
.contactCard_value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  transition: color 0.2s ease;
}
.contactCard_value:hover { color: var(--clr-accent); }


.introSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.introSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.introSection_lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: var(--clr-text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}
.introSection_text {
  color: var(--clr-text-dark-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.introSection_glassBox {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.introSection_img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.introSection_pullQuote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 100%);
  padding: 40px 24px 24px;
}
.introSection_pullQuote p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.5;
}


.servicesSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg-section);
}
.servicesSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.servicesSection_header {
  text-align: center;
  margin-bottom: 56px;
}
.servicesSection_subtitle {
  color: var(--clr-text-dark-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.servicesGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.serviceCard {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.serviceCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.serviceCard--feature {
  background: linear-gradient(160deg, var(--clr-deep) 0%, var(--clr-mid) 100%);
  color: var(--clr-text);
  grid-row: span 1;
}

.serviceCard_imgWrap { position: relative; overflow: hidden; }
.serviceCard_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.serviceCard:hover .serviceCard_img { transform: scale(1.04); }

.serviceCard_body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }

.serviceCard_icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(74,144,196,0.3);
}
.serviceCard_icon--large { width: 56px; height: 56px; font-size: 1.3rem; }

.serviceCard_title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text-dark);
}
.serviceCard--feature .serviceCard_title { color: var(--clr-text); }

.serviceCard_desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 12px;
  flex: 1;
}
.serviceCard--feature .serviceCard_desc { color: rgba(232,237,242,0.8); }

.serviceCard_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-top: auto;
  transition: gap 0.2s ease;
}
.serviceCard_link:hover { gap: 10px; }


.processSection {
  position: relative;
  padding: var(--section-py) var(--section-px);
  overflow: hidden;
}
.processSection_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-mid) 60%, var(--clr-accent-muted) 100%);
  z-index: 0;
}
.processSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.processSection_header {
  text-align: center;
  margin-bottom: 56px;
}

.processSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.processStep { position: relative; }
.processStep_number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: -12px;
  position: relative;
  z-index: 0;
}
.processStep_glassCard {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--glass-shadow);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.processStep_glassCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

.processStep_title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 10px;
}
.processStep_desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(232,237,242,0.75);
}


.featureSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.featureSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.featureSection_imgStack {
  position: relative;
}
.featureSection_imgMain {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.featureSection_imgAccent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 48%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--clr-white);
}
.featureSection_imgSmall {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.featureSection_text {
  color: var(--clr-text-dark-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.featureSection_highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.featureHighlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.featureHighlight_icon {
  color: var(--clr-accent);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 20px;
}
.featureHighlight_title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 4px;
}
.featureHighlight_text {
  font-size: 0.875rem;
  color: var(--clr-text-dark-secondary);
  line-height: 1.6;
}


.whySection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg-section);
}
.whySection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.whySection_header {
  text-align: center;
  margin-bottom: 56px;
}

.whyGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.whyCard {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-soft)) 1;
  border-image-slice: 1;
}
.whyCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.whyCard_iconWrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(74,144,196,0.12) 0%, rgba(45,106,158,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.whyCard_icon {
  font-size: 1.2rem;
  color: var(--clr-accent);
}
.whyCard_title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}
.whyCard_text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-dark-secondary);
}


.ctaSection {
  position: relative;
  padding: var(--section-py) var(--section-px);
  overflow: hidden;
}
.ctaSection_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ctaSection_bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctaSection_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(27,58,92,0.78) 100%);
}
.ctaSection_content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.ctaSection_glassCard {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
  text-align: center;
  max-width: 640px;
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-border-light);
}
.ctaSection_title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.ctaSection_text {
  color: rgba(232,237,242,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}
.ctaSection_btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


.pageHero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.pageHero--compact { min-height: 30vh; }
.pageHero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pageHero_content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px var(--section-px);
}
.pageHero_glassCard {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 640px;
  box-shadow: var(--glass-shadow);
  display: inline-block;
}
.pageHero_title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pageHero_desc {
  color: rgba(232,237,242,0.85);
  line-height: 1.65;
}


.innerMain { background: var(--clr-bg); }


.expSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.expSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.expSection_text {
  line-height: 1.75;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 20px;
}
.expSection_glassFrame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.expSection_img { width: 100%; height: 400px; object-fit: cover; }

.valuesSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg-section);
}
.valuesSection_inner { max-width: var(--container-max); margin: 0 auto; }
.valuesSection_header { text-align: center; margin-bottom: 56px; }

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.valueCard {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.valueCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.valueCard_number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-accent-light);
  opacity: 0.5;
  margin-bottom: 12px;
  line-height: 1;
}
.valueCard_title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}
.valueCard_text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-dark-secondary);
}

.techSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.techSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.techSection_img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.techSection_text {
  line-height: 1.75;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 20px;
}
.techSection_checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.techCheck {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-dark);
}
.techCheck i {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.areaSection {
  padding: var(--section-py) var(--section-px);
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-mid) 100%);
}
.areaSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.areaSection_glassCard {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  max-width: 680px;
  text-align: center;
  box-shadow: var(--glass-shadow);
}
.areaSection_glassCard .sectionTitle { color: var(--clr-white); }
.areaSection_text {
  color: rgba(232,237,242,0.85);
  line-height: 1.75;
  margin-bottom: 32px;
}


.offerIntro {
  padding: 48px var(--section-px);
  background: var(--clr-white);
  border-bottom: 1px solid rgba(13,27,42,0.06);
}
.offerIntro_inner { max-width: 800px; margin: 0 auto; text-align: center; }
.offerIntro_lead {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--clr-text-dark);
}

.productSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.productSection--alt { background: var(--clr-bg-section); }
.productSection_inner { max-width: var(--container-max); margin: 0 auto; }
.productSection_header { text-align: center; margin-bottom: 48px; }
.productSection_intro {
  color: var(--clr-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.productTypes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.productType_glassCard {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.productType_glassCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.productType_iconWrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(74,144,196,0.12), rgba(45,106,158,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--clr-accent);
}
.productType_title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}
.productType_text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-dark-secondary);
}

.productFeatures {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  margin-top: 24px;
}
.productSection--alt .productFeatures { grid-template-columns: 1fr 1.2fr; }

.productFeature_textCol {}
.productFeature_title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 16px;
}
.productFeature_text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 16px;
}
.productFeature_img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.offerProcess {
  padding: var(--section-py) var(--section-px);
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-mid) 100%);
}
.offerProcess_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.offerProcess_glassCard {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  max-width: 760px;
  width: 100%;
  box-shadow: var(--glass-shadow);
}
.offerProcess_glassCard .sectionTitle { color: var(--clr-white); }

.offerProcess_steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}
.offerProcess_step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.offerProcess_stepNum {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-soft));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74,144,196,0.35);
}
.offerProcess_stepBody strong {
  display: block;
  color: var(--clr-text);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.offerProcess_stepBody p {
  font-size: 0.875rem;
  color: rgba(232,237,242,0.75);
  line-height: 1.6;
}


.hoursSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.hoursSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.hoursTable {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}
.hoursRow {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(13,27,42,0.06);
  transition: background 0.2s ease;
}
.hoursRow:last-child { border-bottom: none; }
.hoursRow--open:hover { background: rgba(74,144,196,0.04); }

.hoursRow_day { font-weight: 500; color: var(--clr-text-dark); font-size: 0.95rem; }
.hoursRow_time { font-weight: 600; color: var(--clr-text-dark); font-size: 0.95rem; }
.hoursRow--closed .hoursRow_time { color: var(--clr-text-dark-secondary); }

.hoursRow_badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hoursRow_badge--open {
  background: rgba(74,144,196,0.12);
  color: var(--clr-accent);
}
.hoursRow_badge--closed {
  background: rgba(13,27,42,0.06);
  color: var(--clr-text-dark-secondary);
}

.hoursInfo_glassCard {
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--shadow-xl);
}

.hoursInfo_item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hoursInfo_icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-light);
  flex-shrink: 0;
}
.hoursInfo_label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent-light);
  margin-bottom: 4px;
}
.hoursInfo_text {
  font-size: 0.875rem;
  color: rgba(232,237,242,0.75);
  line-height: 1.6;
  margin-bottom: 8px;
}
.hoursInfo_link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-white);
  transition: color 0.2s ease;
}
.hoursInfo_link:hover { color: var(--clr-accent-light); }

.hoursNote {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(74,144,196,0.08);
  border: 1px solid rgba(74,144,196,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 24px;
}
.hoursNote_icon { color: var(--clr-accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.hoursNote_text { font-size: 0.875rem; line-height: 1.6; color: var(--clr-text-dark-secondary); }

.locationSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg-section);
}
.locationSection_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.locationSection_text {
  line-height: 1.75;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 24px;
}
.locationSection_address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.locationSection_address i {
  color: var(--clr-accent);
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.locationSection_address strong { display: block; font-weight: 600; color: var(--clr-text-dark); margin-bottom: 4px; }
.locationSection_address p { font-size: 0.9rem; color: var(--clr-text-dark-secondary); }
.locationSection_mapWrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.locationSection_map { display: block; }


.contactMain {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.contactMain_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contactForm_glassCard {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contactForm_title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}
.contactForm_intro {
  font-size: 0.9rem;
  color: var(--clr-text-dark-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contactForm_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contactForm_field { display: flex; flex-direction: column; gap: 6px; }
.contactForm_field--message { grid-column: span 2; }

.contactForm_label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contactForm_input, .contactForm_textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(13,27,42,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-text-dark);
  background: var(--clr-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
  min-height: 44px;
}
.contactForm_input:focus, .contactForm_textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(74,144,196,0.12);
}

.contactForm_bottom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contactForm_privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}
.contactForm_checkbox { margin-top: 3px; flex-shrink: 0; accent-color: var(--clr-accent); width: 16px; height: 16px; }
.contactForm_privacyText {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--clr-text-dark-secondary);
}
.contactForm_privacyLink { color: var(--clr-accent); text-decoration: underline; }

.contactInfo_card {
  background: linear-gradient(145deg, var(--clr-deep) 0%, var(--clr-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.contactInfo_title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contactInfo_item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contactInfo_item:last-child { margin-bottom: 0; }
.contactInfo_icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-light);
  flex-shrink: 0;
}
.contactInfo_label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent-light);
  margin-bottom: 4px;
}
.contactInfo_value {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.5;
  font-weight: 500;
  display: block;
  transition: color 0.2s ease;
}
a.contactInfo_value:hover { color: var(--clr-accent-light); }


.inquiryTimeline {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg-section);
}
.inquiryTimeline_inner { max-width: var(--container-max); margin: 0 auto; }
.inquiryTimeline_header { text-align: center; margin-bottom: 56px; }
.inquiryTimeline_intro {
  color: var(--clr-text-dark-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }

.timeline_item { display: flex; gap: 28px; }

.timeline_marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.timeline_markerDot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(74,144,196,0.35);
  flex-shrink: 0;
  z-index: 1;
}
.timeline_markerLine {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--clr-accent) 0%, rgba(74,144,196,0.2) 100%);
  margin: 8px 0;
  min-height: 40px;
}

.timeline_content { padding-bottom: 36px; flex: 1; }
.timeline_glassCard {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline_glassCard:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }

.timeline_step {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  display: block;
  margin-bottom: 8px;
}
.timeline_title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}
.timeline_text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--clr-text-dark-secondary);
}


.contactMapSection {
  padding: var(--section-py) var(--section-px);
  background: var(--clr-bg);
}
.contactMapSection_inner { max-width: var(--container-max); margin: 0 auto; }
.contactMapSection_header { text-align: center; margin-bottom: 40px; }
.contactMapSection_mapWrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.contactMapSection_map { display: block; }


.thanksMain {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) var(--section-px) 80px;
}
.thanksMain_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-deep) 0%, var(--clr-mid) 60%, var(--clr-accent-muted) 100%);
  z-index: 0;
}
.thanksMain_content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
}

.thanksCard {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-border-light);
  text-align: center;
}
.thanksCard_header { margin-bottom: 28px; }
.thanksCard_title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.thanksCard_subtitle {
  font-size: 1rem;
  color: rgba(232,237,242,0.8);
  line-height: 1.65;
}
.thanksCard_homeBtn { margin-bottom: 48px; }

.thanksTimeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}
.thanksTimeline_item { display: flex; gap: 20px; }
.thanksTimeline_marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.thanksTimeline_dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.thanksTimeline_dot--done {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-soft));
  color: white;
  box-shadow: 0 4px 12px rgba(74,144,196,0.4);
}
.thanksTimeline_dot--current {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-deep);
  box-shadow: 0 4px 12px rgba(200,169,110,0.4);
}
.thanksTimeline_dot--upcoming {
  background: rgba(255,255,255,0.12);
  color: rgba(232,237,242,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.thanksTimeline_line {
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,0.1);
  margin: 6px 0;
  min-height: 30px;
}
.thanksTimeline_body {
  padding-bottom: 24px;
  padding-top: 8px;
  flex: 1;
}
.thanksTimeline_title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.thanksTimeline_item--upcoming .thanksTimeline_title { color: rgba(232,237,242,0.5); }
.thanksTimeline_text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(232,237,242,0.65);
}
.thanksTimeline_item--upcoming .thanksTimeline_text { color: rgba(232,237,242,0.35); }


.legalMain { background: var(--clr-bg); padding: var(--section-py) var(--section-px); }
.legalMain_inner { max-width: 860px; margin: 0 auto; }

.legalDoc {}
.legalDoc_intro {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--clr-text-dark-secondary);
  padding: 24px 28px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-accent);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.legalFaq { display: flex; flex-direction: column; gap: 0; }
.legalFaq_item {
  border-bottom: 1px solid rgba(13,27,42,0.08);
  padding: 32px 0;
}
.legalFaq_item:first-child { padding-top: 0; }
.legalFaq_item:last-child { border-bottom: none; }

.legalFaq_q {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 16px;
  line-height: 1.35;
}

.legalFaq_a {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--clr-text-dark-secondary);
}
.legalFaq_a p { margin-bottom: 12px; }
.legalFaq_a p:last-child { margin-bottom: 0; }
.legalFaq_a ul {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legalFaq_a li { color: var(--clr-text-dark-secondary); }
.legalFaq_a a { color: var(--clr-accent); text-decoration: underline; }
.legalFaq_a strong { color: var(--clr-text-dark); font-weight: 600; }

.cookieCategory {
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 16px 0;
}
.cookieCategory_name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}
.cookieCategory_desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--clr-text-dark-secondary);
  margin-bottom: 12px;
}

.cookieTable { background: var(--clr-white); border-radius: var(--radius-sm); overflow: hidden; margin-top: 12px; }
.cookieTable_row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 12px;
  padding: 10px 16px;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(13,27,42,0.06);
}
.cookieTable_row:last-child { border-bottom: none; }
.cookieTable_row--header { background: var(--clr-bg); font-weight: 600; color: var(--clr-text-dark-secondary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }


.pageFooter {
  background: var(--clr-deep);
  color: var(--clr-text);
  margin-top: auto;
}
.pageFooter_inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--section-px) 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.pageFooter_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.pageFooter_logoImg { width: 28px; height: 28px; }
.pageFooter_logoText {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
}
.pageFooter_logoAccent { color: var(--clr-accent-light); }
.pageFooter_tagline {
  font-size: 0.85rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

.pageFooter_navTitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent-light);
  margin-bottom: 16px;
}

.pageFooter_navLink {
  display: block;
  font-size: 0.875rem;
  color: var(--clr-text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.pageFooter_navLink:hover { color: var(--clr-text); }

.pageFooter_contactItem {
  font-size: 0.875rem;
  color: var(--clr-text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pageFooter_contactItem i { color: var(--clr-accent-light); margin-top: 2px; flex-shrink: 0; }
.pageFooter_contactItem a { color: var(--clr-text-secondary); transition: color 0.2s ease; }
.pageFooter_contactItem a:hover { color: var(--clr-text); }

.pageFooter_bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.pageFooter_copy, .pageFooter_copyRight {
  font-size: 0.8rem;
  color: rgba(168,191,212,0.55);
}


.floatWidget {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floatWidget_toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-soft) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(74,144,196,0.45), 0 2px 8px rgba(74,144,196,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.floatWidget_toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(74,144,196,0.55), 0 4px 12px rgba(74,144,196,0.3);
}

.floatWidget_icon { position: absolute; transition: opacity 0.25s ease, transform 0.25s ease; }
.floatWidget_icon--close { opacity: 0; transform: rotate(-90deg); }
.floatWidget--open .floatWidget_icon--open { opacity: 0; transform: rotate(90deg); }
.floatWidget--open .floatWidget_icon--close { opacity: 1; transform: rotate(0); }

.floatWidget_panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floatWidget--open .floatWidget_panel {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floatWidget_option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--clr-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: var(--clr-text);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s ease, transform 0.2s ease;
}
.floatWidget_option:hover { background: var(--clr-mid); transform: translateX(-4px); color: var(--clr-text); }
.floatWidget_option i { color: var(--clr-accent-light); font-size: 0.9rem; }


.sidebarCta {
  position: fixed;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
}
.sidebarCta_btn {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 12px;
  background: linear-gradient(180deg, var(--clr-accent) 0%, var(--clr-accent-soft) 100%);
  color: white;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  box-shadow: -4px 0 16px rgba(74,144,196,0.35);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: padding 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  max-width: 44px;
  max-height: 140px;
}
.sidebarCta_btn:hover {
  padding: 14px 16px;
  box-shadow: -8px 0 24px rgba(74,144,196,0.45);
  color: white;
}
.sidebarCta_btn i {
  font-size: 1rem;
  margin-bottom: 8px;
  writing-mode: horizontal-tb;
}
.sidebarCta_text { display: block; }


.cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 32px rgba(13,27,42,0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookieBanner--visible { transform: translateY(0); }
.cookieBanner--hidden { transform: translateY(100%); }

.cookieBanner_left {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.cookieBanner_right {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookieBanner_title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}
.cookieBanner_text {
  font-size: 0.825rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}
.cookieBanner_text a { color: var(--clr-accent-light); text-decoration: underline; }

.cookieBanner_toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookieBanner_toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookieBanner_toggleLabel {
  font-size: 0.825rem;
  color: var(--clr-text-secondary);
  flex: 1;
}
.cookieBanner_toggleLabel strong { color: var(--clr-text); display: block; font-size: 0.875rem; }

.cookieToggleSwitch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookieToggleSwitch input { opacity: 0; width: 0; height: 0; }
.cookieToggleSlider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookieToggleSlider::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.cookieToggleSwitch input:checked + .cookieToggleSlider { background: var(--clr-accent); }
.cookieToggleSwitch input:checked + .cookieToggleSlider::after { transform: translateX(20px); }
.cookieToggleSwitch input:disabled + .cookieToggleSlider { opacity: 0.5; cursor: not-allowed; }

.cookieBanner_btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookieBanner_btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.cookieBanner_btn--accept {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-soft));
  color: white;
  box-shadow: 0 4px 12px rgba(74,144,196,0.35);
}
.cookieBanner_btn--accept:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(74,144,196,0.45); }
.cookieBanner_btn--necessary {
  background: rgba(255,255,255,0.08);
  color: var(--clr-text-secondary);
  border: 1px solid rgba(255,255,255,0.12);
}
.cookieBanner_btn--necessary:hover { background: rgba(255,255,255,0.14); color: var(--clr-text); }
.cookieBanner_btn--save {
  background: rgba(74,144,196,0.2);
  color: var(--clr-accent-light);
  border: 1px solid rgba(74,144,196,0.3);
}
.cookieBanner_btn--save:hover { background: rgba(74,144,196,0.3); }


@media (max-width: 1100px) {
  .whyGrid { grid-template-columns: repeat(2, 1fr); }
  .processSteps { grid-template-columns: repeat(2, 1fr); }
  .valuesGrid { grid-template-columns: repeat(2, 1fr); }
  .servicesGrid { grid-template-columns: 1fr 1fr; }
  .servicesGrid .serviceCard--feature { grid-column: span 2; }
  .productTypes { grid-template-columns: repeat(2, 1fr); }
  .productTypes .productType:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 900px) {
  .siteNav { display: none; }
  .siteHeader_menuBtn { display: flex; }
  .introSection_inner { grid-template-columns: 1fr; }
  .introSection_col--wide { order: 2; }
  .introSection_col--narrow { order: 1; }
  .featureSection_inner { grid-template-columns: 1fr; }
  .featureSection_imgStack { margin-bottom: 60px; }
  .featureSection_imgAccent { right: 0; }
  .expSection_inner { grid-template-columns: 1fr; }
  .techSection_inner { grid-template-columns: 1fr; }
  .hoursSection_inner { grid-template-columns: 1fr; }
  .locationSection_inner { grid-template-columns: 1fr; }
  .contactMain_inner { grid-template-columns: 1fr; }
  .pageFooter_inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .productFeatures { grid-template-columns: 1fr; }
  .productSection--alt .productFeatures { grid-template-columns: 1fr; }
  .areaSection_glassCard { padding: 40px 32px; }
  .offerProcess_glassCard { padding: 40px 32px; }
}

@media (max-width: 700px) {
  :root { --nav-height: 64px; }

  .contactStrip_inner { grid-template-columns: 1fr; }
  .contactCard { border-right: none; border-bottom: 1px solid rgba(13,27,42,0.08); }
  .contactCard:last-child { border-bottom: none; }

  .servicesGrid { grid-template-columns: 1fr; }
  .servicesGrid .serviceCard--feature { grid-column: span 1; }

  .processSteps { grid-template-columns: 1fr; }
  .valuesGrid { grid-template-columns: 1fr; }
  .whyGrid { grid-template-columns: 1fr; }
  .productTypes { grid-template-columns: 1fr; }
  .productTypes .productType:nth-child(3) { grid-column: span 1; }

  .contactForm_row { grid-template-columns: 1fr; }
  .contactForm_field--message { grid-column: span 1; }
  .contactForm_bottom { flex-direction: column; align-items: stretch; }

  .pageFooter_inner { grid-template-columns: 1fr; }
  .pageFooter_bottom { flex-direction: column; text-align: center; }

  .cookieBanner { flex-direction: column; }
  .cookieBanner_left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px; }
  .cookieBanner_right { padding: 20px; }

  .mainHero_ctas { flex-direction: column; align-items: center; }
  .ctaSection_btns { flex-direction: column; align-items: center; }

  .sidebarCta { display: none; }
  .floatWidget { bottom: 20px; right: 16px; }

  .pageHero_glassCard { padding: 24px 20px; }

  .hoursRow { grid-template-columns: 1fr 1fr auto; }
}

@media (max-width: 480px) {
  .mainHero_glassCard { padding: 32px 20px; }
  .thanksCard { padding: 32px 20px; }
  .contactInfo_card { padding: 24px 20px; }
  .contactForm_glassCard { padding: 24px 20px; }
}