/* ============================================
   SHAILEE CONSTRUCTION — DESIGN SYSTEM
   css/main.css
   ============================================ */

/* 1. CUSTOM PROPERTIES */
:root {
  --navy:        #0A2540;
  --navy-dark:   #061829;
  --orange:      #FF7A00;
  --orange-dark: #E56D00;
  --steel:       #5F6B7A;
  --white:       #FFFFFF;
  --light:       #F7F8FA;
  --light-2:     #EEF0F3;
  --text:        #1A2332;
  --text-muted:  #5F6B7A;
  --border:      #DDE2E8;

  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(10,37,64,.08);
  --shadow:    0 4px 16px rgba(10,37,64,.10);
  --shadow-lg: 0 8px 32px rgba(10,37,64,.14);
  --shadow-xl: 0 20px 60px rgba(10,37,64,.18);

  --transition: .25s ease;
  --container:  1200px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; width: 100%; }
svg { display: inline-block; vertical-align: middle; max-width: 100%; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  word-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; }
p  { color: var(--text-muted); line-height: 1.75; word-wrap: break-word; }

.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; max-width: 600px; }

/* 4. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
}
.container-wide { max-width: 1440px; margin-inline: auto; padding-inline: 1.5rem; position: relative; }

.section    { padding: 6rem 0; overflow: hidden; }
.section-sm { padding: 4rem 0; overflow: hidden; }
.section-lg { padding: 8rem 0; overflow: hidden; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; min-width: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; min-width: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; min-width: 0; }
.flex         { display: flex; min-width: 0; }
.flex-center  { display: flex; align-items: center; justify-content: center; min-width: 0; }
.flex-between { display: flex; align-items: center; justify-content: space-between; min-width: 0; }
.flex-wrap    { flex-wrap: wrap; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }
.gap-6 { gap: 4rem; }

.items-center { align-items: center; }

@media (max-width: 900px) {
  .gap-6, .gap-5 { gap: 2rem; }
}

@media (max-width: 640px) {
  .gap-6, .gap-5, .gap-4 { gap: 1.5rem; }
}

/* 5. SECTION HEADERS */
.section-header { margin-bottom: 3.5rem; max-width: 100%; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-inline: auto; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  border-radius: 2px; margin: 1rem 0 1.5rem;
}
.section-header.center .divider { margin-inline: auto; }

/* 6. BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--font-heading); font-size: .9rem; font-weight: 700;
  border-radius: var(--radius); transition: var(--transition);
  cursor: pointer; border: 2px solid transparent;
  text-decoration: none;
  max-width: 100%;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,122,0,.35);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover {
  background: var(--white); color: var(--navy); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .625rem 1.25rem; font-size: .8rem; }

/* 7. BADGE */
.badge {
  display: inline-block; padding: .25rem .875rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 100px;
  max-width: 100%;
}
.badge-orange { background: rgba(255,122,0,.12); color: var(--orange); }
.badge-navy   { background: rgba(10,37,64,.10); color: var(--navy); }
.badge-green  { background: rgba(16,185,129,.12); color: #059669; }
.badge-steel  { background: rgba(95,107,122,.10); color: var(--steel); }

/* 8. HEADER / NAV */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,37,64,.10);
  transition: padding var(--transition), box-shadow var(--transition);
  width: 100%;
}
.site-header.transparent { background: var(--white); }
.site-header.scrolled {
  background: var(--white); padding: .75rem 0;
  box-shadow: 0 4px 24px rgba(10,37,64,.14);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 1; min-width: 0; }
