/* ============================================================
   Roof Repair SLC - styles
   Palette: dark blue #0F1F3D, orange #F26523, purple #6C3FD1, ice #ECEAF7
   ============================================================ */
:root {
  --navy: #0F1F3D;
  --navy-dark: #091630;
  --navy-mid: #1B3468;
  --orange: #F26523;
  --orange-hover: #ff7433;
  --purple: #6C3FD1;
  --purple-dark: #4A2A9A;
  --purple-light: #8E6AE6;
  --ice: #ECEAF7;
  --ice-2: #F4F3FA;
  --text: #43494F;
  --white: #ffffff;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-head: "Signika", "Poppins", system-ui, Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(9, 22, 48, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.6em; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35em; }
p { margin: 0 0 1em; }
.center { text-align: center; }
.light { color: var(--white); }
.container { width: min(1120px, 100% - 2rem); margin-inline: auto; }
.container.narrow { max-width: 840px; }
svg.lucide, i[data-lucide] { width: 1.15em; height: 1.15em; vertical-align: -0.2em; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  line-height: 1.2;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 0 var(--purple);
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 0 var(--purple); }
.btn-orange:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--purple); }
.btn-purple { background: var(--purple); color: var(--white); box-shadow: 0 4px 0 var(--orange); }
.btn-purple:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange); }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.78rem; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 0.95rem; }

/* Top bar */
.topbar { background: var(--navy); color: var(--white); font-size: 0.8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.4rem 0; }
.topbar-area { display: inline-flex; align-items: center; gap: 0.35rem; }
.topbar-phone { color: var(--white); text-decoration: none; font-weight: 700; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 0.4rem; }

/* Header */
.header { background: var(--ice); position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 10px rgba(9,22,48,0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img, .logo svg { height: 58px; width: auto; display: block; }
.logo-lg img, .logo-lg svg { height: 72px; }
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.header-ctas { display: flex; gap: 0.6rem; }
.nav { display: flex; gap: 1.4rem; align-items: center; }
.nav > a, .nav .has-sub > a { color: var(--navy); text-decoration: none; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 0.25rem; }
.nav > a:hover, .nav .has-sub:hover > a { color: var(--orange); }
.nav .has-sub { position: relative; }
.nav .has-sub > a svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.nav .has-sub:hover > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 250px; background: var(--white); border-radius: 10px;
  box-shadow: 0 14px 34px rgba(9,22,48,0.22); padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transition: opacity 0.15s ease, transform 0.15s ease;
  border-top: 4px solid var(--orange); z-index: 60;
}
.dropdown::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav .has-sub:hover .dropdown, .nav .has-sub:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 1.1rem; color: var(--navy); text-decoration: none; font-size: 0.85rem; font-weight: 500; text-transform: none; letter-spacing: 0; white-space: nowrap; }
.dropdown a svg { width: 18px; height: 18px; color: var(--purple); }
.dropdown a:hover { background: var(--ice-2); color: var(--orange); }
.dropdown .dropdown-all { border-top: 1px solid var(--ice); margin-top: 0.3rem; padding-top: 0.7rem; font-weight: 700; color: var(--purple); }
.menu-btn { display: none; background: none; border: 0; color: var(--navy); cursor: pointer; padding: 0.4rem; }
.menu-btn svg { width: 30px; height: 30px; }
.mobile-nav { display: none; flex-direction: column; gap: 0.1rem; padding: 0.5rem 1rem 1rem; background: var(--ice); border-top: 1px solid rgba(15,31,61,0.12); max-height: calc(100vh - 80px); overflow-y: auto; }
.mobile-nav a { padding: 0.6rem 0.25rem; color: var(--navy); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }
.mobile-nav .sub-title { padding: 0.6rem 0.25rem 0.2rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); }
.mobile-nav .sub-links { display: flex; flex-direction: column; padding-left: 0.8rem; border-left: 3px solid var(--orange); margin: 0 0 0.4rem 0.25rem; }
.mobile-nav .sub-links a { text-transform: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 0; padding: 0.4rem 0.25rem; }
.mobile-nav .btn { margin-top: 0.6rem; text-align: center; }
.mobile-nav.open { display: flex; }

