:root {
  --green-950: #032f2a;
  --green-900: #063c34;
  --green-800: #075348;
  --green-700: #08795d;
  --green-600: #079c68;
  --green-500: #16c77a;
  --mint: #9af4c8;
  --ink: #101c1a;
  --muted: #64716e;
  --surface: #f4f7f6;
  --white: #fff;
  --line: #dce6e2;
  --shadow: 0 18px 55px rgba(3, 47, 42, .11);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
p, h1, h2, h3 { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -100px; z-index: 9999; padding: 10px 16px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(6, 60, 52, .08);
  background: rgba(255, 255, 255, .94);
  transition: box-shadow .25s, transform .25s;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(3, 47, 42, .09); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.site-header--minimal .header-inner { justify-content: center; }
.site-header--minimal .site-brand { width: auto; }
.site-brand { width: 224px; flex: 0 0 auto; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-width: 220px; max-height: 54px; object-fit: contain; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 27px; list-style: none; padding: 0; margin: 0; }
.site-nav a { position: relative; font-size: .82rem; font-weight: 750; color: #24312f; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--green-500); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .menu-item-has-children { position: relative; }
.site-nav .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 6px; }
.site-nav .menu-item-has-children > a::before { content: ""; order: 2; width: 6px; height: 6px; margin: -4px 0 0 2px; border-right: 2px solid var(--green-600); border-bottom: 2px solid var(--green-600); transform: rotate(45deg); }
.site-nav .sub-menu { position: absolute; left: -18px; top: calc(100% + 18px); z-index: 20; width: 275px; padding: 12px; visibility: hidden; opacity: 0; transform: translateY(10px); border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); list-style: none; transition: opacity .2s, transform .2s, visibility .2s; }
.site-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 22px; }
.site-nav .sub-menu li + li { border-top: 1px solid #edf2f0; }
.site-nav .sub-menu a { display: block; padding: 9px 10px; font-size: .77rem; line-height: 1.35; }
.site-nav .sub-menu a::after { display: none; }
.site-nav .sub-menu a:hover { color: var(--green-700); }
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.header-phone { display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: .84rem; font-weight: 800; }
.header-phone svg { width: 18px; fill: var(--green-600); }
.header-cart { position: relative; display: grid; flex: 0 0 43px; width: 43px; height: 43px; place-items: center; border: 1px solid #d5e5df; border-radius: 50%; color: var(--green-800); background: #f4faf7; transition: color .2s, background .2s, transform .2s, box-shadow .2s; }
.header-cart:hover, .header-cart:focus-visible { color: #fff; background: var(--green-700); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,121,93,.22); }
.header-cart svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-cart__count { position: absolute; right: -5px; top: -5px; display: grid; min-width: 19px; height: 19px; padding-inline: 4px; place-items: center; border: 2px solid #fff; border-radius: 10px; color: #fff; background: var(--green-500); font-size: .62rem; font-weight: 900; line-height: 1; }
.nav-toggle { display: none; width: 43px; height: 43px; padding: 10px; border: 0; border-radius: 10px; background: var(--surface); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--green-900); transition: .25s; }

/* Header search */
.header-search-toggle { display: grid; flex: 0 0 43px; width: 43px; height: 43px; place-items: center; border: 1px solid #d5e5df; border-radius: 50%; color: var(--green-800); background: #f4faf7; cursor: pointer; transition: color .2s, background .2s, transform .2s, box-shadow .2s; }
.header-search-toggle:hover, .header-search-toggle:focus-visible { color: #fff; background: var(--green-700); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,121,93,.22); }
.header-search-toggle svg { transition: transform .2s; }
.header-search-toggle[aria-expanded="true"] svg { transform: scale(.9); }

.search-overlay { position: fixed; inset: 82px 0 auto; z-index: 999; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-14px); color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 24px 45px rgba(3,47,42,.16); border-bottom: 1px solid var(--line); transition: opacity .25s, transform .25s, visibility .25s; }
body.search-open .search-overlay { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.search-overlay__inner { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; padding-block: 30px 34px; }
.search-overlay__form { position: relative; display: flex; align-items: center; gap: 14px; }
.search-overlay__icon { flex-shrink: 0; color: var(--green-600); }
.search-overlay__input { flex: 1; min-width: 0; padding: 14px 0; border: 0; border-bottom: 2px solid var(--line); color: var(--ink); background: transparent; font-size: 1.35rem; outline: 0; }
.search-overlay__input::placeholder { color: #9ab0ab; }
.search-overlay__input:focus { border-bottom-color: var(--green-500); }
.search-overlay__close { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border: 1px solid #d5e5df; border-radius: 50%; color: var(--green-800); background: #f4faf7; cursor: pointer; transition: color .2s, background .2s; }
.search-overlay__close:hover { color: #fff; background: var(--green-700); }
.search-overlay__results { margin-top: 22px; }
.search-overlay__loading, .search-overlay__empty, .search-overlay__error { margin: 0; color: var(--muted); font-size: .9rem; }
.search-overlay__error { color: #b03a2e; }
.search-overlay__hint { margin: 0 0 12px; color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.search-result__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.search-result { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.search-result:hover, .search-result:focus-visible { border-color: var(--green-300); box-shadow: var(--shadow); }
.search-result__thumb { display: grid; flex: 0 0 48px; width: 48px; height: 48px; overflow: hidden; place-items: center; border-radius: 9px; background: #eaf5f0; color: var(--green-700); font-weight: 900; }
.search-result__thumb img { width: 100%; height: 100%; object-fit: cover; }
.search-result__meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.search-result__meta strong { color: var(--ink); font-size: .88rem; line-height: 1.3; }
.search-result__price { color: var(--green-700); font-weight: 850; font-size: .84rem; }
.search-overlay__viewall { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--green-700); font-size: .84rem; font-weight: 800; }

/* In-menu search (mobile dropdown) */
.site-nav__search { display: none; }
.site-nav__search-form { position: relative; display: flex; align-items: center; }
.site-nav__search-form svg { position: absolute; left: 14px; color: var(--green-600); }
.site-nav__search-input { width: 100%; padding: 12px 14px 12px 42px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #f4faf7; font-size: .92rem; outline: 0; }
.site-nav__search-input::placeholder { color: #9ab0ab; }
.site-nav__search-input:focus { border-color: var(--green-400); }
.site-nav__search-results { margin-top: 12px; }
.site-nav__search-results .search-result__list { grid-template-columns: 1fr; }
.site-nav__search-results .search-overlay__hint { margin: 14px 0 10px; }
.site-nav__search-results .search-overlay__viewall { margin-top: 14px; padding-bottom: 8px; }

.button { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 13px 23px; border-radius: 10px; background: linear-gradient(135deg, var(--green-700), var(--green-500)); color: #fff; font-size: .84rem; font-weight: 850; letter-spacing: .02em; text-transform: uppercase; box-shadow: 0 12px 25px rgba(7, 156, 104, .21); transition: transform .22s, box-shadow .22s; }
.button:hover, .button:focus-visible { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(7, 156, 104, .3); }
.button--small { min-height: 44px; padding: 10px 18px; border-radius: 9px; font-size: .74rem; }
.button--glow { box-shadow: 0 0 0 8px rgba(22, 199, 122, .09), 0 15px 35px rgba(10, 231, 142, .28); }

.hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 75% 10%, rgba(22, 199, 122, .2), transparent 35%), linear-gradient(115deg, #032b27 0%, #063c34 55%, #075548 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(to left, #000, transparent 75%); }
.hero-grid { position: relative; z-index: 2; min-height: 595px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; padding-block: 78px 112px; }
.hero-copy h1 { max-width: 650px; margin-bottom: 27px; font-size: clamp(2.45rem, 4.6vw, 4.6rem); line-height: .99; letter-spacing: -.052em; }
.hero-copy h1 span { display: block; color: var(--mint); }
.eyebrow { margin-bottom: 13px; color: var(--green-600); font-size: .74rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow--light { color: var(--mint); }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 0 0 32px; color: #e5f2ee; font-size: .86rem; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points b { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(154,244,200,.65); border-radius: 50%; color: var(--mint); }
.hero-orb { position: absolute; border: 1px solid rgba(154, 244, 200, .15); border-radius: 44px; background: linear-gradient(135deg, rgba(154,244,200,.13), rgba(255,255,255,.02)); transform: rotate(24deg); }
.hero-orb--one { width: 400px; height: 570px; right: 3%; top: -80px; }
.hero-orb--two { width: 190px; height: 420px; right: 36%; top: 95px; }
.trust-strip { position: relative; z-index: 3; color: var(--ink); background: rgba(255,255,255,.97); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div, .credential-bar > div { display: flex; align-items: center; gap: 16px; min-height: 104px; padding: 22px 34px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child, .credential-bar > div:last-child { border-right: 0; }
.trust-grid p, .credential-bar p { margin: 0; line-height: 1.35; }
.trust-grid strong, .credential-bar strong { display: block; font-size: .92rem; }
.trust-grid small, .credential-bar small { display: block; margin-top: 5px; color: var(--muted); font-size: .75rem; }
.feature-icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: #e2f8ed; color: var(--green-600); font-size: 1.25rem; font-weight: 900; }

.section { padding-block: 105px; }
.section-heading { display: grid; grid-template-columns: 1fr 260px; align-items: end; gap: 45px; margin-bottom: 45px; }
.section-heading h2, .experience h2, .process h2, .why-us h2, .reviews h2, .location h2 { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.35rem); line-height: 1.08; letter-spacing: -.04em; }
.section-heading h2 { max-width: 790px; }
.section-heading > p { position: relative; margin: 0; padding-bottom: 12px; color: var(--muted); font-size: .93rem; }
.section-heading > p::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--green-500); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid #e8eeec; border-radius: var(--radius); background: #fff; box-shadow: 0 10px 35px rgba(3,47,42,.06); transition: transform .3s, box-shadow .3s; transition-delay: var(--delay, 0ms); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card__image { display: block; height: 210px; overflow: hidden; border-bottom: 1px solid rgba(7,156,104,.18); background: var(--green-950); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-card__image img { transform: scale(1.045); }
.service-card__body { padding: 25px 26px 27px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.08rem; line-height: 1.3; }
.service-card p { min-height: 76px; margin-bottom: 18px; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.service-card a { color: var(--green-700); font-size: .76rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }

.image-placeholder { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; overflow: hidden; border: 1px dashed rgba(7,156,104,.6); color: var(--green-700); text-align: center; background: repeating-linear-gradient(135deg, #eaf5f0 0, #eaf5f0 16px, #f5faf8 16px, #f5faf8 32px); }
.image-placeholder::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(7,156,104,.12); border-radius: inherit; pointer-events: none; }
.image-placeholder svg { width: 37px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.image-placeholder span { position: relative; z-index: 1; padding: 6px 11px; border-radius: 7px; background: rgba(255,255,255,.8); font-size: .76rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.image-placeholder small { color: var(--muted); font-size: .66rem; font-weight: 600; text-transform: none; }
.image-placeholder img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.image-placeholder:has(> img) { border: 0; background: none; }
.image-placeholder:has(> img)::after { display: none; }
.image-placeholder:has(> img) svg, .image-placeholder:has(> img) span { display: none; }
.image-placeholder--hero { min-height: 420px; border-color: rgba(154,244,200,.5); border-radius: 38% 14% 31% 13%; color: var(--mint); background: linear-gradient(145deg, rgba(154,244,200,.15), rgba(255,255,255,.04)); box-shadow: inset 0 0 80px rgba(154,244,200,.08); }
.image-placeholder--hero span { color: #eafbf3; background: rgba(3,47,42,.76); }
.image-placeholder--card { height: 210px; border: 0; border-bottom: 1px dashed rgba(7,156,104,.35); border-radius: 0; }

.section--dark { color: #fff; background: var(--green-950); }
.experience { position: relative; padding-bottom: 0; background: radial-gradient(circle at 80% 15%, #0a6654, transparent 38%), var(--green-950); }
.experience-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 70px; }
.experience-copy p:last-child { margin: 25px 0 0; color: #c7d8d3; }
.image-placeholder--wide { min-height: 365px; border-color: rgba(154,244,200,.45); border-radius: var(--radius); color: var(--mint); background: rgba(255,255,255,.04); }
.image-placeholder--wide span { background: rgba(3,47,42,.8); }
.credential-bar { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; color: var(--ink); border-radius: 18px 18px 0 0; background: #fff; box-shadow: 0 -15px 45px rgba(0,0,0,.12); }
.credential-bar span { color: var(--green-600); font-size: 1.7rem; font-weight: 900; }

.process { background: linear-gradient(180deg, #f7faf9, #fff); }
.process-grid { display: grid; grid-template-columns: .8fr .55fr 1.15fr; align-items: center; gap: 48px; }
.process-intro > p:not(.eyebrow) { margin: 22px 0 28px; color: var(--muted); }
.image-placeholder--phone { min-height: 430px; border-radius: 38px; }
.steps { position: relative; list-style: none; padding: 0; margin: 0; }
.steps::before { content: ""; position: absolute; left: 25px; top: 35px; bottom: 35px; width: 1px; background: #b9d8cc; }
.steps li { position: relative; z-index: 1; display: grid; grid-template-columns: 52px 1fr; gap: 22px; margin: 0 0 32px; }
.steps li:last-child { margin-bottom: 0; }
.steps li > span { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid #b6d9cb; border-radius: 50%; color: var(--green-700); background: #fff; font-size: .75rem; font-weight: 900; }
.steps h3 { margin: 2px 0 5px; font-size: 1rem; }
.steps p { margin: 0; color: var(--muted); font-size: .82rem; }

.why-us { border-top: 1px solid #edf1f0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.image-placeholder--why { min-height: 435px; border-radius: var(--radius); }
.why-copy > p:not(.eyebrow) { color: var(--muted); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 28px; padding: 0; margin: 28px 0 30px; list-style: none; }
.check-grid li { position: relative; padding-left: 27px; font-size: .9rem; font-weight: 780; }
.check-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 900; }

.reviews { position: relative; overflow: hidden; background: radial-gradient(circle at 30% 60%, rgba(8,121,93,.45), transparent 35%), var(--green-950); }
.review-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.review-intro > p:not(.eyebrow) { margin: 22px 0 25px; color: #c5d4d0; }
.rating { display: flex; align-items: center; gap: 16px; }
.rating strong { font-size: 3rem; line-height: 1; }
.rating span { color: #c5d4d0; font-size: .75rem; line-height: 1.4; }
.rating b, .stars { color: #ffbd21; letter-spacing: 3px; }
.review-slider { min-width: 0; }
.review-track { position: relative; min-height: 315px; }
.review-card { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 38px 42px; visibility: hidden; opacity: 0; transform: translateX(25px); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); transition: opacity .35s, transform .35s, visibility .35s; }
.review-card.is-active { visibility: visible; opacity: 1; transform: translateX(0); }
.quote-mark { height: 28px; color: var(--mint); font: 700 3.7rem/1 Georgia, serif; }
.review-card p { margin: 10px 0 18px; font-size: 1.02rem; }
.review-card strong { margin-top: 18px; }
.review-card small { color: #b9cbc6; }
.slider-controls { display: flex; justify-content: center; align-items: center; gap: 15px; margin-top: 18px; }
.slider-controls button { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; }
.slider-controls button:hover { background: rgba(255,255,255,.12); }
.slider-dots { display: flex; gap: 7px; }
.slider-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }
.slider-dots i.is-active { width: 20px; border-radius: 10px; background: var(--green-500); }

.location { background: #f8faf9; }
.location-grid { display: grid; grid-template-columns: .62fr 1.38fr; align-items: stretch; gap: 45px; }
.location-copy > p:not(.eyebrow) { color: var(--muted); }
.address-card { margin-top: 28px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 13px 35px rgba(3,47,42,.06); }
.address-card > span { color: var(--green-600); }
address { font-style: normal; }
.address-card address { margin: 9px 0 14px; font-weight: 700; }
.address-card a { color: var(--green-700); font-size: .82rem; font-weight: 850; }
.image-placeholder--map { min-height: 340px; border-radius: var(--radius); }
.map-embed { position: relative; overflow: hidden; min-height: 340px; border: 1px solid var(--line); border-radius: var(--radius); background: #eaf5f0; box-shadow: 0 14px 42px rgba(3,47,42,.09); }
.map-embed iframe { display: block; width: 100%; min-height: 340px; border: 0; }

.site-footer { padding: 65px 0 0; color: #c0d0cc; background: #022d28; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 70px; padding-bottom: 52px; }
.footer-brand .custom-logo { max-width: 230px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 320px; margin-top: 20px; color: #9eb4ae; font-size: .84rem; }
.site-footer h2 { color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li, .site-footer address { margin-bottom: 7px; }
.site-footer a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .73rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--mint); font-weight: 800; }
.simple-content { min-height: 60vh; padding-block: 90px; }

/* Interior service pages */
.wp-block-post-content { margin-block-start: 0; }
.landing-hero, .page-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 75% 15%, rgba(22,199,122,.25), transparent 35%), linear-gradient(115deg, var(--green-950), var(--green-800)); }
.landing-hero::after, .page-hero::after { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 55px 55px; pointer-events: none; }
.landing-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; min-height: 545px; padding-block: 75px; }
.landing-hero__grid:has(.landing-hero__form) { align-items: start; }
.landing-hero__grid:has(.landing-hero__form) .landing-hero__copy { margin-top: 6px; }
.landing-hero__copy h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.15rem, 3.35vw, 3.15rem); line-height: 1.1; letter-spacing: -.035em; }
.page-hero h1, .page-hero .wp-block-query-title { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.25rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: -.04em; }
.landing-hero__copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 30px; color: #d4e3df; }
.image-placeholder--landing { min-height: 360px; border-color: rgba(154,244,200,.45); border-radius: var(--radius); color: var(--mint); background: rgba(255,255,255,.05); }
.service-video { position: relative; overflow: hidden; border: 1px solid rgba(154,244,200,.35); border-radius: var(--radius); background: #021d1a; box-shadow: 0 18px 55px rgba(0,0,0,.2); }
.service-video--landing { min-height: 360px; aspect-ratio: 16 / 10; }
.service-video--vertical { min-height: 0; width: min(100%, 430px); aspect-ratio: 9 / 16; margin-inline: auto; border-radius: 24px; }
.service-video video { display: block; width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.phone-video-showcase { position: relative; width: min(100%, 530px); margin-inline: auto; padding: 54px 44px 62px; }
.phone-video-frame { position: relative; width: min(100%, 350px); aspect-ratio: 9 / 17.5; margin-inline: auto; padding: 13px 11px 23px; overflow: hidden; border: 7px solid #11231f; border-radius: 54px; background: #11231f; box-shadow: 0 28px 65px rgba(3,47,42,.23), inset 0 0 0 1px rgba(255,255,255,.1); }
.service-video--phone { width: 100%; height: 100%; min-height: 0; overflow: hidden; border: 0; border-radius: 37px; background: #061d19; box-shadow: none; }
.service-video--phone video { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.phone-video-notch { position: absolute; z-index: 3; top: 18px; left: 50%; width: 39%; height: 28px; border-radius: 18px; background: #11231f; transform: translateX(-50%); pointer-events: none; }
.phone-video-home { position: absolute; z-index: 3; bottom: 8px; left: 50%; width: 34%; height: 4px; border-radius: 999px; background: rgba(255,255,255,.74); transform: translateX(-50%); pointer-events: none; }
.phone-video-badge { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 13px 17px; border: 1px solid rgba(6,60,52,.08); border-radius: 17px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 14px 35px rgba(3,47,42,.14); backdrop-filter: blur(8px); pointer-events: none; }
.phone-video-badge svg { flex: 0 0 29px; width: 29px; height: 29px; fill: var(--green-500); }
.phone-video-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.phone-video-badge strong { font-size: .92rem; }
.phone-video-badge small { margin-top: 4px; color: var(--muted); font-size: .78rem; }
.phone-video-badge--speed { top: 76px; left: 0; }
.phone-video-badge--warranty { right: 0; bottom: 105px; }
.landing-content .image-placeholder--landing { color: var(--green-700); background: repeating-linear-gradient(135deg,#eaf5f0 0,#eaf5f0 16px,#f5faf8 16px,#f5faf8 32px); }
.image-placeholder--landing span { color: inherit; background: rgba(3,47,42,.72); }
.landing-content .image-placeholder--landing span { color: var(--green-700); background: rgba(255,255,255,.85); }
.landing-facts { border-bottom: 1px solid var(--line); background: #fff; }
.landing-facts__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.landing-facts__grid > div { min-height: 100px; padding: 23px 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.landing-facts__grid > div:last-child { border-right: 0; }
.landing-facts strong { color: var(--green-700); font-size: 1rem; }
.landing-facts span { color: var(--muted); font-size: .78rem; }
.brands-marquee { overflow: hidden; padding-block: 32px 36px; border-bottom: 1px solid var(--line); background: #f8fbfa; }
.brands-marquee__heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 24px; }
.brands-marquee__heading .eyebrow { margin: 0; }
.brands-marquee__heading > p:last-child { margin: 0; color: var(--muted); font-size: .8rem; }
.brands-marquee__viewport { overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.brands-marquee__track { display: flex; width: max-content; gap: 56px; will-change: transform; animation: tcpw-brands-marquee 24s linear infinite; }
.brands-marquee__viewport:hover .brands-marquee__track,
.brands-marquee__viewport:focus-within .brands-marquee__track { animation-play-state: paused; }
.brands-marquee__group { display: flex; align-items: center; gap: 56px; }
.brands-marquee__item { display: grid; width: 145px; height: 66px; padding: 8px 12px; place-items: center; border: 1px solid rgba(6,60,52,.08); border-radius: 12px; background: #fff; box-shadow: 0 7px 22px rgba(3,47,42,.045); }
.brands-marquee__item img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: grayscale(1); opacity: .72; transform: translateY(-6px); transition: filter .25s, opacity .25s, transform .25s; }
.brands-marquee__item:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-6px) scale(1.04); }
@keyframes tcpw-brands-marquee { to { transform: translate3d(calc(-50% - 28px),0,0); } }
.landing-content { border-bottom: 1px solid #edf1f0; }
.landing-content:nth-of-type(even) { background: #f7faf9; }
.landing-content__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.landing-content--reverse .landing-content__copy { order: 2; }
.landing-content--reverse .image-placeholder { order: 1; }
.landing-content h2, .landing-form h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.landing-content p { color: var(--muted); }
.landing-checks { display: grid; gap: 11px; padding: 0; margin: 26px 0 0; list-style: none; }
.landing-checks li { position: relative; padding-left: 30px; }
.landing-checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-600); font-weight: 900; }
.service-media { overflow: hidden; border-radius: var(--radius); background: rgba(255,255,255,.05); box-shadow: 0 18px 55px rgba(0,0,0,.2); }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-media--hero { min-height: 360px; border: 1px solid rgba(154,244,200,.45); aspect-ratio: 4 / 3; }
.landing-content .service-media { border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(3,47,42,.1); aspect-ratio: 4 / 3; }

/* Interactive maintenance before/after comparison. */
.maintenance-comparison { overflow: hidden; background: linear-gradient(180deg, #f8fbfa, #fff); }
.before-after { --comparison-position: 50%; position: relative; isolation: isolate; width: min(100%, 620px); aspect-ratio: 3 / 4; margin-inline: auto; overflow: hidden; border: 1px solid rgba(6,60,52,.12); border-radius: var(--radius); background: var(--green-950); box-shadow: 0 22px 60px rgba(3,47,42,.16); }
.landing-hero__comparison { position: relative; z-index: 1; min-width: 0; }
.landing-hero__comparison > .eyebrow { margin-bottom: 14px; text-align: center; }
.landing-hero__comparison .before-after { width: min(100%, 420px); margin-left: auto; border-color: rgba(154,244,200,.35); box-shadow: 0 24px 65px rgba(0,0,0,.25); }
.before-after__media, .before-after__after, .before-after__image { position: absolute; inset: 0; width: 100%; height: 100%; }
.before-after__image { object-fit: cover; user-select: none; pointer-events: none; }
.before-after__after { z-index: 1; overflow: hidden; clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0); }
.before-after__divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--comparison-position); width: 3px; color: var(--green-900); background: #fff; box-shadow: 0 0 18px rgba(0,0,0,.28); transform: translateX(-50%); pointer-events: none; }
.before-after__divider span { position: absolute; top: 50%; left: 50%; display: grid; width: 52px; height: 52px; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: var(--green-700); box-shadow: 0 8px 25px rgba(0,0,0,.24); font-size: 1.25rem; font-weight: 900; transform: translate(-50%,-50%); }
.before-after__label { position: absolute; z-index: 4; top: 20px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: #fff; background: rgba(3,47,42,.78); backdrop-filter: blur(6px); font-size: .72rem; font-weight: 900; letter-spacing: .09em; line-height: 1; text-transform: uppercase; pointer-events: none; }
.before-after__label--before { left: 20px; }
.before-after__label--after { right: 20px; }
.before-after__range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; touch-action: pan-y; }
.before-after:focus-within { outline: 3px solid rgba(22,199,122,.36); outline-offset: 5px; }
.landing-benefits .landing-benefits__intro { max-width: 820px; margin-bottom: 46px; }
.landing-benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card { display: flex; flex-direction: column; gap: 10px; min-height: 210px; padding: 30px 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(3,47,42,.06); transition: transform .3s, box-shadow .3s; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.benefit-card__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 12px; color: var(--green-500); background: rgba(7,156,104,.1); font-size: 1.3rem; font-weight: 900; }
.benefit-card h3 { margin: 4px 0 0; font-size: 1.05rem; line-height: 1.3; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .85rem; }
.screen-products { background: #f8fbfa; }
.screen-products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.screen-product-card { overflow: hidden; border: 1px solid #e8eeec; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(3,47,42,.06); transition: transform .25s, box-shadow .25s; }
.screen-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.screen-product-card__image { display: block; height: 190px; overflow: hidden; background: #edf6f2; }
.screen-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.screen-product-card:hover .screen-product-card__image img { transform: scale(1.045); }
.screen-product-card__image span { display: grid; width: 100%; height: 100%; place-items: center; padding: 18px; color: var(--green-700); text-align: center; font-weight: 800; }
.screen-product-card__body { padding: 20px 22px 23px; }
.screen-product-card h3 { margin-bottom: 6px; font-size: 1rem; line-height: 1.35; }
.screen-product-card h3 a:hover { color: var(--green-700); }
.screen-product-card__price { margin-bottom: 16px; color: var(--green-700); font-weight: 850; }
.screen-product-card__body > a { color: var(--green-700); font-size: .76rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.screen-products__more { display: flex; justify-content: center; margin-top: 42px; }
.faq { background: #fff; }
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 14px; margin-top: 42px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 26px rgba(3,47,42,.05); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: #fff; background: var(--green-600); font-size: 1.1rem; font-weight: 900; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: rgba(7,156,104,.35); box-shadow: 0 10px 30px rgba(3,47,42,.07); }
.faq-item__answer { padding: 0 24px 22px; color: var(--muted); }
.faq-item__answer p { margin: 0; }

/* FAQ dedicated page */
.faq-page .page-hero--compact { padding-block: 100px; }
.faq-category { margin-top: 48px; margin-bottom: 8px; }
.faq-category:first-of-type { margin-top: 0; }
.faq-category h2 { margin-bottom: 4px; font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.faq-category p { margin: 0; color: var(--muted); font-size: .84rem; }
.faq-cta { max-width: 780px; margin: 56px auto 0; padding: 48px 42px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: #f8fbfa; }
.faq-cta h2 { margin-bottom: 14px; }
.faq-cta > p:not(.eyebrow):not(.faq-cta__meta) { margin-bottom: 28px; color: var(--muted); }
.faq-cta .button { margin-bottom: 22px; }
.faq-cta__meta { margin: 0; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .04em; }

/* Pantallas-notebook conversion landing */
.landing-reviews { background: #f8fbfa; }
.reviews-score { display: flex; align-items: center; justify-content: space-between; gap: 26px; max-width: 100%; margin-bottom: 44px; padding: 28px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 34px rgba(3,47,42,.07); }
.reviews-score__badge strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 1.7rem; line-height: 1; }
.reviews-score__badge .stars { display: block; margin-bottom: 7px; }
.reviews-score__badge span { color: var(--muted); font-size: .82rem; }
.reviews-score > p { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 7px; margin: 0; color: var(--muted); text-align: right; }
.reviews-score > p small { display: block; flex-basis: 100%; color: var(--green-700); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.landing-review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.landing-review-card { display: flex; flex-direction: column; gap: 6px; min-height: 130px; padding: 22px 22px 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(3,47,42,.055); }
.landing-review-card .stars { margin-bottom: 6px; }
.landing-review-card strong { font-size: .9rem; line-height: 1.3; }
.landing-review-card small { color: var(--muted); font-size: .76rem; }
.landing-review-card__text { margin: 6px 0 0; color: #4a5b57; font-size: .82rem; line-height: 1.5; }
.landing-location { background: #f8faf9; }
.landing-cta { color: #fff; background: radial-gradient(circle at 15% 20%, #0a6654, transparent 42%), var(--green-950); }
.landing-cta__inner { max-width: 780px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.landing-cta__inner h2 { margin-bottom: 14px; }
.landing-cta__inner > p:not(.eyebrow) { margin-bottom: 28px; color: #c4d8d2; }
.landing-cta__inner .button { margin-bottom: 24px; }
.landing-cta__meta { color: #9fc0b6 !important; font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
.landing-cta__inner h3 { margin-top: 26px; color: #fff; }
.landing-other-services { background: #fff; }
.landing-other-services__inner { max-width: 780px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.landing-other-services__inner > p:not(.eyebrow) { max-width: 620px; margin-bottom: 30px; color: var(--muted); }
.landing-other-services__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.landing-other-services__links a { display: inline-flex; padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; color: var(--green-700); background: #fff; font-size: .86rem; font-weight: 800; text-decoration: none; transition: color .3s, background .3s, border-color .3s; }
.landing-other-services__links a:hover { color: #fff; border-color: var(--green-600); background: var(--green-600); }
.landing-form { color: #fff; background: radial-gradient(circle at 15% 50%, #0a6654, transparent 38%), var(--green-950); }
.landing-form__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 75px; }
.landing-form__grid > div:first-child > p:last-child { color: #c4d8d2; }
.landing-form__embed { padding: 32px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: #fff; color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.tcpw-form-placeholder { display: flex; min-height: 220px; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 28px; border: 1px dashed #8ab9a8; border-radius: 14px; color: var(--green-700); text-align: center; background: #f3faf7; }
.tcpw-form-placeholder span { color: var(--muted); font-size: .85rem; }
.landing-form__embed :is(input, textarea, select) { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.landing-form__embed textarea { min-height: 120px; }
.landing-form__embed :is(button, input[type="submit"]) { min-height: 46px; padding: 11px 20px; border: 0; border-radius: 8px; color: #fff; background: var(--green-600); font-weight: 800; cursor: pointer; }
.page-hero--compact { position: relative; z-index: 1; padding-block: 90px; }
.page-hero--compact > .container, .page-hero--compact.wp-block-group { position: relative; z-index: 1; }
.page-hero--compact p:last-child { max-width: 620px; color: #c9ddd7; }
.landing-hero__form { position: relative; z-index: 1; }
.landing-hero__form-card { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); color: var(--ink); background: #fff; box-shadow: 0 24px 60px rgba(0,0,0,.26); }
.landing-hero__form-card .eyebrow { margin-bottom: 9px; }
.landing-hero__form-card h2 { margin-bottom: 10px; font-size: clamp(1.45rem, 2.2vw, 1.85rem); line-height: 1.15; letter-spacing: -.03em; }
.landing-hero__form-intro { margin-bottom: 20px; color: var(--muted); font-size: .9rem; }
.landing-hero__form-embed { min-width: 0; }
.landing-hero__form-embed .tcpw-form-placeholder { min-height: 205px; }
.landing-hero__form-embed :is(input, textarea, select) { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.landing-hero__form-embed textarea { min-height: 120px; }
.landing-hero__form-embed :is(button, input[type="submit"]) { min-height: 46px; padding: 11px 20px; border: 0; border-radius: 8px; color: #fff; background: var(--green-600); font-weight: 800; cursor: pointer; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.contact-cards article { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 35px rgba(3,47,42,.06); }
.contact-cards article > span { color: var(--green-600); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.contact-cards h2 { margin: 12px 0 10px; font-size: 1.25rem; }
.contact-cards p { margin: 0; color: var(--muted); }
.contact-cards a { color: var(--green-700); font-weight: 700; }
.contact-map { padding-top: 0; background: #f8faf9; }
.contact-map .image-placeholder { min-height: 380px; color: var(--green-700); }
.contact-map .map-embed, .contact-map .map-embed iframe { min-height: 380px; }

/* Blog and editorial templates */
.blog-index { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 25px; }
.blog-grid .blog-card { display: flex; flex-direction: column; padding-top: 0; }
.blog-card__image, .blog-card__placeholder { display: block; height: 230px; margin: 0 -25px 22px; overflow: hidden; border: 0; border-radius: 17px 17px 0 0; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__placeholder { display: flex; align-items: center; justify-content: center; background: repeating-linear-gradient(135deg,#eaf5f0 0,#eaf5f0 16px,#f5faf8 16px,#f5faf8 32px); }
.blog-grid .blog-card time { color: var(--green-600); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.blog-grid .blog-card h2 { margin: 8px 0 12px; font-size: 1.25rem; line-height: 1.3; }
.blog-grid .blog-card p { color: var(--muted); font-size: .88rem; }
.blog-card__more { margin-top: auto; color: var(--green-700); font-size: .8rem; font-weight: 850; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 45px; }
.blog-pagination .page-numbers { display: grid; min-width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 8px; }
.blog-pagination .current { color: #fff; background: var(--green-600); }
.blog-query .wp-block-post-template, .archive-shell .wp-block-post-template { gap: 25px; }
.blog-card { height: 100%; overflow: hidden; padding: 0 25px 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 38px rgba(3,47,42,.07); }
.blog-card .wp-block-post-featured-image { margin-inline: -25px; margin-bottom: 22px; background: repeating-linear-gradient(135deg,#eaf5f0 0,#eaf5f0 16px,#f5faf8 16px,#f5faf8 32px); }
.blog-card .wp-block-post-date { color: var(--green-600); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.blog-card .wp-block-post-title { margin: 8px 0 12px; font-size: 1.25rem; line-height: 1.3; }
.blog-card .wp-block-post-excerpt { color: var(--muted); font-size: .88rem; }
.blog-card .wp-block-post-excerpt__more-link { color: var(--green-700); font-weight: 800; }
.wp-block-query-pagination { margin-top: 45px; }
.single-post-hero { padding-block: 90px; color: #fff; background: radial-gradient(circle at 75% 15%, rgba(22,199,122,.24), transparent 35%), var(--green-950); }
.single-post-hero > * { width: min(calc(100% - 40px), 920px); margin-inline: auto; }
.single-post-hero .wp-block-post-title { font-size: clamp(2.5rem,5vw,4.7rem); line-height: 1.05; letter-spacing: -.05em; }
.post-meta { gap: 8px; color: #b8d0ca; font-size: .82rem; }
.single-post-layout { width: min(calc(100% - 40px), 920px); margin-inline: auto; padding-block: 70px 100px; }
.single-featured-image { overflow: hidden; margin-bottom: 45px; border-radius: var(--radius); background: #edf6f2; }
.single-post-layout .wp-block-post-content { font-size: 1.08rem; }
.single-post-layout .wp-block-post-content :is(h2,h3) { margin-top: 2em; line-height: 1.2; }
.single-post-layout .wp-block-post-content p { color: #3f4d49; }
.post-contact-box { margin-block: 55px; padding: 35px; border-radius: var(--radius); background: #edf8f3; }

/* WooCommerce visual layer — product data remains managed by WooCommerce. */
.woocommerce main, .woocommerce-page main { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; padding-block: 70px 100px; }
.woocommerce-products-header { margin-bottom: 35px; }
.woocommerce-products-header__title { font-size: clamp(2.4rem,4vw,4rem); letter-spacing: -.045em; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(3,47,42,.06); transition: transform .25s, box-shadow .25s; }
.woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product img { border-radius: 12px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--ink); font-size: 1rem; }
.woocommerce ul.products li.product .price { color: var(--green-700); font-weight: 850; }
.woocommerce :is(a.button,button.button,input.button) { border-radius: 8px !important; color: #fff !important; background: var(--green-600) !important; }
.shop-page-hero { max-width: none !important; margin: 0; }
.shop-page-hero > * { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.woo-content { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; padding-block: 65px 100px; }
.woo-content .woocommerce-products-header { display: none; }
.woo-content .wc-block-product-template { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)) !important; gap: 24px !important; }
.woo-content .wc-block-product { overflow: hidden; padding: 16px 16px 23px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(3,47,42,.06); transition: transform .25s, box-shadow .25s; }
.woo-content .wc-block-product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.woo-content .wc-block-components-product-image { overflow: hidden; margin: -16px -16px 18px !important; border-radius: 17px 17px 0 0; background: #edf6f2; }
.woo-content .wp-block-post-title { font-size: 1rem; line-height: 1.35; }
.woo-content .wc-block-components-product-price { color: var(--green-700); font-weight: 850; }
.woo-single .product { padding-top: 20px; }
.woo-single div.product .woocommerce-product-gallery { overflow: hidden; border-radius: var(--radius); }
.woo-single div.product .product_title { font-size: clamp(2.1rem,4vw,3.5rem); line-height: 1.08; letter-spacing: -.04em; }
.woo-single div.product .price { color: var(--green-700) !important; font-size: 1.45rem !important; font-weight: 850; }

/* WhatsApp quote button */
.tcpw-whatsapp-quote { margin-top: 14px; }
.tcpw-whatsapp-quote__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.tcpw-whatsapp-quote__link:hover { background: #1ebe57; transform: translateY(-1px); }
.tcpw-whatsapp-quote__link svg { flex-shrink: 0; }
.tcpw-whatsapp-quote__link--small { padding: 7px 14px; font-size: .82rem; }
.woocommerce ul.products li.product .tcpw-whatsapp-quote__link--small { margin-top: 10px; }

/* Cart and checkout */
body.woocommerce-cart,
body.woocommerce-checkout { background: var(--surface); }
.woocommerce-cart main { padding-top: 46px; }
.woocommerce-cart main > .wp-block-post-title {
  max-width: none;
  margin: 0 0 34px;
  padding: 31px 36px;
  border-radius: var(--radius);
  color: #fff;
  background: radial-gradient(circle at 82% 10%, rgba(22,199,122,.3), transparent 32%), linear-gradient(115deg,var(--green-950),var(--green-800));
  box-shadow: 0 16px 44px rgba(3,47,42,.14);
  font-size: clamp(2rem,3.5vw,3.1rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.woocommerce-cart .wc-block-cart__main,
.woocommerce-cart .wc-block-cart__sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 38px rgba(3,47,42,.07);
}
.woocommerce-cart .wc-block-cart__main { padding: 8px 28px 24px; }
.woocommerce-cart .wc-block-cart__sidebar { align-self: start; padding: 27px 28px 29px; }
.woocommerce-cart .wc-block-cart-items__header { color: var(--green-800); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce-cart .wc-block-cart-items__row { border-color: var(--line) !important; }
.woocommerce-cart .wc-block-cart-item__image img { border-radius: 10px; background: #edf6f2; }
.woocommerce-cart .wc-block-components-product-name { color: var(--ink); font-weight: 800; }
.woocommerce-cart .wc-block-components-product-metadata { color: var(--muted); font-size: .82rem; }
.woocommerce-cart .wc-block-components-quantity-selector { overflow: hidden; border-color: #cbdcd5; border-radius: 8px; }
.woocommerce-cart .wc-block-cart-item__remove-link { color: var(--green-700) !important; }
.woocommerce-cart .wc-block-cart__totals-title { color: var(--green-900); font-size: .78rem; font-weight: 900; letter-spacing: .09em; }
.woocommerce-cart .wc-block-components-totals-footer-item { color: var(--ink); }
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  min-height: 54px;
  border: 0 !important;
  border-radius: 10px !important;
  color: #fff !important;
  background: linear-gradient(135deg,var(--green-700),var(--green-500)) !important;
  box-shadow: 0 12px 25px rgba(7,156,104,.22);
  font-weight: 850;
  transition: transform .22s, box-shadow .22s;
}
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(7,156,104,.3); }
.woocommerce-cart .wc-block-cart__empty-cart__title { color: var(--green-900); font-size: clamp(1.8rem,3vw,2.7rem); }

.woocommerce-checkout .wp-site-blocks > header { border-bottom: 1px solid rgba(6,60,52,.09); background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(3,47,42,.06); }
.woocommerce-checkout .wp-site-blocks > header > .wp-block-group { width: min(calc(100% - 40px),var(--container)); min-height: 82px; margin-inline: auto; padding-block: 12px !important; }
.woocommerce-checkout .wp-site-blocks > header .custom-logo { max-width: 220px; max-height: 54px; }
.woocommerce-checkout .wp-site-blocks > header .wp-block-site-title { margin: 0; color: var(--green-900); font-weight: 850; }
.woocommerce-checkout .wp-block-woocommerce-cart-link { color: var(--green-700); }
.woocommerce-checkout main[data-page="checkout"] { width: min(calc(100% - 40px),var(--container)); max-width: var(--container) !important; margin-inline: auto; padding-block: 56px 90px; }
.woocommerce-checkout .wp-block-woocommerce-checkout { margin: 0; }
.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wc-block-checkout__sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(3,47,42,.08);
}
.woocommerce-checkout .wc-block-checkout__main { padding: 34px 38px 38px; }
.woocommerce-checkout .wc-block-checkout__sidebar { align-self: start; padding: 26px 28px; }
.woocommerce-checkout .wc-block-components-checkout-step { padding-left: 0; }
.woocommerce-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-components-checkout-order-summary__title { color: var(--green-900); font-size: 1.25rem; font-weight: 850; }
.woocommerce-checkout .wc-block-components-checkout-step__content { padding-left: 0; }
.woocommerce-checkout :is(.wc-block-components-text-input input,.wc-blocks-components-select__select,.wc-block-components-combobox .wc-block-components-combobox-control input) {
  min-height: 52px;
  border-color: #c9d9d3 !important;
  border-radius: 9px !important;
  background: #fbfdfc !important;
}
.woocommerce-checkout :is(.wc-block-components-text-input input,.wc-blocks-components-select__select,.wc-block-components-combobox .wc-block-components-combobox-control input):focus { border-color: var(--green-600) !important; box-shadow: 0 0 0 3px rgba(22,199,122,.12) !important; }
.woocommerce-checkout .wc-block-components-order-summary-item__image img { border-radius: 9px; background: #edf6f2; }
.woocommerce-checkout .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-product-name { color: var(--ink); font-weight: 800; }
.woocommerce-checkout .wc-block-components-panel__button { color: var(--green-800); }
.woocommerce-checkout .wc-block-checkout__terms { color: var(--muted); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal--delay { --delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .header-phone span { display: none; }
  .site-nav__list { gap: 18px; }
  .hero-grid { gap: 35px; }
  .process-grid { grid-template-columns: .85fr .55fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 72px; gap: 12px; }
  .site-header--minimal .site-brand { flex: 0 0 auto; margin-inline: auto; }
  .site-brand { width: auto; flex: 1 1 auto; margin-right: auto; min-width: 0; }
  .custom-logo { max-width: 165px; max-height: 44px; width: auto; height: auto; }
  .nav-toggle { display: block; order: 4; flex: 0 0 43px; }
  .header-search-toggle { order: 3; flex: 0 0 43px; }
  .header-cart { order: 2; flex: 0 0 43px; margin-left: 0; }
  .header-phone { display: none; }
  .header-cta { display: none; }
  .site-nav { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; order: 5; z-index: 2000; visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-12px); background: #fff; box-shadow: 0 20px 30px rgba(3,47,42,.12); overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .site-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 25px 20px 40px; }
  .site-nav a { display: block; padding: 12px; font-size: 1rem; }
  .site-nav .menu-item-has-children > a { display: flex; }
  .site-nav .sub-menu { position: static; width: auto; padding: 0 0 8px 18px; visibility: hidden; opacity: 0; pointer-events: none; transform: none; border: 0; box-shadow: none; }
  .site-nav.is-open .sub-menu { visibility: visible; opacity: 1; pointer-events: auto; }
  .site-nav .sub-menu li + li { border-top: 0; }
  .site-nav .sub-menu a { padding-block: 7px; color: var(--muted); font-size: .88rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 70px 55px; }
  .hero-copy { max-width: 680px; }
  .image-placeholder--hero { min-height: 350px; }
  .trust-grid, .credential-bar { grid-template-columns: 1fr; }
  .trust-grid > div, .credential-bar > div { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child, .credential-bar > div:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid, .why-grid, .review-layout { grid-template-columns: 1fr; gap: 42px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-intro { grid-column: 1 / -1; }
  .location-grid { grid-template-columns: 1fr; }
  .landing-hero__grid, .landing-content__grid, .landing-form__grid { grid-template-columns: 1fr; gap: 42px; }
  .landing-hero__comparison .before-after { margin-inline: auto; }
  .landing-content--reverse .landing-content__copy, .landing-content--reverse .image-placeholder { order: initial; }
  .landing-facts__grid { grid-template-columns: 1fr; }
  .landing-facts__grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .landing-facts__grid > div:last-child { border-bottom: 0; }
  .landing-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .landing-benefits__intro { margin-bottom: 36px; }
  .landing-review-grid { grid-template-columns: repeat(3, 1fr); }
  .screen-products__grid { grid-template-columns: repeat(2, 1fr); }
  .brands-marquee__track, .brands-marquee__group { gap: 36px; }
  @keyframes tcpw-brands-marquee { to { transform: translate3d(calc(-50% - 18px),0,0); } }
  .contact-cards { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr); }
  .woo-content .wc-block-product-template { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .woocommerce-checkout .wc-block-checkout__main { padding: 28px; }
  .woocommerce-checkout .wc-block-checkout__sidebar { padding: 24px; }
  .search-overlay { top: 72px; z-index: 2001; }
  .search-overlay__inner { width: min(calc(100% - 28px), var(--container)); padding-block: 24px 28px; }
  .search-overlay__input { font-size: 1.1rem; }
  .search-result__list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 72px; }
  .header-phone { display: none; }
  .hero-grid { padding-top: 58px; }
  .hero-copy h1 { font-size: clamp(2.3rem, 12vw, 3.7rem); }
  .hero-points { flex-direction: column; }
  .image-placeholder--hero { min-height: 300px; }
  .trust-grid > div, .credential-bar > div { padding-inline: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-intro { grid-column: auto; }
  .image-placeholder--phone { min-height: 330px; }
  .landing-benefits__grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .screen-products__grid { grid-template-columns: 1fr; }
  .reviews-score { flex-direction: column; align-items: flex-start; }
  .reviews-score > p { justify-content: flex-start; text-align: left; }
  .landing-review-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .review-layout { gap: 38px; }
  .review-track { min-height: 400px; }
  .review-card { padding: 30px 27px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .landing-hero__grid { min-height: auto; padding-block: 62px; }
  .landing-hero__copy h1 { font-size: clamp(1.9rem, 8.5vw, 2.45rem); line-height: 1.12; }
  .image-placeholder--landing { min-height: 285px; }
  .service-video--landing { min-height: 245px; }
  .service-video--vertical { min-height: 0; }
  .phone-video-showcase { width: 100%; padding: 46px 12px 58px; }
  .phone-video-frame { width: min(100%, 305px); border-width: 6px; border-radius: 45px; }
  .service-video--phone { border-radius: 31px; }
  .phone-video-notch { top: 17px; height: 24px; }
  .phone-video-badge { min-width: 166px; padding: 11px 13px; border-radius: 14px; }
  .phone-video-badge svg { flex-basis: 24px; width: 24px; height: 24px; }
  .phone-video-badge strong { font-size: .82rem; }
  .phone-video-badge small { font-size: .7rem; }
  .phone-video-badge--speed { top: 67px; left: 0; }
  .phone-video-badge--warranty { right: 0; bottom: 94px; }
  .before-after { border-radius: 16px; }
  .before-after__label { top: 13px; padding: 7px 10px; font-size: .65rem; }
  .before-after__label--before { left: 13px; }
  .before-after__label--after { right: 13px; }
  .before-after__divider span { width: 44px; height: 44px; font-size: 1rem; }
  .brands-marquee { padding-block: 27px 31px; }
  .landing-review-grid { grid-template-columns: 1fr; }
  .reviews-score { padding: 24px 22px; }
  .brands-marquee__heading { display: block; margin-bottom: 19px; }
  .brands-marquee__heading > p:last-child { margin-top: 7px; }
  .brands-marquee__viewport { mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
  .brands-marquee__track, .brands-marquee__group { gap: 28px; }
  .brands-marquee__item { width: 118px; height: 58px; padding: 7px 10px; }
  @keyframes tcpw-brands-marquee { to { transform: translate3d(calc(-50% - 14px),0,0); } }
  .blog-index { width: min(calc(100% - 28px), var(--container)); }
  .blog-query .wp-block-post-template, .archive-shell .wp-block-post-template { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .woocommerce main, .woocommerce-page main { width: min(calc(100% - 28px), var(--container)); }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .shop-page-hero > *, .woo-content { width: min(calc(100% - 28px), var(--container)); }
  .woo-content .wc-block-product-template { grid-template-columns: 1fr !important; }
  .woocommerce-cart main > .wp-block-post-title { margin-bottom: 22px; padding: 25px 22px; }
  .woocommerce-cart .wc-block-cart__main { padding: 4px 16px 18px; }
  .woocommerce-cart .wc-block-cart__sidebar { padding: 22px 20px 24px; }
  .woocommerce-checkout .wp-site-blocks > header > .wp-block-group,
  .woocommerce-checkout main[data-page="checkout"] { width: min(calc(100% - 28px),var(--container)); }
  .woocommerce-checkout .wp-site-blocks > header > .wp-block-group { min-height: 72px; }
  .woocommerce-checkout main[data-page="checkout"] { padding-block: 30px 70px; }
  .woocommerce-checkout .wc-block-checkout__main,
  .woocommerce-checkout .wc-block-checkout__sidebar { padding: 21px 18px; border-radius: 16px; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
  .brands-marquee__track { animation: none; }
}

/* Thank-you (gracias) page */
.thanks-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 75% 15%, rgba(22,199,122,.25), transparent 35%), linear-gradient(115deg, var(--green-950), var(--green-800)); }
.thanks-hero::after { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 55px 55px; pointer-events: none; }
.thanks-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding-block: 105px 95px; text-align: center; }
.thanks-check { display: grid; width: 92px; height: 92px; margin-bottom: 30px; place-items: center; border: 1px solid rgba(154,244,200,.5); border-radius: 50%; color: var(--mint); background: rgba(154,244,200,.12); box-shadow: 0 0 0 12px rgba(154,244,200,.08); font-size: 2.3rem; font-weight: 900; }
.thanks-hero__inner h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(2.4rem, 4.5vw, 4rem); line-height: 1.02; letter-spacing: -.045em; }
.thanks-hero__inner > p:not(.eyebrow) { max-width: 620px; margin-bottom: 32px; color: #d4e3df; }
.thanks-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.thanks-hero__actions .button--ghost { background: transparent; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); }
.thanks-hero__actions .button--ghost:hover { background: rgba(255,255,255,.1); }

.thanks-steps { background: #fff; }
.thanks-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.thanks-heading .eyebrow { margin-bottom: 12px; }
.thanks-heading h2 { margin: 0 0 14px; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.thanks-heading > p:last-child { margin: 0; color: var(--muted); }
.thanks-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.thanks-step { padding: 34px 30px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 35px rgba(3,47,42,.06); transition: transform .3s, box-shadow .3s; }
.thanks-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.thanks-step__num { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 20px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-500)); font-size: .8rem; font-weight: 900; }
.thanks-step h3 { margin-bottom: 9px; font-size: 1.1rem; line-height: 1.3; }
.thanks-step p { margin: 0; color: var(--muted); font-size: .88rem; }

.thanks-contact { background: #f7faf9; }
.thanks-contact__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.thanks-contact__copy > p:not(.eyebrow) { color: var(--muted); }
.thanks-contact__copy h2 { margin-bottom: 14px; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; }
.thanks-contact__card { padding: 30px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 40px rgba(3,47,42,.08); }
.thanks-contact__item { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid #eef3f1; }
.thanks-contact__item:last-child { border-bottom: 0; }
.thanks-contact__item > span { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--green-600); background: #e2f8ed; font-weight: 900; }
.thanks-contact__item strong { display: block; font-size: .9rem; }
.thanks-contact__item small, .thanks-contact__item a { color: var(--muted); font-size: .84rem; }
.thanks-contact__item a:hover { color: var(--green-700); }

@media (max-width: 900px) {
  .thanks-steps__grid { grid-template-columns: 1fr; }
  .thanks-contact__grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 620px) {
  .thanks-hero__inner { padding-block: 68px 60px; }
  .thanks-check { width: 78px; height: 78px; margin-bottom: 24px; font-size: 1.9rem; }
  .thanks-contact__card { padding: 24px 22px; }
  .faq-page .page-hero--compact { padding-block: 72px; }
  .faq-category { margin-top: 36px; }
  .faq-cta { padding: 32px 22px; margin-top: 42px; }
}