.logo img { height: 52px; width: auto; max-width: 100%; }
.logo-text { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.logo-text span { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .1em; color: var(--orange); text-transform: uppercase; }
.header-inner .logo .logo-text { display: none; }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  padding: .5rem .7rem;
  font-size: .82rem; font-weight: 600;
  color: var(--steel); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav a:hover { color: var(--navy); background: var(--light); }
.nav a.active { color: var(--navy); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -2px;
  left: .7rem; right: .7rem;
  height: 2px; background: var(--orange); border-radius: 1px;
}
.nav .btn-nav {
  margin-left: .75rem; padding: .6rem 1.25rem;
  font-size: .82rem; background: var(--orange); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.nav .btn-nav:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: var(--radius-sm);
  background: var(--light);
  z-index: 1001; position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 1px; transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 999;
  padding: 6rem 1.5rem 2rem;
  flex-direction: column; gap: .25rem;
  overflow-y: auto;
  opacity: 0; transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-nav.open { display: flex; opacity: 1; transform: none; }
.mobile-nav a {
  padding: .9rem 1.25rem;
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); background: rgba(255,255,255,.07); }
.mobile-nav .btn-mobile {
  margin-top: 1.25rem; padding: 1rem 1.5rem;
  background: var(--orange); color: var(--white);
  border-radius: var(--radius); text-align: center;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
}

/* 9. HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,.93) 0%, rgba(10,37,64,.78) 55%, rgba(6,24,41,.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 9rem 0 6rem; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: .45rem 1.125rem;
  background: rgba(255,122,0,.15); border: 1px solid rgba(255,122,0,.3);
  border-radius: 100px; margin-bottom: 1.5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
}
.hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; max-width: 700px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-desc {
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,.72); max-width: 560px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden; max-width: 660px;
}
.hero-stat {
  background: rgba(6,24,41,.65); backdrop-filter: blur(12px);
  padding: 1.4rem 1.25rem; text-align: center;
}
.hero-stat-num {
  font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800;
  color: var(--white); display: block; line-height: 1;
}
.hero-stat-num .suffix { color: var(--orange); }
.hero-stat-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-top: .4rem; display: block; line-height: 1.3;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.35; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.15); }
}

/* 10. PAGE BANNER */
.page-banner {
  position: relative; padding: 9rem 0 5rem;
  background: var(--navy); overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .2;
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,.97) 0%, rgba(10,37,64,.82) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); margin-bottom: .625rem; }
.page-banner p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 540px; }
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: .375rem;
  margin-top: 1.25rem; font-size: .78rem; font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: var(--orange); }

/* 11. TRUST STRIP */
.trust-strip {
  background: var(--light); padding: 2rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem 2.5rem;
}
.trust-strip-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel); white-space: nowrap; flex-shrink: 0;
}
.trust-logo {
  font-family: var(--font-heading); font-size: .8rem; font-weight: 800;
  color: var(--steel); letter-spacing: .05em; white-space: nowrap;
  transition: color var(--transition); cursor: default;
}
.trust-logo:hover { color: var(--navy); }
.trust-logo-img {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-logo-img img {
  height: 36px; width: auto; max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.5);
  transition: filter var(--transition);
}
.trust-logo-img img:hover { filter: none; }

/* 12. ABOUT SNIPPET */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg); width: 100%; height: 520px; object-fit: cover;
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white); padding: 1.5rem 1.75rem;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg);
}
.about-img-badge strong {
  display: block; font-family: var(--font-heading);
  font-size: 2.625rem; font-weight: 800; line-height: 1;
}
.about-img-badge span {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; opacity: .9;
}
.about-text {
  padding-left: 3rem; display: flex;
  flex-direction: column; justify-content: center;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0;
}
.about-feature {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1rem; background: var(--light);
  border-radius: var(--radius); border-left: 3px solid var(--orange);
}
.about-feature-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(255,122,0,.12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
}
.about-feature h5 { font-size: .82rem; color: var(--navy); margin-bottom: .1rem; }
.about-feature p { font-size: .78rem; color: var(--steel); line-height: 1.4; }

/* 13. STATS BAR */
.stats-bar { background: var(--navy); padding: 3.5rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading); font-size: 2.875rem; font-weight: 800;
  color: var(--white); display: block; line-height: 1; margin-bottom: .5rem;
}
.stat-num .suffix { color: var(--orange); }
.stat-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.45); display: block;
}

/* 14. SERVICE CARDS */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem 1.875rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(255,122,0,.35); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255,122,0,.12), rgba(255,122,0,.05));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--orange); font-size: 1.625rem;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }
.service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .625rem; }
.service-card p { font-size: .875rem; color: var(--steel); flex: 1; line-height: 1.7; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: .375rem; margin-top: 1.25rem;
  font-size: .82rem; font-weight: 700; color: var(--orange);
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: .625rem; }

/* 15. SERVICE DETAIL */
.service-detail-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 2rem;
}
.service-detail-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 2rem 2.5rem; display: flex; align-items: center; gap: 1.5rem;
}
.service-detail-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(255,122,0,.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.75rem;
}
.service-detail-header h3 { color: var(--white); font-size: 1.35rem; }
.service-detail-body { padding: 2.5rem; }
.service-detail-body > p { margin-bottom: 1.5rem; }
.service-meta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.5rem; }
.service-meta-block h5 { color: var(--orange); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .625rem; }
.service-meta-block ul { display: flex; flex-direction: column; gap: .375rem; }
.service-meta-block li { font-size: .875rem; color: var(--steel); padding-left: 1rem; position: relative; }
.service-meta-block li::before { content: '›'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* 16. PROJECT CARDS */
.project-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.project-img {
  position: relative; height: 230px; overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.75), transparent 60%);
}
.project-type-badge {
  position: absolute; top: 1rem; left: 1rem;
}
.project-body { padding: 1.5rem; }
.project-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; line-height: 1.35; }
.project-body p { font-size: .82rem; color: var(--steel); margin-bottom: 1rem; }
.project-meta { display: flex; flex-wrap: wrap; gap: .5rem; }