/* Hero */
.hero { background: var(--white); }
.hero-title { text-align: center; padding: 3.5rem 1rem 2.5rem; }
.hero-title h1 { margin-bottom: 0.4rem; }
.hero-title p { max-width: 640px; margin: 0 auto 1.4rem; font-size: 1.05rem; color: var(--text); }
.hero-photo {
  position: relative;
  min-height: 560px;
  background: url("/assets/img/hero-roofer-installing-shingles.jpg") center 40% / cover no-repeat;
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,31,61,0.72) 0%, rgba(44,30,90,0.6) 60%, rgba(9,22,48,0.88) 100%); }
.hero-services {
  position: relative; z-index: 2;
  list-style: none; margin: 4rem auto 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, auto); gap: 0.5rem 0;
  max-width: 900px;
}
.hero-services li { padding: 0; border-right: 1px solid rgba(255,255,255,0.45); }
.hero-services li:nth-child(3n) { border-right: 0; }
.hero-services a {
  color: var(--white); text-decoration: none; font-size: 1.35rem; font-weight: 500; white-space: nowrap;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1.1rem 2rem; transition: color 0.15s ease;
}
.hero-services a:hover { color: var(--orange); }
.hero-services svg { width: 44px; height: 44px; stroke-width: 1.75; }

/* Mountain silhouettes (CSS only) */
.mountains { position: absolute; left: 0; right: 0; bottom: 0; height: 200px; z-index: 1; pointer-events: none; }
.mountains::before, .mountains::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; }
.mountains-blue::before {
  height: 100%;
  background: var(--purple);
  clip-path: polygon(0 70%, 8% 45%, 15% 60%, 24% 30%, 31% 55%, 40% 38%, 48% 62%, 56% 28%, 64% 50%, 72% 35%, 80% 58%, 88% 32%, 95% 52%, 100% 40%, 100% 100%, 0 100%);
  opacity: 0.85;
}
.mountains-blue::after {
  height: 100%;
  background: var(--navy-mid);
  clip-path: polygon(0 100%, 0 80%, 6% 62%, 12% 75%, 20% 52%, 27% 70%, 35% 58%, 44% 78%, 52% 55%, 60% 72%, 68% 48%, 76% 70%, 84% 56%, 92% 74%, 100% 60%, 100% 100%);
}
.mountains-light { height: 260px; z-index: 0; }
.mountains-light::before {
  height: 100%;
  background: #d9d3f0;
  clip-path: polygon(0 80%, 8% 40%, 16% 65%, 25% 25%, 33% 58%, 42% 35%, 50% 62%, 58% 22%, 66% 55%, 74% 32%, 82% 60%, 90% 28%, 100% 55%, 100% 100%, 0 100%);
  opacity: 0.6;
}
.mountains-light::after {
  height: 60%;
  background: #c9c0ea;
  clip-path: polygon(0 100%, 0 70%, 10% 45%, 20% 75%, 30% 40%, 40% 70%, 50% 35%, 60% 72%, 70% 42%, 80% 68%, 90% 38%, 100% 65%, 100% 100%);
  opacity: 0.5;
}

