:root {
  --ink: #0d1b24;
  --ink-muted: #526672;
  --navy-dark: #05141c;
  --navy: #09202c;
  --navy-light: #112d3e;
  --navy-card: #0d2533;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-glow: rgba(16, 185, 129, 0.22);
  --lime: #6ec62f;
  --blue-brand: #0284c7;
  --blue-soft: #e0f2fe;
  --paper: #f8fafc;
  --paper-card: #ffffff;
  --border: rgba(13, 27, 36, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(5, 20, 28, 0.04);
  --shadow-md: 0 12px 32px rgba(5, 20, 28, 0.08);
  --shadow-lg: 0 24px 50px rgba(5, 20, 28, 0.12);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.25);
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex-shrink: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: -100px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 20px;
}

:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 3px;
}

/* ------------------- HEADER ------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  min-height: 76px;
  padding: 10px clamp(16px, 3.5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.main-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--navy-light);
}

.main-nav a:hover:after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.header-call:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: pulse-dot 2.2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05); }
}

.header-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-call-text small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
}

.header-call-text span {
  font-size: 13px;
  font-weight: 800;
}

/* ------------------- BUTTONS ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--emerald);
  color: #032b1c;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.header-btn {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: var(--radius-md);
}

/* ------------------- HERO SECTION ------------------- */
.hero {
  position: relative;
  background: var(--navy-dark);
  color: var(--white);
  padding: clamp(50px, 6vw, 90px) clamp(16px, 3.5vw, 60px) clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(2, 132, 199, 0.08) 45%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  color: var(--emerald-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.badge-tag svg {
  width: 13px;
  height: 13px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff 40%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 em {
  font-style: normal;
  color: var(--emerald-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-security-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sec-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.sec-pill svg {
  width: 15px;
  height: 15px;
  color: var(--emerald);
}

/* Hero Media Card */
.hero-visual-card {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-img-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-stat {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: rgba(9, 32, 44, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float-slow 4s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--emerald);
  color: #032b1c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: #ffffff;
  line-height: 1.1;
}

.stat-text span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

/* ------------------- STATS / TRUST BAR ------------------- */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 32px clamp(16px, 3.5vw, 60px);
}

.trust-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.metric-item {
  text-align: center;
}

.metric-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.metric-item strong span {
  color: var(--emerald);
}

.metric-item p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-top: 4px;
}

.partners-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.partners-strip > span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.5vw, 50px);
  flex-wrap: wrap;
}

.partner-logos img {
  height: 34px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all 0.25s ease;
}

.partner-logos img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* ------------------- SECTION SHARED STYLES ------------------- */
.section {
  padding: clamp(56px, 7vw, 100px) clamp(16px, 3.5vw, 60px);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.section-head {
  max-width: 680px;
  margin-bottom: 46px;
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-title.light {
  color: #ffffff;
}

.section-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-muted);
  line-height: 1.6;
}

.section-desc.light {
  color: #94a3b8;
}

/* ------------------- BENTO JANITORIAL SCOPE ------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--paper-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.4);
}

.bento-card-lg {
  grid-column: span 7;
}

.bento-card-md {
  grid-column: span 5;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
  margin-bottom: 14px;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.bento-img-frame {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 14px;
  position: relative;
}

.bento-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-img-frame img {
  transform: scale(1.04);
}

.bento-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-top: auto;
}

.bento-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.bento-checklist li svg {
  width: 15px;
  height: 15px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* ------------------- THE MAGIC PROTOCOL (QUALITY AUDIT) ------------------- */
.quality-section {
  background: var(--navy-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.quality-image-wrap {
  position: relative;
}

.quality-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.audit-badge-overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(5, 20, 28, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--emerald-light);
  letter-spacing: 0.04em;
}

.audit-badge-overlay svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
}

.protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.protocol-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.protocol-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateX(4px);
}

.protocol-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--emerald);
  color: #032b1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.protocol-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 4px;
}

.protocol-item p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
}

/* ------------------- FACILITIES SPECIALIZATION ------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.facility-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-sm);
  background: var(--navy);
  border: 1px solid var(--border);
}

.facility-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.facility-box-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 28, 0.1) 0%, rgba(5, 20, 28, 0.9) 75%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  transition: background 0.3s ease;
}

.facility-box:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.facility-box:hover .facility-box-overlay {
  background: linear-gradient(180deg, rgba(5, 20, 28, 0.1) 0%, rgba(5, 20, 28, 0.94) 65%);
}

.facility-subtag {
  color: var(--emerald-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.facility-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.facility-box p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
  opacity: 0.9;
}

/* ------------------- REVIEWS ------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--emerald);
  letter-spacing: 0.15em;
  font-size: 13px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
}

.author-info span {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
}

/* ------------------- FAQ ACCORDION ------------------- */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  gap: 12px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ------------------- FINAL CTA BANNER ------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.cta-banner:after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.55;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

/* ------------------- FOOTER ------------------- */
.site-footer {
  background: #030d12;
  color: #94a3b8;
  padding: 44px clamp(16px, 3.5vw, 60px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 340px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--emerald-light);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ------------------- MOBILE STICKY CTA ------------------- */
.mobile-sticky-cta {
  display: none;
}

/* ------------------- RESPONSIVE BREAKPOINTS ------------------- */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 68px;
    padding: 8px 16px;
  }
  .brand img {
    height: 38px;
  }
  .header-call {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual-card {
    order: -1;
  }
  .hero-img-wrapper img {
    height: 320px;
  }
  .hero-floating-stat {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 14px;
    width: 100%;
    animation: none;
  }
  .bento-card-lg, .bento-card-md {
    grid-column: span 12;
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .quality-image-wrap img {
    height: 340px;
  }
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    grid-template-columns: 1fr;
  }
  .cta-banner-actions {
    align-items: flex-start;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  /* iPhone 12 & Small Mobile Polish */
  body {
    padding-bottom: max(74px, calc(58px + env(safe-area-inset-bottom)));
  }

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

  .brand img {
    height: 34px;
  }

  .header-btn {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }

  .hero {
    padding: 36px 14px 48px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }

  .hero-security-pills {
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
  }

  .hero-img-wrapper img {
    height: 240px;
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .metric-item strong {
    font-size: 26px;
  }

  .metric-item p {
    font-size: 10px;
  }

  .partners-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .partner-logos {
    justify-content: center;
    gap: 14px 18px;
  }

  .partner-logos img {
    height: 26px;
  }

  .section {
    padding: 48px 14px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 26px;
  }

  .bento-card {
    padding: 20px 16px;
  }

  .bento-card h3 {
    font-size: 20px;
  }

  .bento-checklist {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bento-img-frame {
    height: 170px;
  }

  .quality-image-wrap img {
    height: 240px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facility-box {
    height: 250px;
  }

  .cta-banner {
    padding: 28px 16px;
  }

  .cta-banner-actions {
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(5, 20, 28, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    display: flex;
    gap: 8px;
  }

  .mobile-sticky-cta .btn {
    flex: 1;
    padding: 13px;
    font-size: 13px;
    border-radius: var(--radius-md);
  }
}