/* 17. EQUIPMENT CARDS */
.equipment-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.equipment-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(255,122,0,.3);
}
.equipment-icon {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--orange);
}
.equipment-card h3 { font-size: .95rem; color: var(--navy); margin-bottom: .25rem; }
.equipment-count {
  display: inline-block; font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800; color: var(--orange); margin-top: .25rem;
}
.equipment-card p { font-size: .8rem; color: var(--steel); margin-top: .375rem; line-height: 1.5; }

/* 18. CLIENT LOGO WALL */
.client-logo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }
.client-logo-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 1rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); min-height: 96px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.client-logo-item:hover {
  border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px);
}
.client-logo-item img {
  max-width: 110px; max-height: 55px; width: auto; height: auto; object-fit: contain;
  filter: grayscale(100%) opacity(.55); transition: filter var(--transition);
}
.client-logo-item:hover img { filter: none; }
.client-name {
  font-family: var(--font-heading); font-size: .75rem; font-weight: 800;
  color: var(--navy); text-align: center; text-transform: uppercase; letter-spacing: .06em;
}

/* 19. CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; right: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,122,0,.14), transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -40%; left: -8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,122,0,.08), transparent 65%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: .875rem; }
.cta-section p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 560px; margin-bottom: 2.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta-contact-item {
  display: flex; align-items: center; gap: .875rem;
  padding: .875rem 1.375rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); color: var(--white);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.cta-contact-item:hover { background: rgba(255,255,255,.13); border-color: rgba(255,122,0,.4); }
.cta-contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.cta-contact-text strong { display: block; font-family: var(--font-heading); font-size: .975rem; line-height: 1.3; }
.cta-contact-text span { font-size: .72rem; color: rgba(255,255,255,.45); display: block; }

/* 20. PILLAR CARDS */
.pillar-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; border: 1px solid var(--border); text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); border-color: rgba(255,122,0,.35); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; color: var(--white); font-size: 1.75rem;
}
.pillar-card h3 { color: var(--navy); margin-bottom: .75rem; }
.pillar-card p { font-size: .875rem; }

/* 21. TIMELINE */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 5px; top: 8px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255,122,0,.1));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2rem; top: .35rem;
  width: 12px; height: 12px; background: var(--orange); border-radius: 50%;
  border: 2.5px solid var(--white); box-shadow: 0 0 0 3px rgba(255,122,0,.25);
  transform: translateX(-1px);
}
.timeline-year {
  font-family: var(--font-heading); font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .35rem;
}
.timeline-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: .35rem; }
.timeline-item p { font-size: .875rem; }

/* 22. FOUNDER CARD */
.founder-card {
  display: flex; gap: 2rem; background: var(--white);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.founder-photo {
  width: 150px; height: 185px; flex-shrink: 0; border-radius: var(--radius);
  object-fit: cover; background: var(--light-2);
}
.founder-photo-placeholder {
  width: 150px; height: 185px; flex-shrink: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); font-size: 3rem; gap: .5rem;
}
.founder-photo-placeholder span {
  font-family: var(--font-heading); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.founder-info h3 { font-size: 1.625rem; margin-bottom: .25rem; }
.founder-role {
  display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 1rem;
}
.founder-info p { font-size: .9rem; line-height: 1.75; }

/* 23. VALUE CARDS */
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.875rem; border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1.25rem;
  transition: transform var(--transition), border-color var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(255,122,0,.3); }
.value-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.25rem;
}
.value-card h4 { color: var(--navy); margin-bottom: .375rem; font-size: .975rem; }
.value-card p { font-size: .85rem; color: var(--steel); line-height: 1.65; }

