@charset "UTF-8";

:root {
  --navy-950: #061625;
  --navy-900: #071b2f;
  --navy-800: #0b2b46;
  --teal-700: #007d78;
  --teal-600: #009a91;
  --teal-500: #11b8a9;
  --gold-500: #f3b33d;
  --gold-400: #ffc65a;
  --site-bg: #f7faf9;
  --site-surface: #ffffff;
  --site-surface-alt: #edf5f2;
  --site-text: #102331;
  --site-muted: #566773;
  --site-border: #d6e2df;
  --site-primary: #007d78;
  --site-primary-strong: #00645f;
  --site-focus: #f3b33d;
  --shadow-sm: 0 8px 28px rgba(6, 31, 49, .09);
  --shadow-lg: 0 24px 70px rgba(4, 23, 37, .17);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --site-bg: #07131e;
  --site-surface: #0c2131;
  --site-surface-alt: #102a3b;
  --site-text: #f4f8f7;
  --site-muted: #b7c7ca;
  --site-border: #244155;
  --site-primary: #33c7ba;
  --site-primary-strong: #60d7cb;
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, .25);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, .38);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: hidden; background: var(--site-bg); color: var(--site-text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--site-primary); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--site-primary-strong); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--site-focus); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0 0 .65em; font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif; font-weight: 800; line-height: 1.08; letter-spacing: -.03em; text-wrap: balance; }
h1 { font-size: clamp(2.55rem, 11vw, 4.9rem); }
h2 { font-size: clamp(2rem, 8vw, 3.45rem); }
h3 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
p { margin: 0 0 1.2em; }
ul, ol { margin: 0 0 1.4em; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(64px, 12vw, 120px); }
.section--surface { background: var(--site-surface-alt); }
.section--navy { background: var(--navy-900); color: #f4f8f7; }
.section-center { margin: 34px 0 0; text-align: center; }
.eyebrow { margin: 0 0 15px; color: var(--teal-600); font-size: .75rem; font-weight: 800; letter-spacing: .15em; line-height: 1.25; text-transform: uppercase; }
.section--navy .eyebrow, .hero .eyebrow, .cta-band .eyebrow, .container-feature__card .eyebrow { color: var(--gold-400); }
.section-heading { max-width: 780px; margin-bottom: clamp(34px, 7vw, 62px); }
.section-heading > :last-child { margin-bottom: 0; }
.section-heading--split { display: grid; gap: 18px; max-width: none; }
.section-heading--split > p { max-width: 550px; color: var(--site-muted); }
.section--navy .section-heading--split > p { color: #bfd0d6; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 21px; border: 2px solid var(--site-primary); border-radius: 999px; background: var(--site-primary); color: #fff; font-size: .92rem; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover { border-color: var(--site-primary-strong); background: var(--site-primary-strong); color: #fff; box-shadow: 0 10px 25px rgba(0, 125, 120, .24); transform: translateY(-1px); }
.button--small { min-height: 43px; padding: 9px 17px; font-size: .82rem; }
.button--outline { background: transparent; color: var(--site-primary); }
.button--outline:hover { color: #fff; }
.button--ghost { border-color: rgba(255,255,255,.65); background: rgba(7,27,47,.32); color: #fff; backdrop-filter: blur(8px); }
.button--ghost:hover { border-color: #fff; background: #fff; color: var(--navy-900); }
.button--light { border-color: #fff; background: #fff; color: var(--navy-900); }
.button--light:hover { border-color: var(--gold-400); background: var(--gold-400); color: var(--navy-900); }
.text-link { display: inline-flex; align-items: center; color: var(--site-primary); font-weight: 800; text-decoration: none; }
.text-link--light { color: #fff; text-decoration: underline; }
.text-link--light:hover { color: var(--gold-400); }
.card-link { display: block; margin-top: auto; color: var(--site-primary); font-size: .87rem; font-weight: 800; }

.skip-link { position: fixed; z-index: 1000000; top: 10px; left: 10px; padding: 12px 18px; border-radius: 6px; background: #fff; color: #071b2f; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 1000; top: 0; border-bottom: 1px solid rgba(214,226,223,.8); background: color-mix(in srgb, var(--site-surface) 94%, transparent); box-shadow: 0 4px 22px rgba(4, 23, 37, .06); color: var(--site-text); backdrop-filter: blur(14px); }
.header-strip { display: none; background: var(--navy-950); color: #d8e6e7; font-size: .72rem; }
.header-strip__inner { display: flex; min-height: 30px; align-items: center; justify-content: space-between; }
.header-strip a { color: #fff; font-weight: 800; text-decoration: none; }
.header-main { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 12px; transition: min-height .2s ease; }
.site-header.is-scrolled .header-main { min-height: 64px; }
.brand { display: inline-flex; min-width: 0; align-items: center; gap: 9px; color: var(--site-text); text-decoration: none; }
.brand:hover { color: var(--site-text); }
.brand__mark { width: 40px; height: 40px; flex: 0 0 40px; overflow: visible; }
.brand__shield { fill: var(--navy-900); }
.brand__roof { fill: var(--teal-500); }
.brand__foam { fill: #fff; }
.brand__spark { fill: var(--gold-400); }
.brand__copy { display: flex; min-width: 0; flex-direction: column; line-height: 1; }
.brand__copy strong { white-space: nowrap; font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif; font-size: 1.14rem; letter-spacing: -.035em; text-transform: uppercase; }
.brand__copy em { color: var(--teal-600); font-style: normal; }
.brand__copy small { margin-top: 4px; color: var(--site-muted); font-size: .55rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: none; }
.header-actions { display: flex; align-items: center; gap: 7px; }
.theme-toggle, .menu-toggle, .ia-language-switcher a.gt_switcher-popup, .ia-language-fallback { display: inline-grid !important; width: 42px; min-height: 42px; padding: 0; place-items: center; border: 1px solid var(--site-border); border-radius: 10px; background: var(--site-surface); color: var(--site-text); cursor: pointer; }
.theme-toggle { font-size: 1.4rem; line-height: 1; }
.theme-toggle:hover, .menu-toggle:hover { border-color: var(--site-primary); color: var(--site-primary); }
.menu-toggle { gap: 4px; align-content: center; }
.menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.header-estimate { display: none; }
.mobile-menu { position: absolute; z-index: 999; top: 100%; right: 0; left: 0; min-height: calc(100vh - 72px); max-height: calc(100vh - 72px); overflow-y: auto; border-top: 1px solid var(--site-border); background: var(--site-surface); color: var(--site-text); box-shadow: 0 24px 45px rgba(4, 23, 37, .2); }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; padding: 20px 16px 8px; }
.mobile-menu nav a { padding: 13px 6px; border-bottom: 1px solid var(--site-border); color: var(--site-text); font-weight: 750; text-decoration: none; }
.mobile-menu__actions { display: grid; gap: 10px; padding: 18px 16px 40px; }

.ia-language-switcher .gtranslate_wrapper, .ia-language-switcher .gt_switcher, .ia-language-switcher .gt_switcher_wrapper { position: relative !important; inset: auto !important; display: inline-flex; min-height: 42px; align-items: center; }
.ia-language-switcher a.gt_switcher-popup > span { display: none !important; }
.ia-language-switcher a.gt_switcher-popup img { width: 22px !important; height: 15px !important; margin: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 2px !important; background: #fff !important; object-fit: contain !important; }
body .gt_white_content { position: fixed !important; z-index: 999999 !important; top: 50% !important; right: auto !important; bottom: auto !important; left: 50% !important; width: min(560px, calc(100vw - 32px)) !important; max-height: calc(100vh - 48px) !important; height: auto !important; margin: 0 !important; overflow: auto !important; border-radius: 16px !important; transform: translate(-50%, -50%) !important; }
body .gt_black_overlay { z-index: 999998 !important; background-color: rgba(8, 18, 32, .52) !important; }

.hero { position: relative; min-height: min(820px, calc(100svh - 72px)); display: grid; align-items: end; overflow: hidden; background: var(--navy-950); color: #fff; }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero__overlay { background: linear-gradient(180deg, rgba(4,17,29,.14) 0%, rgba(4,17,29,.48) 45%, rgba(4,17,29,.96) 100%); }
.hero__content { position: relative; z-index: 1; padding-block: 72px 42px; }
.hero h1 { max-width: 750px; font-size: clamp(2.65rem, 12vw, 5.4rem); }
.hero__lead { max-width: 650px; color: #d9e5e6; font-size: clamp(1.04rem, 4.5vw, 1.3rem); line-height: 1.55; }
.hero__actions { display: grid; gap: 11px; margin-top: 27px; }
.hero__actions .text-link { justify-content: center; min-height: 42px; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 34px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.24); list-style: none; }
.hero__trust li { color: #c6d6da; font-size: .71rem; line-height: 1.35; }
.hero__trust strong { display: block; color: #fff; font-size: .78rem; }
.trust-bar { background: var(--teal-700); color: #fff; }
.trust-bar__grid { display: grid; grid-template-columns: 1fr 1fr; }
.trust-bar__grid > * { display: grid; min-height: 56px; padding: 9px; place-items: center; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); color: #fff; font-size: .73rem; font-weight: 800; text-align: center; text-decoration: none; }

.card-grid { display: grid; gap: 15px; }
.service-card { position: relative; display: flex; min-height: 270px; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid var(--site-border); border-radius: var(--radius-md); background: var(--site-surface); color: var(--site-text); box-shadow: var(--shadow-sm); text-decoration: none; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.service-card:hover { border-color: var(--site-primary); color: var(--site-text); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__number { margin-bottom: 46px; color: var(--teal-600); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--site-muted); font-size: .94rem; }
.service-card--featured { background: var(--navy-900); color: #fff; }
.service-card--featured:hover { color: #fff; }
.service-card--featured p { color: #bfcfd5; }
.service-card--featured .card-link, .service-card--featured .service-card__number { color: var(--gold-400); }

.cta-band { padding-block: 56px; background: var(--teal-700); color: #fff; }
.cta-band__inner { display: grid; gap: 24px; align-items: center; }
.cta-band h2 { font-size: clamp(1.9rem, 8vw, 3.1rem); }
.cta-band p:last-child { margin-bottom: 0; color: #d7efed; }

.split-feature { display: grid; gap: 32px; align-items: center; }
.split-feature__copy > p:not(.eyebrow) { color: var(--site-muted); font-size: 1.05rem; }
.comparison-mini { overflow: hidden; border: 1px solid var(--site-border); border-radius: var(--radius-md); background: var(--site-surface); box-shadow: var(--shadow-lg); }
.comparison-mini > div { display: grid; gap: 8px; padding: 27px; }
.comparison-mini > div + div { border-top: 1px solid var(--site-border); }
.comparison-mini span { color: var(--teal-600); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.comparison-mini strong { font-size: 1.3rem; }
.comparison-mini small { color: var(--site-muted); font-size: .9rem; }

.feature-grid { display: grid; gap: 34px; align-items: center; }
.feature-visual { position: relative; min-height: 380px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(5,25,42,.25), rgba(5,25,42,.88)), url('../images/south-florida-spray-foam-technician.webp') 63% center / cover; box-shadow: var(--shadow-lg); }
.feature-visual span { position: absolute; right: 22px; bottom: 22px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--navy-900); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.check-list { display: grid; gap: 11px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 900; }

.container-feature { position: relative; min-height: 720px; display: grid; align-items: end; padding-bottom: 32px; overflow: hidden; background: var(--navy-950); }
.container-feature__media { position: absolute; inset: 0; }
.container-feature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,17,29,.1), rgba(4,17,29,.88)); }
.container-feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.container-feature__inner { position: relative; z-index: 1; }
.container-feature__card { max-width: 660px; padding: 29px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); background: rgba(7,27,47,.9); color: #fff; box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.container-feature__card > p:not(.eyebrow) { color: #d4e0e3; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.tag-row span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #e4eeee; font-size: .71rem; font-weight: 750; }

.dual-cards { display: grid; gap: 16px; }
.dual-cards article { padding: 30px; border: 1px solid var(--site-border); border-radius: var(--radius-md); background: var(--site-surface); box-shadow: var(--shadow-sm); }
.dual-cards__icon { display: grid; width: 52px; height: 52px; margin-bottom: 40px; place-items: center; border-radius: 14px; background: var(--site-surface-alt); color: var(--teal-600); font-size: 1.7rem; }
.dual-cards p { color: var(--site-muted); }

.fact-grid { display: grid; gap: 14px; }
.fact-grid article { padding: 24px; border: 1px solid #28465a; border-radius: var(--radius-sm); background: #0d2739; }
.fact-grid strong { color: var(--gold-400); font-size: .75rem; letter-spacing: .12em; }
.fact-grid h3 { margin-top: 26px; font-size: 1.2rem; }
.fact-grid p { margin: 0; color: #b8c9cf; font-size: .9rem; }
.why-grid { display: grid; gap: 34px; }
.why-grid > div:first-child > p:not(.eyebrow) { color: var(--site-muted); font-size: 1.04rem; }
.why-list { border-top: 1px solid var(--site-border); }
.why-list article { display: grid; grid-template-columns: 43px 1fr; gap: 8px; padding-block: 22px; border-bottom: 1px solid var(--site-border); }
.why-list article > span { color: var(--teal-600); font-size: .72rem; font-weight: 900; }
.why-list h3 { margin-bottom: 7px; font-size: 1.18rem; }
.why-list p { margin: 0; color: var(--site-muted); font-size: .91rem; }

.area-grid { display: grid; gap: 15px; }
.area-grid a { position: relative; display: flex; min-height: 220px; flex-direction: column; justify-content: flex-end; padding: 25px; overflow: hidden; border-radius: var(--radius-md); background: linear-gradient(145deg, var(--navy-800), var(--teal-700)); color: #fff; box-shadow: var(--shadow-sm); text-decoration: none; }
.area-grid a::after { content: "↗"; position: absolute; top: 20px; right: 20px; font-size: 1.4rem; transition: transform .18s ease; }
.area-grid a:hover::after { transform: translate(3px, -3px); }
.area-grid a:nth-child(2) { background: linear-gradient(145deg, #0a304a, #0b6470); }
.area-grid a:nth-child(3) { background: linear-gradient(145deg, #0d4663, #007d78); }
.area-grid span { margin-bottom: 8px; color: var(--gold-400); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.area-grid strong { font-size: 1.18rem; }

.process-list { display: grid; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 15px; padding-block: 24px; border-top: 1px solid var(--site-border); }
.process-list li > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--gold-400); font-weight: 900; }
.process-list h3 { margin-bottom: 7px; font-size: 1.18rem; }
.process-list p { margin: 0; color: var(--site-muted); }

.faq-grid { display: grid; gap: 38px; }
.faq-grid > div:first-child > p:not(.eyebrow) { color: #bfcfd5; }
.accordion { border-top: 1px solid rgba(127,157,171,.42); }
.accordion details { border-bottom: 1px solid rgba(127,157,171,.42); }
.accordion summary { position: relative; padding: 21px 40px 21px 0; cursor: pointer; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 18px; right: 3px; font-size: 1.6rem; font-weight: 400; line-height: 1; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 0 22px; color: inherit; opacity: .82; }

.estimate-grid { display: grid; gap: 30px; align-items: start; }
.estimate-copy > p:not(.eyebrow) { color: var(--site-muted); font-size: 1.05rem; }
.contact-options { display: grid; gap: 1px; margin-top: 30px; padding: 0; overflow: hidden; border: 1px solid var(--site-border); border-radius: var(--radius-sm); background: var(--site-border); list-style: none; }
.contact-options li { display: grid; gap: 3px; padding: 16px 18px; background: var(--site-surface); }
.contact-options span { color: var(--site-muted); font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-options a, .contact-options strong { color: var(--site-text); font-weight: 800; text-decoration: none; }

.estimate-form { padding: 24px; border: 1px solid var(--site-border); border-radius: var(--radius-md); background: var(--site-surface); box-shadow: var(--shadow-lg); }
.estimate-form .wpcf7-form { display: grid; gap: 0; }
.form-grid { display: grid; gap: 15px; }
.form-field { display: grid; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--site-text); font-size: .79rem; font-weight: 800; }
.form-field label .optional { color: var(--site-muted); font-size: .72rem; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid var(--site-border); border-radius: 9px; background: var(--site-bg); color: var(--site-text); transition: border-color .18s ease, box-shadow .18s ease; }
.form-field textarea { min-height: 115px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--site-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--site-primary) 19%, transparent); }
.estimate-form .form-consent { margin: 15px 0; color: var(--site-muted); font-size: .76rem; }
.estimate-form .wpcf7-submit { width: 100%; min-height: 52px; border: 0; border-radius: 999px; background: var(--site-primary); color: #fff; font-weight: 850; cursor: pointer; }
.estimate-form .wpcf7-spinner { display: block; margin: 10px auto 0; }
.estimate-form .wpcf7-not-valid-tip { margin-top: 4px; font-size: .78rem; }
.estimate-form .wpcf7-response-output { margin: 14px 0 0 !important; padding: 11px !important; border-radius: 8px; font-size: .85rem; }

.inner-hero { position: relative; overflow: hidden; padding-block: 50px 58px; background: radial-gradient(circle at 92% 15%, rgba(17,184,169,.23), transparent 32%), var(--navy-900); color: #fff; }
.inner-hero__media { position: absolute; inset: 0; opacity: .32; }
.inner-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-950) 8%, rgba(6,22,37,.75) 60%, rgba(6,22,37,.4)); }
.inner-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero__content { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 900px; font-size: clamp(2.4rem, 10vw, 5rem); }
.inner-hero__lead { max-width: 760px; color: #c9dadd; font-size: clamp(1.03rem, 4vw, 1.25rem); }
.inner-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; color: #a9c0c7; font-size: .74rem; }
.breadcrumbs a { color: #d8e6e8; }

.article-layout { display: grid; gap: 36px; padding-block: clamp(54px, 10vw, 100px); }
.entry-content { min-width: 0; }
.entry-content > :first-child { margin-top: 0; }
.entry-content h2 { margin-top: 1.7em; font-size: clamp(1.75rem, 6vw, 2.7rem); }
.entry-content h3 { margin-top: 1.55em; font-size: clamp(1.3rem, 4vw, 1.65rem); }
.entry-content p, .entry-content li { color: var(--site-muted); }
.entry-content a { font-weight: 700; }
.entry-content .content-lead { color: var(--site-text); font-size: 1.15rem; line-height: 1.75; }
.entry-content .content-callout { margin-block: 30px; padding: 24px; border-left: 4px solid var(--teal-600); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--site-surface-alt); }
.entry-content .content-callout p:last-child { margin-bottom: 0; }
.entry-content .pros-cons { display: grid; gap: 16px; margin-block: 30px; }
.entry-content .pros-cons > div { padding: 23px; border: 1px solid var(--site-border); border-radius: var(--radius-sm); background: var(--site-surface); }
.entry-content .comparison-table { width: 100%; margin-block: 28px; border-collapse: collapse; font-size: .85rem; }
.entry-content .comparison-table th, .entry-content .comparison-table td { padding: 13px 10px; border: 1px solid var(--site-border); text-align: left; vertical-align: top; }
.entry-content .comparison-table th { background: var(--site-surface-alt); color: var(--site-text); }
.content-faq { margin-top: 60px; }
.content-faq .accordion { border-color: var(--site-border); }
.content-faq .accordion details { border-color: var(--site-border); }
.article-sidebar { display: grid; gap: 20px; align-content: start; }
.sidebar-cta { padding: 25px; border-radius: var(--radius-md); background: var(--navy-900); color: #fff; box-shadow: var(--shadow-lg); }
.sidebar-cta h2 { font-size: 1.65rem; }
.sidebar-cta > p:not(.eyebrow) { color: #bed0d6; }
.sidebar-phone { display: block; margin-top: 16px; color: #fff; font-weight: 800; text-align: center; }
.related-nav { display: grid; padding: 24px; border: 1px solid var(--site-border); border-radius: var(--radius-md); background: var(--site-surface); }
.related-nav h2 { margin-bottom: 12px; font-size: 1.18rem; }
.related-nav a { padding-block: 10px; border-bottom: 1px solid var(--site-border); color: var(--site-text); font-size: .88rem; font-weight: 700; text-decoration: none; }
.related-nav a:last-child { border-bottom: 0; }

.post-grid { display: grid; gap: 16px; }
.post-card { padding: 25px; border: 1px solid var(--site-border); border-radius: var(--radius-md); background: var(--site-surface); }
.post-card h2 { font-size: 1.5rem; }
.post-card h2 a { color: var(--site-text); text-decoration: none; }
.post-card p { color: var(--site-muted); }
.error-page { min-height: 70vh; display: grid; padding-block: 100px; place-items: center; text-align: center; }
.error-page .container { max-width: 760px; }
.error-page p:not(.eyebrow) { color: var(--site-muted); }
.error-page .button { margin: 5px; }

.site-footer { padding-top: 70px; background: var(--navy-950); color: #d3e0e2; }
.footer-grid { display: grid; gap: 36px; }
.brand--footer { color: #fff; }
.brand--footer:hover { color: #fff; }
.brand--footer .brand__copy small { color: #a8bec5; }
.footer-brand > p { max-width: 380px; color: #9fb5bc; font-size: .9rem; }
.footer-phone { display: inline-block; margin-bottom: 6px; color: #fff; font-size: 1.22rem; font-weight: 900; text-decoration: none; }
.footer-languages { font-size: .78rem !important; }
.site-footer h2 { color: #fff; font-size: 1.08rem; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 8px; padding: 0; list-style: none; }
.site-footer li a, .site-footer > .container p { color: #a9bec4; font-size: .86rem; text-decoration: none; }
.site-footer li a:hover { color: #fff; }
.footer-bottom { display: grid; gap: 12px; margin-top: 55px; padding-block: 23px; border-top: 1px solid #1d394b; }
.footer-bottom p { margin: 0; color: #88a0a8; font-size: .75rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-bottom a, .footer-link { padding: 0; border: 0; background: none; color: #a9bec4; font-size: .75rem; text-decoration: none; cursor: pointer; }

.whatsapp-float { position: fixed; z-index: 900; right: max(15px, env(safe-area-inset-right)); bottom: max(15px, env(safe-area-inset-bottom)); display: inline-flex; min-height: 52px; align-items: center; gap: 9px; padding: 10px 17px 10px 11px; border-radius: 999px; background: #137d4b; color: #fff; box-shadow: 0 14px 35px rgba(2,30,18,.3); font-size: .8rem; font-weight: 850; text-decoration: none; transition: transform .18s ease, background .18s ease, opacity .4s ease, visibility .4s ease; }
.whatsapp-float:hover { background: #0c653c; color: #fff; transform: translateY(-2px); }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }

.cky-btn-revisit-wrapper, #cya11y-container { transition: opacity 500ms ease-in-out, visibility 500ms ease-in-out; }
.cky-btn-revisit-wrapper { width: 35px !important; height: 35px !important; background: var(--site-primary, #007d78) !important; box-shadow: 0 10px 26px rgba(7,25,42,.2) !important; }
.cky-btn-revisit-wrapper .cky-btn-revisit, .cky-btn-revisit-wrapper .cky-btn-revisit img { width: 23px !important; height: 23px !important; }
.cky-btn-revisit-wrapper.cky-revisit-bottom-left, .cky-btn-revisit-wrapper.cky-revisit-bottom-right { right: auto !important; left: 20px !important; }
.cky-consent-container .cky-btn-accept, .cky-consent-container .cky-btn-reject, .cky-modal .cky-btn-accept, .cky-modal .cky-btn-reject, .cky-modal .cky-btn-preferences { border-color: #007d78 !important; background: #007d78 !important; color: #fff !important; }
.cky-consent-container .cky-btn-customize { border-color: #007d78 !important; color: #007d78 !important; }
:root[data-theme="dark"] .cky-consent-container .cky-consent-bar, :root[data-theme="dark"] .cky-modal .cky-preference-center { border-color: #29485a !important; background: #0c2131 !important; color: #f4f8f7 !important; }
:root[data-theme="dark"] .cky-consent-container .cky-title, :root[data-theme="dark"] .cky-consent-container .cky-notice-des, :root[data-theme="dark"] .cky-modal .cky-preference-title, :root[data-theme="dark"] .cky-modal .cky-preference-content-wrapper, :root[data-theme="dark"] .cky-modal .cky-accordion-btn, :root[data-theme="dark"] .cky-modal .cky-accordion-header-des { color: #f4f8f7 !important; }
:root[data-theme="dark"] .cky-modal .cky-accordion { border-color: #29485a !important; }
:root[data-theme="dark"] .cky-modal .cky-audit-table { border-color: #29485a !important; background: #102a3b !important; color: #d4e2e4 !important; }
:root[data-theme="dark"] .cky-consent-container .cky-btn-customize { border-color: #5ed8cc !important; color: #5ed8cc !important; }
body.page-scrolling .cky-btn-revisit-wrapper, body.page-scrolling #cya11y-container { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

@media (min-width: 560px) {
  .hero__actions { display: flex; flex-wrap: wrap; align-items: center; }
  .hero__actions .text-link { padding-inline: 10px; }
  .hero__trust li { font-size: .8rem; }
  .hero__trust strong { display: inline; font-size: .86rem; }
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .trust-bar__grid > * { border-bottom: 0; }
  .card-grid--4, .fact-grid, .area-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .estimate-form { padding: 30px; }
}

@media (min-width: 768px) {
  .header-strip { display: block; }
  .header-main { min-height: 78px; }
  .mobile-menu { min-height: calc(100vh - 108px); max-height: calc(100vh - 108px); }
  .hero { min-height: min(810px, calc(100svh - 108px)); align-items: center; }
  .hero__media img { object-position: 63% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(4,17,29,.96) 0%, rgba(4,17,29,.75) 46%, rgba(4,17,29,.1) 82%); }
  .hero__content { padding-block: 90px 72px; }
  .hero__trust { max-width: 690px; }
  .section-heading--split { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; }
  .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { grid-template-columns: 1fr auto; }
  .split-feature, .feature-grid, .dual-cards, .why-grid, .faq-grid, .estimate-grid { grid-template-columns: 1fr 1fr; }
  .split-feature, .feature-grid, .why-grid, .estimate-grid { gap: clamp(50px, 8vw, 90px); }
  .feature-grid > :first-child { order: 0; }
  .fact-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .process-list li { grid-template-columns: 1fr; align-content: start; border-top: 3px solid var(--site-border); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 65px; }
  .article-sidebar { position: sticky; top: 118px; }
  .entry-content .pros-cons { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .footer-bottom nav { justify-content: flex-end; }
}

@media (min-width: 1024px) {
  .brand__mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand__copy strong { font-size: 1.24rem; }
  .desktop-nav { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 24px); }
  .desktop-nav a { position: relative; padding-block: 22px; color: var(--site-text); font-size: clamp(.73rem, .9vw, .86rem); font-weight: 760; text-decoration: none; white-space: nowrap; }
  .desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 15px; left: 0; height: 2px; background: var(--teal-600); transform: scaleX(0); transition: transform .18s ease; }
  .desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
  .header-estimate { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .container-feature { min-height: 820px; align-items: center; padding-block: 80px; }
  .container-feature__media::after { background: linear-gradient(90deg, rgba(4,17,29,.25), rgba(4,17,29,.04) 42%, rgba(4,17,29,.35)); }
  .container-feature__card { padding: 42px; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 340px; }
}

@media (min-width: 1240px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand__mark { width: 36px; height: 36px; flex-basis: 36px; }
  .brand__copy strong { font-size: 1rem; }
  .brand__copy small { font-size: .49rem; }
  .header-actions { gap: 5px; }
  .theme-toggle, .menu-toggle, .ia-language-switcher a.gt_switcher-popup, .ia-language-fallback { width: 40px; min-height: 40px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3rem); }
  .hero__trust { gap: 6px; }
  .hero__trust li { font-size: .65rem; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; padding: 0; justify-content: center; }
}

@media (max-width: 768px) {
  .cky-btn-revisit-wrapper { width: 25px !important; height: 25px !important; }
  .cky-btn-revisit-wrapper .cky-btn-revisit, .cky-btn-revisit-wrapper .cky-btn-revisit img { width: 17px !important; height: 17px !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .whatsapp-float, .article-sidebar, .cta-band { display: none !important; }
  body { background: #fff; color: #000; }
  .container { width: 100%; }
}
