/* Tailwind SC — Main Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
:root {
  --teal: #00A99D;
  --teal-dark: #008f84;
  --teal-pale: #e6f7f6;
  --black: #0f0f0f;
  --black-mid: #1a1a1a;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --text: #111111;
  --mid: #555555;
  --light-text: #999999;
  --border: #e2e2e2;
}
body { font-family: Georgia, serif; background: var(--white); color: var(--text); }
a { text-decoration: none; color: inherit; }

/* TOP BAR */
.top-bar {
  background: var(--black); color: rgba(255,255,255,0.6);
  text-align: center; padding: 9px;
  font-family: Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0.3px;
}
.top-bar a { color: var(--teal); font-weight: 600; border-bottom: 1px solid rgba(0,169,157,0.4); transition: color 0.2s; }
.top-bar a:hover { color: white; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  padding: 0 72px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: Arial, sans-serif; font-size: 0.78rem;
  color: rgba(255,255,255,0.55); letter-spacing: 1.2px; text-transform: uppercase;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: white; border-bottom-color: var(--teal); }
.nav-cta {
  background: var(--teal); color: white;
  font-family: Arial, sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 11px 24px; transition: all 0.2s; display: inline-block;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); color: white; }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid; grid-template-columns: 1fr 440px;
  align-items: stretch; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1691680990188-440ac4243306?fm=jpg&q=85&w=1920&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.hero-left {
  position: relative; z-index: 1;
  padding: 88px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.3) 100%);
}
.hero-right {
  position: relative; z-index: 1;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 56px 44px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.hero-kicker {
  font-family: Arial, sans-serif; font-size: 0.72rem;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.hero-kicker::before { content: ''; display: inline-block; width: 36px; height: 1px; background: var(--teal); }
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 24px; color: white;
}
.hero h1 strong { font-weight: 600; color: var(--teal); font-style: italic; }
.hero-body {
  font-family: Arial, sans-serif; font-size: 1rem;
  color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 40px; max-width: 460px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-teal {
  background: var(--teal); color: white;
  padding: 15px 36px; font-family: Arial, sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.5px; transition: all 0.2s; display: inline-block;
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,169,157,0.35); color: white; }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.45); color: white;
  font-family: Arial, sans-serif; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 24px; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.hero-signature { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.sig-name { font-family: Arial, sans-serif; font-weight: 700; font-size: 0.88rem; color: white; }
.sig-role { font-family: Arial, sans-serif; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

/* FORM */
.offer-panel-title {
  color: var(--teal); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; font-family: Arial, sans-serif; font-weight: 700; margin-bottom: 10px;
}
.offer-panel-sub {
  color: rgba(255,255,255,0.65); font-family: Arial, sans-serif;
  font-size: 0.88rem; line-height: 1.65; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 24px;
}
.offer-form .field { margin-bottom: 14px; }
.offer-form label {
  display: block; font-family: Arial, sans-serif; font-size: 0.7rem;
  color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px;
}
.offer-form input, .offer-form textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12); color: white;
  padding: 10px 13px; font-size: 0.88rem; font-family: Arial, sans-serif; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.offer-form input::placeholder, .offer-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.offer-form input:focus, .offer-form textarea:focus { border-color: var(--teal); background: rgba(0,169,157,0.05); }
.offer-form textarea { height: 76px; resize: none; }
.offer-submit {
  width: 100%; background: var(--teal); color: white;
  border: none; padding: 14px; font-family: Arial, sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; margin-top: 6px; transition: all 0.2s;
}
.offer-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.offer-privacy { font-family: Arial, sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.28); text-align: center; margin-top: 10px; }
.form-message { display: none; margin-top: 12px; padding: 12px; font-family: Arial, sans-serif; font-size: 0.85rem; text-align: center; }
.form-message.success { background: rgba(0,169,157,0.15); color: var(--teal); border: 1px solid rgba(0,169,157,0.3); display: block; }
.form-message.error { background: rgba(255,80,80,0.1); color: #ff6b6b; border: 1px solid rgba(255,80,80,0.2); display: block; }

/* TRUST BAR */
.trust-bar { background: var(--teal); display: flex; align-items: stretch; }
.trust-item { flex: 1; text-align: center; padding: 22px 16px; border-right: 1px solid rgba(255,255,255,0.18); }
.trust-item:last-child { border-right: none; }
.trust-num { font-family: Georgia, serif; font-size: 1.9rem; color: white; display: block; line-height: 1; }
.trust-label { font-family: Arial, sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* ABOUT */
.about-strip {
  background: var(--white); padding: 80px 72px;
  display: grid; grid-template-columns: 260px 1fr 240px; gap: 64px; align-items: center;
}
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.about-photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--teal); padding: 10px 14px;
  font-family: Arial, sans-serif; font-size: 0.72rem; font-weight: 700;
  color: white; text-align: center; letter-spacing: 0.5px; text-transform: uppercase;
}
.about-strip-kicker { font-family: Arial, sans-serif; font-size: 0.7rem; color: var(--light-text); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.about-strip-text h2 { font-size: 1.9rem; font-weight: 400; color: var(--black); margin-bottom: 18px; line-height: 1.3; }
.about-strip-text p { font-family: Arial, sans-serif; font-size: 0.92rem; color: var(--mid); line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { text-align: center; padding: 22px 16px; background: var(--teal-pale); border: 1px solid rgba(0,169,157,0.12); transition: transform 0.2s; }
.stat:hover { transform: translateY(-3px); }
.stat-n { font-size: 2rem; color: var(--teal); line-height: 1; }
.stat-l { font-family: Arial, sans-serif; font-size: 0.7rem; color: var(--light-text); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* HOW IT WORKS */
.how { background: var(--off-white); padding: 88px 72px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-kicker { font-family: Arial, sans-serif; font-size: 0.7rem; color: var(--light-text); letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: 2.1rem; font-weight: 400; color: var(--black); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; gap: 16px; }
.timeline::before { content: ''; position: absolute; top: 35px; left: 16.66%; right: 16.66%; height: 1px; background: var(--border); }
.t-step {
  text-align: center; padding: 40px 28px 36px;
  background: var(--white); border: 1px solid var(--border);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  cursor: default;
}
.t-step:hover { transform: translateY(-10px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.t-circle {
  width: 70px; height: 70px; background: var(--teal-pale); border: 2px solid var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-size: 1.4rem; position: relative; z-index: 1;
}
.t-num {
  position: absolute; top: -7px; right: -7px;
  width: 22px; height: 22px; background: var(--black); color: white;
  border-radius: 50%; font-family: Arial, sans-serif; font-size: 0.68rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.t-step h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 12px; font-weight: 400; }
.t-step p { font-family: Arial, sans-serif; font-size: 0.86rem; color: var(--mid); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials { background: var(--black-mid); padding: 88px 72px; }
.test-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.test-header .section-kicker { color: var(--teal); }
.test-header h2 { font-size: 2rem; font-weight: 400; color: white; }
.test-header a { font-family: Arial, sans-serif; font-size: 0.82rem; color: var(--teal); border-bottom: 1px solid rgba(0,169,157,0.3); padding-bottom: 2px; transition: border-color 0.2s; }
.test-header a:hover { border-bottom-color: var(--teal); color: var(--teal); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard { border: 1px solid rgba(255,255,255,0.07); padding: 32px; background: rgba(255,255,255,0.03); transition: background 0.2s, transform 0.2s; }
.tcard:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }
.tcard-stars { color: var(--teal); font-size: 0.82rem; margin-bottom: 14px; letter-spacing: 2px; }
.tcard-quote { font-size: 2.5rem; color: var(--teal); line-height: 0.4; margin-bottom: 18px; opacity: 0.7; }
.tcard p { font-family: Arial, sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 20px; }
.tcard-author { font-family: Arial, sans-serif; font-size: 0.78rem; color: var(--teal); letter-spacing: 0.5px; }

/* SERVICE AREAS */
.areas { background: var(--white); padding: 88px 72px; }
.areas .section-header { text-align: left; margin-bottom: 0; }
.areas-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 40px; }
.area-item { display: block; background: var(--white); padding: 26px 22px; border-left: 2px solid transparent; transition: all 0.18s; color: var(--text); }
.area-item:hover { background: var(--teal-pale); border-left-color: var(--teal); }
.area-item h3 { font-size: 0.98rem; font-weight: 400; color: var(--black); margin-bottom: 3px; }
.area-item p { font-family: Arial, sans-serif; font-size: 0.76rem; color: var(--light-text); }
.area-arrow { color: var(--teal); margin-left: 4px; }

/* CTA */
.cta-section {
  background: var(--teal); padding: 88px 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap;
}
.cta-section h2 { font-size: 2rem; font-weight: 400; color: white; max-width: 500px; line-height: 1.3; }
.cta-section p { font-family: Arial, sans-serif; color: rgba(255,255,255,0.72); margin-top: 10px; font-size: 0.95rem; }
.cta-actions { display: flex; flex-direction: column; gap: 18px; align-items: flex-end; }
.btn-white-solid {
  background: white; color: var(--teal);
  padding: 17px 44px; font-family: Arial, sans-serif; font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; transition: all 0.2s; display: inline-block;
}
.btn-white-solid:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--teal); }
.phone-link { font-family: Arial, sans-serif; font-size: 1.25rem; font-weight: 700; color: white; }
.phone-sub { font-family: Arial, sans-serif; font-size: 0.76rem; color: rgba(255,255,255,0.55); text-align: right; }

/* FOOTER */
.site-footer {
  background: var(--black); padding: 72px 72px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px;
  border-top: 3px solid var(--teal);
}
.foot-logo { margin-bottom: 20px; }
.foot-logo img { height: 38px; width: auto; display: block; }
.foot-desc { font-family: Arial, sans-serif; font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.8; }
.foot-col h4 { font-family: Arial, sans-serif; font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; opacity: 0.8; }
.foot-col a { display: block; font-family: Arial, sans-serif; font-size: 0.84rem; color: rgba(255,255,255,0.35); margin-bottom: 10px; transition: color 0.18s; }
.foot-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  background: #000; padding: 18px 72px;
  display: flex; justify-content: space-between;
  font-family: Arial, sans-serif; font-size: 0.76rem; color: rgba(255,255,255,0.2);
}

/* INNER PAGES */
.inner-page { padding: 72px; max-width: 1100px; margin: 0 auto; }
.inner-page h1 { font-size: 2.4rem; font-weight: 400; margin-bottom: 24px; color: var(--black); }
.inner-page .entry-content { font-family: Arial, sans-serif; font-size: 0.95rem; color: var(--mid); line-height: 1.8; }
.inner-page .entry-content p { margin-bottom: 1.2em; }
.inner-page .entry-content h2 { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 400; margin: 2em 0 0.8em; color: var(--black); }
.inner-page .entry-content h3 { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 400; margin: 1.5em 0 0.6em; color: var(--black); }
.inner-page .entry-content ul, .inner-page .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.inner-page .entry-content li { margin-bottom: 0.5em; }
.inner-page .entry-content a { color: var(--teal); border-bottom: 1px solid rgba(0,169,157,0.3); }
.inner-page .entry-content a:hover { border-bottom-color: var(--teal); }

/* Elementor compatibility */
.elementor-page .inner-page { padding: 0; max-width: none; }

/* ── INNER PAGE HERO ── */
.page-hero { position: relative; padding: 80px 72px; overflow: hidden; min-height: 320px; display: flex; align-items: center; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-kicker { font-family: Arial,sans-serif; font-size: 0.72rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.page-kicker::before { content: ''; display: inline-block; width: 36px; height: 1px; background: var(--teal); }
.page-hero h1 { font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 400; color: white; line-height: 1.2; margin-bottom: 16px; }
.page-hero p { font-family: Arial,sans-serif; font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; }

/* ── SHARED SECTIONS ── */
.section { padding: 80px 72px; }
.section.gray { background: var(--off-white); }
.section-kicker { font-family: Arial,sans-serif; font-size: 0.7rem; color: var(--light-text); letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 14px; }
.section-title { font-size: 2rem; font-weight: 400; color: var(--text); margin-bottom: 16px; }
.btn-outline { border: 1px solid var(--teal); color: var(--teal); padding: 13px 32px; font-family: Arial,sans-serif; font-size: 0.88rem; display: inline-block; transition: all .2s; }
.btn-outline:hover { background: var(--teal); color: white; }
.cta-banner { background: var(--teal); padding: 64px 72px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 1.8rem; font-weight: 400; color: white; line-height: 1.3; }
.cta-banner p { font-family: Arial,sans-serif; color: rgba(255,255,255,0.72); margin-top: 8px; font-size: 0.9rem; }
.cta-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.phone-cta { font-family: Arial,sans-serif; font-size: 1.1rem; font-weight: 700; color: white; }

/* ── ABOUT PAGE ── */
.bio-grid { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.bio-photo { position: relative; }
.bio-photo img { width: 100%; display: block; }
.bio-photo-badge { position: absolute; bottom: 0; left: 0; right: 0; background: var(--teal); padding: 12px 16px; font-family: Arial,sans-serif; font-size: 0.75rem; font-weight: 700; color: white; text-align: center; letter-spacing: 0.5px; text-transform: uppercase; }
.bio-text h2 { font-size: 2rem; font-weight: 400; margin-bottom: 24px; line-height: 1.2; }
.bio-text p { font-family: Arial,sans-serif; font-size: 0.95rem; color: var(--mid); line-height: 1.85; margin-bottom: 18px; }
.stats-bar { background: var(--black); display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 3rem; color: var(--teal); display: block; line-height: 1; }
.stat-label { font-family: Arial,sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.value-card { background: white; padding: 36px 32px; border-top: 3px solid transparent; transition: border-color .2s, transform .2s; }
.value-card:hover { border-top-color: var(--teal); transform: translateY(-4px); }
.value-icon { font-size: 1.8rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; font-weight: 400; margin-bottom: 10px; }
.value-card p { font-family: Arial,sans-serif; font-size: 0.86rem; color: var(--mid); line-height: 1.65; }

/* ── PROCESS PAGE ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.step-card { background: white; padding: 48px 36px; border-top: 4px solid transparent; transition: border-color .2s, transform .25s cubic-bezier(0.34,1.56,0.64,1); }
.step-card:hover { border-top-color: var(--teal); transform: translateY(-8px); }
.step-num { font-size: 3.5rem; color: rgba(0,169,157,0.15); font-weight: 400; line-height: 1; margin-bottom: 16px; }
.step-card h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: 12px; }
.step-card p { font-family: Arial,sans-serif; font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.step-detail { font-family: Arial,sans-serif; font-size: 0.8rem; color: var(--teal); }
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { padding: 14px 24px; font-family: Arial,sans-serif; font-size: 0.8rem; text-align: left; background: var(--off-white); border-bottom: 2px solid var(--border); }
.compare-table th.hi { background: var(--teal); color: white; }
.compare-table td { padding: 13px 24px; border-bottom: 1px solid var(--border); font-family: Arial,sans-serif; font-size: 0.88rem; color: var(--mid); }
.compare-table td.hi { background: var(--teal-pale); color: var(--teal); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }

/* ── FAQ PAGE ── */
.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 72px; align-items: start; }
.faq-sidebar h3 { font-size: 1.1rem; font-weight: 400; margin-bottom: 20px; }
.faq-sidebar ul { list-style: none; }
.faq-sidebar li a { display: block; font-family: Arial,sans-serif; font-size: 0.85rem; color: var(--mid); padding: 10px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.faq-sidebar li a:hover { color: var(--teal); }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-q { font-size: 1.05rem; font-weight: 400; margin-bottom: 12px; color: var(--black); display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; color: var(--teal); font-size: 1.3rem; font-weight: 300; }
.faq-a { font-family: Arial,sans-serif; font-size: 0.9rem; color: var(--mid); line-height: 1.8; }
.faq-section-title { font-family: Arial,sans-serif; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 24px; padding-top: 8px; }

/* ── SERVICES PAGE ── */
.situations-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.situation-card { background: white; padding: 36px 32px; transition: background .2s; }
.situation-card:hover { background: var(--teal-pale); }
.situation-icon { font-size: 1.6rem; margin-bottom: 14px; }
.situation-card h3 { font-size: 1rem; font-weight: 400; margin-bottom: 8px; }
.situation-card p { font-family: Arial,sans-serif; font-size: 0.85rem; color: var(--mid); line-height: 1.65; }
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.benefit h4 { font-size: 0.98rem; font-weight: 400; margin-bottom: 5px; }
.benefit p { font-family: Arial,sans-serif; font-size: 0.84rem; color: var(--mid); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.contact-form-wrap { background: var(--black); padding: 48px; }
.form-title { font-size: 1.4rem; font-weight: 400; color: white; margin-bottom: 8px; }
.form-sub { font-family: Arial,sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.c-field { margin-bottom: 16px; }
.c-field label { display: block; font-family: Arial,sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.c-field input, .c-field textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: white; padding: 10px 13px; font-size: 0.88rem; font-family: Arial,sans-serif; outline: none; transition: border-color .2s; }
.c-field input:focus, .c-field textarea:focus { border-color: var(--teal); }
.c-field input::placeholder, .c-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.c-field textarea { height: 100px; resize: none; }
.c-submit { width: 100%; background: var(--teal); color: white; border: none; padding: 14px; font-family: Arial,sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.c-submit:hover { background: var(--teal-dark); }
.contact-info h2 { font-size: 2rem; font-weight: 400; margin-bottom: 20px; line-height: 1.2; }
.contact-info p { font-family: Arial,sans-serif; font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--teal-pale); border: 1px solid rgba(0,169,157,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text h4 { font-size: 0.85rem; font-weight: 400; margin-bottom: 3px; }
.contact-item-text p { font-family: Arial,sans-serif; font-size: 0.88rem; color: var(--mid); }
.map-placeholder { background: var(--off-white); border: 1px solid var(--border); height: 260px; display: flex; align-items: center; justify-content: center; margin-top: 40px; font-family: Arial,sans-serif; font-size: 0.85rem; color: var(--light-text); }

/* ── BLOG LISTING ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--off-white); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 28px; }
.post-tag { font-family: Arial,sans-serif; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.post-body h2 { font-size: 1.1rem; font-weight: 400; margin-bottom: 10px; line-height: 1.4; }
.post-body h2 a { color: var(--black); transition: color .2s; }
.post-body h2 a:hover { color: var(--teal); }
.post-body p { font-family: Arial,sans-serif; font-size: 0.84rem; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.post-meta { font-family: Arial,sans-serif; font-size: 0.75rem; color: var(--light-text); display: flex; gap: 16px; }

/* ── BLOG SINGLE ── */
.back-link { font-family: Arial,sans-serif; font-size: 0.82rem; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 32px; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 72px; align-items: start; }
.post-article h1 { font-size: 2.2rem; font-weight: 400; margin-bottom: 16px; line-height: 1.25; }
.post-meta-bar { display: flex; gap: 24px; font-family: Arial,sans-serif; font-size: 0.8rem; color: var(--light-text); margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.post-content p { font-family: Arial,sans-serif; font-size: 0.93rem; color: var(--mid); line-height: 1.85; margin-bottom: 1.2em; }
.post-content h2 { font-size: 1.4rem; font-weight: 400; margin: 2em 0 0.8em; color: var(--black); }
.post-content h3 { font-size: 1.1rem; font-weight: 400; margin: 1.5em 0 0.6em; color: var(--black); }
.post-content ul, .post-content ol { padding-left: 1.4em; margin-bottom: 1.2em; font-family: Arial,sans-serif; font-size: 0.93rem; color: var(--mid); line-height: 1.85; }
.post-sidebar { position: sticky; top: 88px; }
.sidebar-cta { background: var(--black); padding: 36px; }
.sidebar-cta h3 { font-size: 1.05rem; font-weight: 400; color: white; margin-bottom: 10px; line-height: 1.4; }
.sidebar-cta p { font-family: Arial,sans-serif; font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta a { display: block; background: var(--teal); color: white; padding: 12px; font-family: Arial,sans-serif; font-size: 0.85rem; font-weight: 700; text-align: center; transition: background .2s; }
.sidebar-cta a:hover { background: var(--teal-dark); }
.sidebar-phone { font-family: Arial,sans-serif; font-size: 1rem; font-weight: 700; color: white; text-align: center; margin-top: 12px; }
.author-box { border: 1px solid var(--border); padding: 28px; display: flex; gap: 20px; align-items: flex-start; margin-top: 48px; }
.author-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.author-box h4 { font-size: 0.95rem; font-weight: 400; margin-bottom: 4px; }
.author-box p { font-family: Arial,sans-serif; font-size: 0.83rem; color: var(--mid); line-height: 1.65; }

/* ── CITY PAGE ── */
.city-hero { position: relative; padding: 80px 72px; overflow: hidden; min-height: 400px; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }
.city-hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1691680990188-440ac4243306?fm=jpg&q=85&w=1920&auto=format&fit=crop'); background-size: cover; background-position: center; }
.city-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.68); }
.city-hero-left { position: relative; z-index: 1; }
.city-hero-left h1 { font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 400; color: white; line-height: 1.2; margin-bottom: 20px; }
.city-hero-left h1 strong { color: var(--teal); font-style: italic; font-weight: 600; }
.city-hero-left p { font-family: Arial,sans-serif; font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 440px; margin-bottom: 32px; }
.city-hero-form { position: relative; z-index: 1; background: rgba(10,10,10,0.88); backdrop-filter: blur(4px); padding: 40px 36px; border: 1px solid rgba(255,255,255,0.07); }
.cf { margin-bottom: 12px; }
.cf label { display: block; font-family: Arial,sans-serif; font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.cf input, .cf textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: white; padding: 9px 12px; font-size: 0.86rem; font-family: Arial,sans-serif; outline: none; }
.cf input:focus, .cf textarea:focus { border-color: var(--teal); }
.cf input::placeholder, .cf textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf textarea { height: 70px; resize: none; }
.cf-submit { width: 100%; background: var(--teal); color: white; border: none; padding: 13px; font-family: Arial,sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.cf-submit:hover { background: var(--teal-dark); }
.city-why { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
.why-card { background: white; padding: 36px 30px; border-top: 3px solid transparent; transition: border-color .2s, transform .2s; }
.why-card:hover { border-top-color: var(--teal); transform: translateY(-4px); }
.why-card h3 { font-size: 1rem; font-weight: 400; margin-bottom: 10px; }
.why-card p { font-family: Arial,sans-serif; font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* btn-white alias */
.btn-white { background: white; color: var(--teal); padding: 14px 34px; font-family: Arial,sans-serif; font-weight: 700; font-size: 0.88rem; display: inline-block; transition: all .2s; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); color: var(--teal); }

/* ══════════════════════════════════════════════
   PAGE HERO — IMPROVED
══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 480px;         /* was 320px */
  padding: 96px 72px 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Teal accent bar at the bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  z-index: 3;
}
/* Larger hero headline */
.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero p {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 0;
}
/* Inline CTA inside the hero */
.ph-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
  transition: all .2s;
}
.ph-cta:hover { background: var(--teal-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,169,157,0.4); }

/* ── Per-page overlay variants ── */
/* About: diagonal teal hint */
.page-hero--about .page-hero-overlay {
  background: linear-gradient(140deg, rgba(0,0,0,0.88) 0%, rgba(0,100,96,0.35) 100%);
}
/* Process: strong left-to-right fade */
.page-hero--process .page-hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 100%);
}
/* Services: dark to mid */
.page-hero--services .page-hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.9) 100%);
}
/* FAQ: near-solid dark for readability */
.page-hero--faq .page-hero-overlay {
  background: rgba(8,12,18,0.84);
}
/* Contact: teal-side accent */
.page-hero--contact .page-hero-overlay {
  background: linear-gradient(to right, rgba(0,169,157,0.22) 0%, rgba(0,0,0,0.9) 60%);
}

/* ── Decorative corner number (process + faq) ── */
.page-hero-deco {
  position: absolute;
  right: 72px;
  bottom: 24px;
  font-size: clamp(7rem, 14vw, 13rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  font-family: Georgia, serif;
}

/* ══════════════════════════════════════════════
   SECTION HEADER — TEAL UNDERLINE ACCENT
══════════════════════════════════════════════ */
.section-header::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--teal);
  margin: 20px auto 0;
}
/* Left-aligned variant */
.section-header.left-align { text-align: left; }
.section-header.left-align::after { margin-left: 0; }

/* ══════════════════════════════════════════════
   SCROLL-REVEAL  (JS sets opacity/transform
   inline; these classes are hooks only)
══════════════════════════════════════════════ */
/* Prevent layout shift before JS loads */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .page-hero { padding: 72px 28px 64px; min-height: 380px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero-deco { display: none; }
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 64px 28px; }
  .about-strip { grid-template-columns: 1fr; padding: 56px 28px; }
  .how { padding: 64px 28px; }
  .timeline { grid-template-columns: 1fr; }
  .testimonials { padding: 64px 28px; }
  .testi-grid { grid-template-columns: 1fr; }
  .areas { padding: 64px 28px; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 64px 28px; flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: flex-start; }
  .site-footer { grid-template-columns: 1fr; padding: 56px 28px; gap: 36px; }
  .footer-bottom { padding: 18px 28px; flex-direction: column; gap: 8px; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid, .values-grid, .situations-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 28px; }
  .cta-banner { padding: 48px 28px; flex-direction: column; }
}
