:root {
  --navy: #153b56;
  --blue: #1678a8;
  --sky: #eaf5fa;
  --ink: #17313e;
  --muted: #5f7480;
  --white: #ffffff;
  --line: #dbe7ec;
  --accent: #ec8f2d;
  --shadow: 0 12px 34px rgba(15, 53, 75, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: #fff; line-height: 1.55; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.topbar { background: var(--navy); color: #fff; font-size: 14px; }
.topbar .container { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar a { text-decoration: none; font-weight: 700; }
.site-header { background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(8px); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 255px; }
.brand-mark { width: 58px; height: 58px; border-radius: 50%; background: var(--blue); position: relative; flex: 0 0 auto; box-shadow: inset 0 0 0 5px #dff2fa; }
.brand-mark::before { content: ""; position: absolute; width: 15px; height: 26px; border: 6px solid white; border-top: 0; border-left: 0; border-radius: 0 0 18px 0; left: 14px; top: 9px; transform: rotate(43deg); }
.brand-mark::after { content: ""; position: absolute; width: 7px; height: 10px; background: white; border-radius: 50% 50% 60% 60%; right: 12px; bottom: 10px; transform: rotate(12deg); }
.brand-text strong { display: block; font-size: 24px; line-height: .95; letter-spacing: -1px; color: var(--navy); }
.brand-text strong span { color: var(--blue); }
.brand-text small { display: block; color: var(--muted); margin-top: 5px; font-weight: 700; letter-spacing: .04em; }
nav ul { list-style: none; display: flex; align-items: center; gap: 6px; padding: 0; margin: 0; }
nav a { display: block; text-decoration: none; padding: 12px 15px; border-radius: 8px; font-weight: 700; color: #315262; }
nav a:hover, nav a.active { background: var(--sky); color: var(--blue); }
.call-btn, .primary-btn, .secondary-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; border-radius: 8px; font-weight: 800; transition: .18s ease; }
.call-btn { background: var(--accent); color: #fff; padding: 12px 16px; white-space: nowrap; }
.primary-btn { background: var(--blue); color: #fff; padding: 14px 22px; }
.secondary-btn { background: #fff; color: var(--navy); border: 2px solid var(--navy); padding: 12px 20px; }
.call-btn:hover, .primary-btn:hover { transform: translateY(-1px); filter: brightness(.96); }
.secondary-btn:hover { background: var(--sky); }
.menu-toggle { display: none; border: 0; background: var(--sky); border-radius: 8px; padding: 10px 12px; font-size: 20px; color: var(--navy); }
.hero { background: linear-gradient(115deg, rgba(21,59,86,.96), rgba(22,120,168,.88)), radial-gradient(circle at 75% 25%, #75c6e5, transparent 42%); color: #fff; overflow: hidden; }
.hero-grid { min-height: 520px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 56px; padding: 70px 0; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .13em; font-size: 13px; font-weight: 900; color: #bfeaff; margin-bottom: 12px; }
.hero h1 { font-size: clamp(42px, 6vw, 70px); line-height: .98; letter-spacing: -2px; margin: 0 0 20px; max-width: 700px; }
.hero p { font-size: 19px; max-width: 650px; color: #e5f5fb; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .secondary-btn { color: #fff; border-color: rgba(255,255,255,.75); background: transparent; }
.hero-card { background: #fff; color: var(--ink); border-radius: 18px; padding: 30px; box-shadow: 0 28px 65px rgba(0,0,0,.22); position: relative; }
.hero-card::before { content: ""; position: absolute; width: 110px; height: 110px; border: 18px solid #ccecf8; border-left-color: transparent; border-radius: 50%; right: -35px; top: -36px; opacity: .65; }
.hero-card h2 { color: var(--navy); margin: 0 0 18px; font-size: 26px; }
.hero-card .big-phone { font-size: 29px; font-weight: 900; color: var(--blue); text-decoration: none; display: inline-block; margin: 2px 0 14px; }
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li { padding: 9px 0 9px 30px; border-top: 1px solid var(--line); position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 4px; font-weight: 900; color: var(--blue); }
section { padding: 78px 0; }
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); color: var(--navy); letter-spacing: -1px; margin: 5px 0 12px; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }
.services { background: #f8fbfc; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 25px; box-shadow: 0 6px 24px rgba(20,60,80,.06); }
.card h3 { color: var(--navy); margin: 8px 0 8px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); }
.icon { width: 45px; height: 45px; border-radius: 10px; display: grid; place-items: center; background: var(--sky); color: var(--blue); font-size: 23px; font-weight: 900; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.feature-panel { min-height: 390px; border-radius: 18px; background: linear-gradient(145deg, #d7eff8, #f7fbfd); border: 1px solid #cfe5ee; display: grid; place-items: center; padding: 35px; position: relative; overflow: hidden; }
.pipe-art { width: min(320px, 90%); aspect-ratio: 1; position: relative; }
.pipe-art .ring { position: absolute; border: 28px solid var(--blue); border-radius: 50%; width: 220px; height: 220px; left: 18px; top: 16px; border-right-color: transparent; transform: rotate(-28deg); }
.pipe-art .stem { position: absolute; width: 40px; height: 155px; background: var(--blue); right: 53px; top: 143px; border-radius: 18px; transform: rotate(41deg); }
.pipe-art .drop { position: absolute; width: 35px; height: 50px; border-radius: 55% 55% 65% 65%; background: var(--accent); right: 25px; bottom: 2px; transform: rotate(9deg); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.stat { border-left: 4px solid var(--blue); background: var(--sky); padding: 14px 16px; border-radius: 0 8px 8px 0; }
.stat strong { display: block; font-size: 23px; color: var(--navy); }
.stat span { font-size: 13px; color: var(--muted); }
.cta { padding: 0 0 78px; }
.cta-box { background: var(--navy); color: #fff; border-radius: 18px; padding: 38px 42px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-box h2 { margin: 0 0 5px; font-size: 30px; }
.cta-box p { margin: 0; color: #d9ecf5; }
.page-hero { background: linear-gradient(115deg, var(--navy), var(--blue)); color: #fff; padding: 70px 0; }
.page-hero h1 { font-size: clamp(40px, 6vw, 62px); margin: 0 0 12px; letter-spacing: -1.5px; }
.page-hero p { font-size: 18px; max-width: 700px; margin: 0; color: #dceff7; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-list .card { min-height: 205px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: stretch; }
.contact-card { background: #f8fbfc; border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.contact-card h3 { color: var(--navy); margin-top: 0; }
.contact-row { padding: 15px 0; border-top: 1px solid var(--line); }
.contact-row:first-of-type { border-top: 0; }
.contact-row strong { display: block; color: var(--navy); }
.contact-row a { color: var(--blue); font-weight: 800; text-decoration: none; }
.notice { background: #fff3e3; border-left: 4px solid var(--accent); padding: 14px 16px; border-radius: 4px 8px 8px 4px; color: #72501e; }
footer { background: #102d40; color: #d8e7ef; padding: 44px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 34px; }
footer h3 { color: #fff; margin-top: 0; }
footer a { color: #d8e7ef; text-decoration: none; }
.footer-links { display: grid; gap: 9px; }
.social { display: flex; gap: 10px; margin-top: 15px; }
.social img { width: 34px; height: 34px; border-radius: 7px; }
.copyright { border-top: 1px solid rgba(255,255,255,.14); margin-top: 30px; padding-top: 20px; color: #a9c0cc; font-size: 14px; }
@media (max-width: 900px) {
  .call-btn.header-call { display: none; }
  .menu-toggle { display: block; }
  nav { position: absolute; left: 0; right: 0; top: 92px; background: #fff; border-bottom: 1px solid var(--line); display: none; box-shadow: var(--shadow); }
  nav.open { display: block; }
  nav ul { flex-direction: column; align-items: stretch; padding: 12px 18px 18px; }
  nav a { padding: 12px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-card { max-width: 650px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .topbar .container { justify-content: center; text-align: center; }
  .topbar span { display: none; }
  .nav-wrap { min-height: 78px; }
  nav { top: 78px; }
  .brand-mark { width: 49px; height: 49px; }
  .brand-text strong { font-size: 20px; }
  .brand-text small { font-size: 10px; }
  .hero-grid { padding: 54px 0; gap: 32px; }
  .hero h1 { font-size: 43px; }
  section { padding: 58px 0; }
  .cards, .service-list, .stat-grid { grid-template-columns: 1fr; }
  .cta-box { align-items: flex-start; flex-direction: column; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
}

.brand img {
    height: 70px;
    width: auto;
    display: block;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 46px;
    width: auto;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 20px;
}

.brand-text small {
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 5px;
}

.business-card-panel {
    padding: 0;
    overflow: hidden;
    background: white;
}

.business-card-panel img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Dark paragraph text inside the white emergency card */
.hero .hero-card p {
    color: #315262;
}

/* Remove decorative circle from emergency card */
.hero-card::before {
    display: none;
}
