:root { --teal: #007F95; --teal-dark: #00647A; --aqua: #1FC8C7; --soft-aqua: #A6F7F5; --mint: #B5FEDB; --navy: #243A4E; --ink: #1B2C3A; --paper: #FBFEFE; --cream: #F5FBFA; --line: rgba(36, 58, 78, 0.10); --shadow: 0 20px 50px -20px rgba(0, 79, 95, 0.35); }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Nunito', sans-serif; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
h1,
h2,
h3,
.display { font-family: 'Oxygen', sans-serif; font-weight: 700; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
p { line-height: 1.65; margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }
/* ---------- Call CTA button + signature pulse ---------- */
.call-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--teal); color: #fff; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; padding: 14px 26px; border-radius: 100px; box-shadow: var(--shadow); white-space: nowrap; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; position: relative; border: none; cursor: pointer; }
.call-btn:hover { transform: translateY(-2px); background: var(--teal-dark); }
.call-btn .ring-wrap { position: relative; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.call-btn .ring-wrap svg { width: 18px; height: 18px; position: relative; z-index: 2; }
.pulse { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.9); opacity: 0; animation: pulse-ring 2.6s ease-out infinite; }
.pulse.p2 { animation-delay: .9s; }
@keyframes pulse-ring {
 0% { transform: scale(0.4); opacity: .85; }
80% { transform: scale(2.2); opacity: 0; }
100% { transform: scale(2.2); opacity: 0; }
 }
.call-btn.ghost { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.55); color: #fff; box-shadow: none; }
.call-btn.ghost:hover { background: rgba(255, 255, 255, 0.12); }
@media (prefers-reduced-motion: reduce) {
 .pulse { animation: none; opacity: 0; }
 }
@media(max-width:1200px) {
 .wrap { padding: 0 15px; }
 }
/* ---------- Header ---------- */
header { position: sticky; top: 0; z-index: 50; background: rgba(251, 254, 254, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; }
header .logo img { height: 34px; width: auto; }
nav { display: flex; align-items: center; gap: 34px; }
nav ul.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
nav ul.nav-links li { display: flex; align-items: center; }
nav a { font-size: 15px; font-weight: 700; color: var(--navy); opacity: 0.75; transition: opacity .15s ease; text-transform: capitalize; }
nav a:hover { opacity: 1; color: var(--teal); }
nav a.active { opacity: 1; color: var(--teal); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-mini { display: none; }
header nav .menu-btn svg { width: 30px; height: auto; }
header nav .menu-btn { display: none; color: var(--teal); background: rgba(0, 127, 149, 0.08); border: 1px solid rgba(0, 127, 149, 0.18); width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; }
header nav .menu-btn svg path { stroke: var(--teal); }
@media (max-width:992px) {
 nav ul.nav-links { gap: 10px; }
 }
@media (min-width:1200px) {
 .phone-mini { display: flex; flex-direction: column; text-align: right; font-size: 12px; color: var(--navy); opacity: .65; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.phone-mini strong { display: block; font-size: 16px; color: var(--teal); letter-spacing: 0; text-transform: none; }
 }
.nav-toggle { display: none; }
@media (max-width:860px) {
 header nav ul.nav-links { position: absolute; width: 100%; left: 0; flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 20px; background-color: rgba(251, 254, 254, 0.92); top: 83px; display: none; }
header nav ul.nav-links .menu-item { margin-bottom: 10px; }
header nav .menu-btn { display: flex; }
header nav { width: calc(100% - 300px); justify-content: flex-end; }
nav ul.nav-links { display: none; }
nav ul.nav-links.active { display: block; }
 }
@media (max-width:575px) {
 header .wrap { padding: 15px; }
header .call-btn { font-size: 0; padding: 0; gap: 0; width: 46px; height: 46px; justify-content: center; }
header nav { width: calc(100% - 170px); }
 }
/* ---------- Footer ---------- */
footer { background: #122430; padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
footer img.flogo { height: 30px; margin-bottom: 16px; }
footer .ftag { color: rgba(255, 255, 255, 0.55); font-size: 14px; max-width: 280px; line-height: 1.6; }
.foot-col h4 { color: #fff; font-family: 'Nunito', sans-serif; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; margin-bottom: 16px; opacity: .85; }
.foot-col a,
.foot-col p { display: block; color: rgba(255, 255, 255, 0.6); font-size: 14.5px; margin-bottom: 10px; }
.foot-col a:hover { color: var(--aqua); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { color: rgba(255, 255, 255, 0.4); font-size: 12.5px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--teal); background: rgba(0, 127, 149, 0.08); border: 1px solid rgba(0, 127, 149, 0.18); padding: 7px 16px 7px 12px; border-radius: 100px; margin-bottom: 22px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 3px rgba(31, 200, 199, 0.25); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: block; }
.section-head h2 { font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
.section-head p { font-size: 16.5px; color: #4C6270; }
.foot-bottom p a { color: rgba(255, 255, 255, 0.6); }
.monitor-tags-ctas { margin: 30px 0 0 0; }
@media (max-width:900px) {
 .section-head h2 { font-size: 28px; }
.section-head { margin-bottom: 30px; }
 }
@media (max-width:800px) {
 .foot-grid { grid-template-columns: 1fr; gap: 28px; }
 }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; list-style: none; margin: 16px 0 0; padding: 0; }
.social-links li { display: flex; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); transition: background .18s ease, transform .18s ease; }
.social-links a:hover { background: var(--aqua); transform: translateY(-2px); }
.social-links img { width: 30px; height: 30px; object-fit: contain; display: block; }
.content-page-block h2, .content-page-block h3 { margin: 20px 0; }
.content-page-block { padding: 100px 15px; }
@media (max-width:575px) {
 .content-page-block { padding: 50px 15px; }
 }