/* Pillars (three service cards on dark blue) */
.pillars { background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%); padding: 3rem 0 2.5rem; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar {
  position: relative; text-decoration: none; text-align: center; color: var(--white);
  padding: 1.5rem 1rem 1.2rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.pillar:last-child { border-right: 0; }
.pillar-icon {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center; position: relative; z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.pillar-icon svg { width: 40px; height: 40px; }
.pillar:hover .pillar-icon { transform: translateY(-4px) scale(1.05); }
.pillar-peak {
  width: 100%; max-width: 260px; height: 90px; margin-top: -28px;
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 60%, var(--purple) 60%);
  clip-path: polygon(0 100%, 18% 55%, 30% 70%, 50% 10%, 66% 60%, 78% 45%, 100% 100%);
}
.pillar-label { margin-top: 0.8rem; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* Intro (dark blue) */
.intro { position: relative; background: var(--navy); color: var(--white); text-align: center; padding: 3rem 0 0; overflow: hidden; }
.intro h2 { color: var(--white); }
.intro .lead { font-weight: 700; color: #F9B08A; }
.intro p { max-width: 900px; margin-inline: auto; }
.intro .container { position: relative; z-index: 1; padding-bottom: 5rem; }
.watermark {
  position: absolute; top: 0.3em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(3rem, 12vw, 9rem);
  color: rgba(255,255,255,0.05); white-space: nowrap; letter-spacing: 0.02em; user-select: none;
}

/* Angled dividers */
.divider { height: 90px; width: 100%; display: block; }
.divider-to-light { background: var(--ice-2); clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.divider-to-navy { background: var(--navy); clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.divider-to-purple { background: var(--purple); clip-path: polygon(0 100%, 50% 0, 100% 100%); }

/* About */
.about { position: relative; background: var(--ice-2); padding: 4rem 0 5rem; overflow: hidden; }
.about .container { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 2rem; align-items: start; margin-top: 1.5rem; }
.about-col h3 { font-size: 1.05rem; color: var(--purple-dark); }
.about-photo {
  min-height: 460px; border-radius: 6px;
  background: url("/assets/img/roofer-on-shingle-roof.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.about-highlight { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.about-highlight span { color: var(--orange); }

/* Process (dark blue) */
.process { background: var(--navy); color: var(--white); padding: 0 0 4rem; }
.process .divider { margin-top: -1px; background: var(--navy); clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.process .container { padding-top: 1rem; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin: 1.5rem 0 2rem; }
.step { display: flex; gap: 1rem; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.step-num { flex: 0 0 64px; background: linear-gradient(180deg, var(--orange), #d9531a); color: var(--white); font-family: var(--font-head); font-size: 2rem; font-weight: 700; display: grid; place-items: center; }
.step-body { padding: 1.1rem 1.2rem 0.8rem 0; }
.step-body h3 { display: flex; align-items: center; gap: 0.5rem; color: var(--navy); font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-body h3 svg { color: var(--purple); }
.step-body p { color: var(--text); font-size: 0.95rem; margin-bottom: 0; }

/* Services (purple) */
.services { position: relative; background: linear-gradient(180deg, var(--purple) 0%, var(--purple-dark) 100%); color: var(--white); padding: 0; overflow: hidden; }
.services .divider { background: var(--purple); margin-top: -1px; }
.services-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3rem; align-items: center; padding: 1rem 0 2rem; }
.services-photo-frame { border: 4px solid var(--white); border-radius: 18px; padding: 16px; }
.services-photo {
  aspect-ratio: 4 / 4.6; border-radius: 10px;
  background: url("/assets/img/crew-reroofing-brick-home.jpg") center / cover no-repeat;
}
.services h2 { color: var(--white); }
h2.bar { border-left: 5px solid var(--orange); padding-left: 1rem; }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.5rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.check-list li a { color: var(--white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 3px; }
.check-list li a:hover { color: #F9B08A; }
.check-list svg { flex: 0 0 auto; margin-top: 0.2rem; color: var(--orange); }
.services-note { text-align: center; font-weight: 500; max-width: 720px; margin: 0 auto; padding-bottom: 2.5rem; position: relative; z-index: 1; }
.skyline {
  height: 120px; background: var(--navy);
  clip-path: polygon(0 100%, 0 55%, 4% 55%, 4% 35%, 7% 25%, 10% 35%, 10% 60%, 15% 60%, 15% 30%, 18% 18%, 21% 30%, 21% 55%, 26% 55%, 26% 40%, 29% 28%, 32% 40%, 32% 62%, 38% 62%, 38% 32%, 41% 20%, 44% 32%, 44% 58%, 50% 58%, 50% 38%, 53% 26%, 56% 38%, 56% 64%, 62% 64%, 62% 30%, 65% 16%, 68% 30%, 68% 56%, 74% 56%, 74% 40%, 77% 28%, 80% 40%, 80% 60%, 86% 60%, 86% 34%, 89% 22%, 92% 34%, 92% 58%, 97% 58%, 97% 45%, 100% 45%, 100% 100%);
}

/* Trust (dark blue w/ photo) */
.trust {
  position: relative; color: var(--white);
  background: url("/assets/img/storm-sky-over-homes.jpg") center / cover no-repeat;
  padding: 4rem 0 0;
}
.trust-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,31,61,0.94), rgba(30,20,70,0.93)); }
.trust-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; padding-bottom: 3rem; }
.trust-grid h2 { margin-bottom: 1.5rem; }
.trust-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 0.8rem; }
.trust-list li { display: flex; gap: 0.75rem; align-items: center; font-size: 1.02rem; }
.trust-list svg { flex: 0 0 auto; width: 28px; height: 28px; color: var(--orange); }
.trust-close { font-weight: 700; font-size: 1.05rem; }
.trust .divider { position: relative; z-index: 1; }

/* Why choose us */
.why { background: var(--ice-2); padding: 3.5rem 0 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 1.5rem 0 3rem; }
.why-card {
  background: linear-gradient(180deg, #d5c9f5 0%, #e9e3fb 45%, var(--white) 100%);
  border-radius: 16px; padding: 1.8rem 1.6rem; box-shadow: var(--shadow);
}
.why-icon { width: 78px; height: 78px; border-radius: 50%; border: 3px solid var(--purple); background: var(--white); color: var(--orange); display: grid; place-items: center; margin-bottom: 1.2rem; }
.why-icon svg { width: 34px; height: 34px; fill: currentColor; stroke: currentColor; }
.why-card h3 { color: var(--navy); font-size: 1.1rem; }
.why-card p { font-size: 0.95rem; margin: 0; color: #222; }

/* Contact */
.contact { position: relative; background: var(--white); padding: 0; overflow: hidden; }
.contact-bar { height: 40px; background: var(--navy); }
.contact .container { position: relative; z-index: 1; padding: 3rem 0 4rem; }
.contact .sub { margin-bottom: 2rem; }
.contact .sub a { font-weight: 700; text-decoration: none; }
/* Partner roofer credentials (inside the form block, so every page gets it) */
.roofer-card { background: var(--ice-2); border: 1px solid var(--ice); border-left: 5px solid var(--orange); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 0 0 2rem; }
.roofer-title { display: flex; align-items: center; gap: 0.55rem; margin: 0 0 0.3rem; font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); }
.roofer-title svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--orange); }
.roofer-note { margin: 0 0 1rem; font-size: 0.95rem; }
.cert-list { list-style: none; padding: 0; margin: 0 0 0.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.cert-list a { display: flex; align-items: center; gap: 0.6rem; height: 100%; padding: 0.7rem 0.8rem; background: var(--white); border: 1px solid #dcd8ee; border-radius: 10px; color: var(--text); text-decoration: none; font-size: 0.8rem; line-height: 1.3; transition: border-color 0.15s ease; }
.cert-list a:hover { border-color: var(--orange); }
.cert-list svg { flex: 0 0 auto; width: 26px; height: 26px; color: var(--purple); }
.cert-list strong { display: block; color: var(--navy); font-size: 0.88rem; }
.cert-fine { margin: 0; font-size: 0.8rem; color: #5b6168; }
.cert-fine a { font-weight: 600; }
@media (max-width: 760px) { .cert-list { grid-template-columns: 1fr 1fr; } }
.lead-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.lead-form label { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.85rem; font-weight: 500; color: var(--text); }
.lead-form input, .lead-form select, .lead-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--navy);
  border: 1px solid #cfc9e6; border-radius: 8px; padding: 0.75rem 0.85rem; background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,63,209,0.2); }
.lead-form textarea { resize: vertical; }
.lead-form .consent { flex-direction: row; align-items: flex-start; gap: 0.6rem; font-size: 0.8rem; font-weight: 400; max-width: 720px; margin-inline: auto; }
.lead-form .consent input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--purple); }
.hp { position: absolute; left: -9999px; }

/* Footer */
.footer { background: var(--ice); color: var(--text); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 2rem; align-items: center; padding: 3rem 0 2.5rem; }
.footer-col h4 { color: var(--navy); }
.footer-col p { font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.25rem; font-size: 0.92rem; }
.footer-links a { color: var(--text); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-brand { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.footer-phone { color: var(--navy); text-decoration: none; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.phone-bubble { width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color: var(--white); display: grid; place-items: center; }
.phone-bubble svg { width: 20px; height: 20px; }
.footer-rule { width: 260px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--purple)); border-radius: 2px; }
.footer-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.footer-badges span { display: inline-flex; align-items: center; gap: 0.35rem; }
.footer-badges svg { color: var(--purple); }
.footer-bottom { background: var(--navy); color: var(--white); text-align: center; padding: 1.2rem 0; font-size: 0.9rem; }
.footer-bottom p { margin: 0.2rem 0; }
.footer-bottom a { color: var(--white); }

/* Sticky mobile call bar */
.sticky-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; }
.sticky-call a { flex: 1; text-align: center; padding: 0.9rem 0.5rem; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.04em; text-decoration: none; color: var(--white); display: inline-flex; justify-content: center; align-items: center; gap: 0.4rem; }
.sticky-call a:first-child { background: var(--orange); }
.sticky-call a:last-child { background: var(--purple); }

/* ============================================================
   Service pages
   ============================================================ */
.svc-hero { position: relative; color: var(--white); min-height: 380px; display: flex; align-items: center; background: var(--navy) center / cover no-repeat; }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,31,61,0.95) 0%, rgba(44,30,90,0.85) 55%, rgba(15,31,61,0.55) 100%); }
.svc-hero .container { position: relative; z-index: 1; padding: 3.5rem 0; }
.svc-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.2vw, 3rem); max-width: 760px; }
.svc-hero p { max-width: 640px; font-size: 1.08rem; margin-bottom: 1.5rem; }
.svc-hero .crumbs { font-size: 0.8rem; margin-bottom: 0.8rem; opacity: 0.85; }
.svc-hero .crumbs a { color: var(--white); text-decoration: none; }
.svc-hero .crumbs a:hover { color: var(--orange); }
.svc-hero .hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.svc-body { padding: 3.5rem 0 3rem; }
.svc-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.svc-main h2 { font-size: 1.7rem; margin-top: 1.6rem; }
.svc-main h2:first-child { margin-top: 0; }
.signs { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.55rem; }
.signs li { display: flex; gap: 0.6rem; align-items: flex-start; }
.signs svg { flex: 0 0 auto; color: var(--orange); margin-top: 0.2rem; }
.svc-steps { counter-reset: s; list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.8rem; }
.svc-steps li { counter-increment: s; display: flex; gap: 0.9rem; align-items: flex-start; }
.svc-steps li::before { content: counter(s); flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--purple); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; display: grid; place-items: center; }
.svc-steps strong { color: var(--navy); display: block; }
.faq { display: grid; gap: 0.6rem; margin: 0 0 1rem; }
.faq details { background: var(--ice-2); border-radius: 10px; padding: 0.9rem 1.1rem; border-left: 4px solid var(--purple); }
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--orange); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0.7rem 0 0; font-size: 0.95rem; }
.svc-side { position: sticky; top: 110px; display: grid; gap: 1.2rem; }
.side-card { background: var(--ice-2); border-radius: 14px; padding: 1.4rem; border-top: 5px solid var(--orange); }
.side-card h3 { color: var(--navy); font-size: 1.1rem; }
.side-card p { font-size: 0.95rem; }
.side-card .btn { width: 100%; text-align: center; margin-top: 0.4rem; }
.side-card.dark { background: var(--navy); color: var(--white); border-top-color: var(--purple); }
.side-card.dark h3 { color: var(--white); }
.side-card .side-phone { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--orange); text-decoration: none; margin: 0.3rem 0 0.8rem; }
.side-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.3rem; }
.side-links a { display: flex; align-items: center; gap: 0.5rem; color: var(--navy); text-decoration: none; font-size: 0.92rem; font-weight: 500; padding: 0.35rem 0; }
.side-links a svg { color: var(--purple); width: 18px; height: 18px; }
.side-links a:hover { color: var(--orange); }
.side-links a.current { color: var(--orange); font-weight: 700; }
.svc-cta { background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%); color: var(--white); padding: 3rem 0; text-align: center; }
.svc-cta h2 { color: var(--white); }
.svc-cta p { max-width: 640px; margin: 0 auto 1.4rem; }