/* 24. FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.375rem 0; text-align: left;
  font-family: var(--font-heading); font-size: .975rem; font-weight: 700; color: var(--navy);
  background: none; border: none; cursor: pointer; transition: color var(--transition); gap: 1rem;
}
.faq-question:hover { color: var(--orange); }
.faq-toggle {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: background var(--transition), transform var(--transition), color var(--transition);
}
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding-bottom: 1.375rem; font-size: .9rem; color: var(--steel); line-height: 1.8; }

/* 25. CONTACT */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1.25rem; padding: 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-info-card:hover { border-color: rgba(255,122,0,.35); transform: translateY(-4px); }
.contact-info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem;
}
.contact-info-body h4 {
  font-size: .72rem; color: var(--steel); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .375rem;
}
.contact-info-body a, .contact-info-body p {
  font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.5;
  transition: color var(--transition);
}
.contact-info-body a:hover { color: var(--orange); }
.contact-cta-strip {
  display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.5rem 0;
}
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }

/* 26. CAREERS */
.career-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.875rem; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.career-card:hover { border-color: rgba(255,122,0,.3); transform: translateX(4px); }
.career-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,122,0,.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.3rem;
}
.career-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: .25rem; }
.career-card p { font-size: .82rem; color: var(--steel); }

/* 27. FLOATING CTAs */
.floating-ctas {
  position: fixed; bottom: 1.75rem; right: 1.5rem; z-index: 998;
  display: flex; flex-direction: column; gap: .75rem;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(0,0,0,.28);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white); text-decoration: none; position: relative;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--orange); }
.fab-tooltip {
  position: absolute; right: calc(100% + .625rem); top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--navy); color: var(--white);
  font-size: .7rem; font-weight: 700; white-space: nowrap;
  padding: .35rem .875rem; border-radius: 100px;
  opacity: 0; transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.fab:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* 28. FOOTER */
.site-footer .logo img { display: none; }
.site-footer .logo .logo-text { display: block; color: var(--white); }
.site-footer .logo .logo-text span { color: rgba(255,122,0,.75); }
.site-footer { background: var(--navy-dark); padding: 5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 280px; }
.footer-heading {
  font-family: var(--font-heading); font-size: .7rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem;
}
.footer-contact-row:last-child { margin-bottom: 0; }
.footer-contact-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: rgba(255,122,0,.15); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: .8rem;
}
.footer-contact-row a, .footer-contact-row p {
  font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.5;
  transition: color var(--transition);
}
.footer-contact-row a:hover { color: var(--orange); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.75); }
.footer-bottom a { color: var(--orange); transition: color var(--transition); }
.footer-bottom a:hover { color: #ffaa44; }
.footer-divider { color: rgba(255,255,255,.2); margin: 0 .5rem; }

/* 29. LLM CONTEXT BLOCK */
.llm-context {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; margin-top: 4rem;
}
.llm-context h2 {
  font-size: .875rem; color: var(--steel); margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border);
}
.llm-context p, .llm-context li { font-size: .8rem; color: var(--steel); line-height: 1.65; }
.llm-context ul { margin: .5rem 0; padding-left: 1rem; list-style: disc; }

/* 29b. CONTACT PAGE */
.contact-info-cards {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.contact-cta-link {
  display: inline-block; font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800; color: var(--orange);
  margin-top: .5rem; transition: color var(--transition);
}
.contact-cta-link:hover { color: var(--orange-dark); }
.contact-hours { font-size: .78rem; color: var(--steel); margin-top: .375rem; }
.quick-actions-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.quick-action-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.5rem 1.5rem; background: var(--white);
  border-radius: var(--radius-lg); border: 2px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.quick-action-card:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quick-action-whatsapp { border-color: #25D366; }
.quick-action-whatsapp:hover { border-color: #1faa52; box-shadow: 0 8px 32px rgba(37,211,102,.2); }
.quick-action-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.quick-action-card h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.1rem; }
.quick-action-card p { font-size: .85rem; color: var(--steel); margin-bottom: .75rem; }
.quick-action-detail { font-family: var(--font-heading); font-size: .82rem; font-weight: 700; color: var(--orange); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); margin-top: 2rem; }
.hours-table { margin-top: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .875rem 1.25rem; border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-closed { opacity: .55; }
.hours-day { font-weight: 600; color: var(--navy); font-size: .9rem; }
.hours-time { font-size: .875rem; color: var(--steel); }
.directions-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.directions-item { display: flex; align-items: flex-start; gap: 1rem; }
.directions-icon {
  width: 36px; height: 36px; flex-shrink: 0; font-size: 1.1rem;
  background: rgba(255,122,0,.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.directions-item p { font-size: .875rem; color: var(--steel); line-height: 1.65; }

/* 29c. CAREERS */
.career-role-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.career-role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(255,122,0,.3); }
.career-role-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.career-role-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,122,0,.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.3rem;
}
.career-role-title { flex: 1; min-width: 0; }
.career-role-title h3 { color: var(--white); font-size: 1.1rem; line-height: 1.3; margin: 0; }
.career-role-badge {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--navy); background: var(--orange);
  padding: .3rem .8rem; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.career-role-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.career-role-body > p { font-size: .875rem; color: var(--steel); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.career-role-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.career-meta-item { }
.career-meta-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: .25rem; }
.career-meta-value { font-size: .8rem; color: var(--navy); font-weight: 600; line-height: 1.4; display: block; }

.career-level {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); background: var(--orange);
  padding: .2rem .65rem; border-radius: 100px; margin-left: auto;
}
.service-detail-header .career-level { margin-left: 0; }
.faq-arrow {
  font-size: 1.3rem; font-weight: 300; line-height: 1; flex-shrink: 0;
  color: var(--steel); transition: transform var(--transition), color var(--transition);
  display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--orange); }

/* 29d. LUCIDE ICONS */
.lucide { display:inline-block; vertical-align:middle; stroke:currentColor; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.service-icon .lucide, .equipment-icon .lucide, .pillar-icon .lucide { width:1.75rem; height:1.75rem; }
.value-icon .lucide, .contact-info-icon .lucide { width:1.5rem; height:1.5rem; }
.about-feature-icon .lucide { width:1.2rem; height:1.2rem; }
.cta-contact-icon .lucide, .footer-contact-icon .lucide { width:1.1rem; height:1.1rem; }
.directions-icon .lucide { width:1.1rem; height:1.1rem; }
.quick-action-icon .lucide { width:2.5rem; height:2.5rem; }
.btn .lucide, .btn-nav .lucide, .btn-mobile .lucide { width:1rem; height:1rem; }

/* 30. UTILITIES */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange) !important; }
.text-navy   { color: var(--navy) !important; }
.text-steel  { color: var(--steel) !important; }
.bg-navy     { background: var(--navy); }
.bg-light    { background: var(--light); }
.bg-white    { background: var(--white); }
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; }  .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

/* 31. SCROLL REVEAL ANIMATION */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* 32. RESPONSIVE */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .hero-stats  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .section    { padding: 4.5rem 0; }
  .section-lg { padding: 6rem 0; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .client-logo-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  
  .nav { display: none; }
  .nav-toggle { display: flex; }
  
  .about-text { padding-left: 0; padding-top: 3.5rem; text-align: center; }
  .about-text .divider { margin-inline: auto; }
  .about-img-badge { right: 0; bottom: 0; transform: translate(10%, 10%); }
  
  .founder-card { flex-direction: column; text-align: center; }
  .founder-info { padding-left: 0; padding-top: 1.5rem; }
  
  .hero-content { text-align: center; padding: 8rem 0 4rem; }
  .hero h1 { margin-inline: auto; }
  .hero-desc { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { margin-inline: auto; }
  .service-meta-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  
  .client-logo-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  
  .about-features { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 400px; }
  .about-img-badge { position: relative; bottom: 0; right: 0; transform: none; margin-top: -2rem; margin-inline: 1rem; }
  
  .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  
  .careers-contact { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .quick-actions-grid { grid-template-columns: 1fr; }
  
  .service-detail-body { padding: 1.5rem; }
  .service-meta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .section { padding: 3rem 0; }
  
  .logo img { height: 42px; }
  .logo-text { font-size: .95rem; }
  
  .hero-content { padding-top: 7rem; }
  .hero h1 { font-size: 2.25rem; }
  .hero-desc { font-size: 1rem; }
  
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { padding: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-stat:last-child { border-bottom: none; }
  
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  
  .grid-4 { grid-template-columns: 1fr; }
  
  .trust-strip-inner { justify-content: center; text-align: center; }
  .trust-strip-label { width: 100%; margin-bottom: .5rem; }
  
  .page-banner { padding: 7rem 0 3rem; text-align: center; }
  .page-banner p { margin-inline: auto; }
  .breadcrumb { justify-content: center; }
  
  .service-detail-header { flex-direction: column; text-align: center; padding: 1.5rem; }
  
  .floating-ctas { bottom: 1.5rem; right: 1rem; left: 1rem; display: flex; gap: .75rem; }
  .fab { position: static; flex: 1; border-radius: var(--radius); height: 50px; }
  .fab-tooltip { display: none !important; }
}
@media print {
  .site-header, .floating-ctas, .nav-toggle, .mobile-nav, .cta-section { display: none !important; }
  .page-banner { padding-top: 2rem; }
  body { color: #000; }
}