/* Services index */
.svc-index { padding: 3.5rem 0 4rem; background: var(--ice-2); }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.svc-card { background: var(--white); border-radius: 16px; padding: 1.6rem; text-decoration: none; color: var(--text); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.5rem; border-bottom: 5px solid transparent; transition: transform 0.15s ease, border-color 0.15s ease; }
.svc-card:hover { transform: translateY(-4px); border-bottom-color: var(--orange); }
.svc-card .svc-card-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--purple); color: var(--white); display: grid; place-items: center; }
.svc-card .svc-card-icon svg { width: 30px; height: 30px; }
.svc-card h3 { color: var(--navy); margin: 0.4rem 0 0; }
.svc-card p { font-size: 0.93rem; margin: 0; }
.svc-card .more { color: var(--orange); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-top: auto; display: inline-flex; align-items: center; gap: 0.3rem; }

/* Responsive */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 320px; order: -1; }
  .services-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-photo { aspect-ratio: 16 / 10; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-services { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 2rem); max-width: 520px; }
  .hero-services li { border-right: 0; }
  .hero-services a { font-size: 1rem; padding: 0.7rem 0.5rem; white-space: normal; }
  .hero-services svg { width: 32px; height: 32px; flex: 0 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-side { position: static; }
  .svc-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar-inner { justify-content: center; }
  .topbar-area { display: none; }
  .header-right { display: none; }
  .menu-btn { display: inline-flex; }
  .logo img, .logo svg { height: 48px; }
  .hero-title { padding: 2.5rem 1rem 2rem; }
  .hero-photo { min-height: 420px; }
  .hero-services { margin-top: 2rem; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .pillar:last-child { border-bottom: 0; }
  .divider { height: 50px; }
  .sticky-call { display: flex; }
  body { padding-bottom: 56px; }
  .watermark { display: none; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-hero { min-height: 300px; }
}
