:root {
  --navy: #061827;
  --navy-2: #0b2639;
  --navy-3: #143a52;
  --orange: #ff5a0a;
  --orange-dark: #d94700;
  --danger: #DC2626;
  --green: #25D366;
  --green-dark: #1FB855;
  --cream: #f6f3ed;
  --cream-2: #ede7dc;
  --white: #ffffff;
  --text: #14232f;
  --muted: #667580;
  --border: #dce2e5;
  --shadow-sm: 0 10px 30px rgba(6, 24, 39, .08);
  --shadow-lg: 0 28px 70px rgba(6, 24, 39, .18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Cairo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 120px) 0; }
.section--compact { padding: 38px 0; }
.section--navy { color: var(--white); background: var(--navy); }
.section--cream { background: var(--cream); }
.content-narrow { width: min(100%, 780px); }

h1, h2, h3, h4 { margin: 0 0 .55em; color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 5.5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.55rem); }
h3 { font-size: clamp(1.12rem, 1.6vw, 1.45rem); }
p { margin: 0 0 1.15em; }
.section--navy h1, .section--navy h2, .section--navy h3, .final-cta h2, .article-cta h2 { color: var(--white); }

.eyebrow { margin: 0 0 13px; color: var(--orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow--light { color: #ff9a67; }
.section-heading { max-width: 780px; margin-bottom: 45px; }
.section-heading h2 { max-width: 740px; }
.section-heading__text { max-width: 690px; color: var(--muted); font-size: 1.08rem; }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus { clip: auto !important; clip-path: none; display: block; height: auto; width: auto; left: 10px; top: 10px; z-index: 100000; padding: 12px 16px; background: #fff; color: #000; }

.topbar { background: #03111c; color: #d9e5ec; font-size: .82rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__location, .topbar__actions, .topbar__actions a { display: flex; align-items: center; gap: 8px; }
.topbar__actions { gap: 22px; }
.topbar__actions a:hover { color: #fff; }
.topbar__quote { min-height: 38px; padding: 0 18px; background: var(--orange); color: #fff !important; font-weight: 800; }
.topbar svg { width: 15px; height: 15px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(6,24,39,.08); backdrop-filter: blur(12px); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 32px; }
.site-branding { flex: 0 0 auto; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { max-height: 54px; width: auto; }
.brand-wordmark { display: inline-flex; align-items: center; gap: 1px; color: var(--navy); font-size: 1.55rem; font-weight: 900; letter-spacing: -.06em; line-height: 1; }
.brand-wordmark strong { color: var(--orange); }
.brand-wordmark--footer { color: #fff; font-size: 1.7rem; }

.primary-navigation { margin-left: auto; }
.primary-navigation .menu { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.primary-navigation a { display: flex; align-items: center; min-height: 44px; padding: 0 12px; color: #20313e; font-size: .91rem; font-weight: 700; border-radius: 9px; }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a, .primary-navigation .current-menu-ancestor > a { color: var(--orange-dark); background: #fff3ec; }
.primary-navigation .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; margin-left: 8px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg) translateY(-2px); }
.primary-navigation .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; z-index: 10; width: 255px; margin: 0; padding: 10px; list-style: none; visibility: hidden; opacity: 0; transform: translateY(8px); background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); transition: .18s ease; }
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.primary-navigation .sub-menu a { min-height: 42px; padding: 8px 11px; }

.header-call { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 17px; color: #fff; background: var(--navy); border-radius: 11px; font-size: .9rem; font-weight: 800; }
.header-call:hover { background: var(--orange); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; align-items: center; justify-content: center; color: var(--navy); background: #fff; border: 1px solid var(--border); border-radius: 11px; }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle__close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { display: inline-flex; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 850; line-height: 1.1; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button--primary { color: #fff; background: var(--orange); box-shadow: 0 12px 25px rgba(255,90,10,.24); }
.button--primary:hover { background: var(--orange-dark); }
.button--whatsapp { color: #fff; background: var(--green); box-shadow: 0 12px 25px rgba(31,170,89,.19); }
.button--whatsapp:hover { background: var(--green-dark); }
.button--outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.35); }
.button--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.button--full { width: 100%; }
.text-link, .section-link a { color: var(--orange-dark); font-weight: 800; }
.text-link:hover, .section-link a:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero { position: relative; overflow: hidden; padding: clamp(68px, 8vw, 105px) 0; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; right: -130px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,10,.2), rgba(255,90,10,0) 70%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 130px; opacity: .22; background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.08) 30% 31%, transparent 31% 40%, rgba(255,255,255,.05) 40% 41%, transparent 41%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: clamp(40px, 7vw, 88px); }
.hero__content h1 { max-width: 650px; margin-bottom: 23px; }
.hero__content h1 span { display: block; color: #fff; }
.hero__content h1:not(span) { color: #fff; }
.hero__lead { max-width: 630px; color: #c9d6de; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero__content .button-row { margin-top: 32px; }
.hero__promise { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: #b9c9d2; font-size: .93rem; }
.hero__promise svg { color: #ff9a67; }
.hero__visual { position: relative; }
.hero__visual::before { content: ""; position: absolute; inset: -14px 18px 18px -14px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); }
.hero__visual img { position: relative; width: 100%; aspect-ratio: 1.12 / .78; object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__visual-card { position: absolute; left: -28px; bottom: 28px; display: flex; align-items: center; gap: 13px; min-width: 230px; padding: 16px 18px; color: var(--navy); background: #fff; border-radius: 15px; box-shadow: var(--shadow-lg); }
.hero__visual-card > span { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--orange); border-radius: 11px; }
.hero__visual-card strong, .hero__visual-card small { display: block; }
.hero__visual-card small { margin-top: 1px; color: var(--muted); font-size: .75rem; }

.trust-strip { position: relative; z-index: 2; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--border); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; min-height: 112px; padding: 20px 32px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--navy); }
.trust-item small { margin-top: 3px; color: var(--muted); font-size: .82rem; }
.icon-box { display: inline-grid; place-items: center; width: 52px; height: 52px; flex: 0 0 auto; color: var(--orange-dark); background: #fff1e9; border: 1px solid #ffd6c1; border-radius: 14px; }
.icon-box svg { width: 25px; height: 25px; }
.icon-box--small { width: 45px; height: 45px; border-radius: 12px; }
.icon-box--small svg { width: 21px; height: 21px; }
.icon-box--large { width: 70px; height: 70px; border-radius: 20px; }
.icon-box--large svg { width: 34px; height: 34px; }
.icon-box--xl { width: 90px; height: 90px; border-radius: 24px; }
.icon-box--xl svg { width: 45px; height: 45px; }

.brands { background: #fff; border-bottom: 1px solid var(--border); }
.brands__heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.brands__heading .eyebrow { margin-bottom: 3px; }
.brands__heading p:last-child { margin: 0; color: var(--muted); font-size: .82rem; }
.brands__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.brands__grid img { width: 100%; height: 72px; object-fit: contain; padding: 12px 20px; filter: grayscale(1); opacity: .64; background: #fff; border: 1px solid var(--border); border-radius: 12px; transition: .18s ease; }
.brands__grid img:hover { filter: grayscale(0); opacity: 1; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.services-grid--wide { grid-template-columns: repeat(4, 1fr); }
.service-card { position: relative; min-height: 315px; padding: 26px; overflow: hidden; background: #fff; border: 1px solid #e5ded4; border-radius: var(--radius); box-shadow: 0 8px 25px rgba(6,24,39,.035); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card::after { content: ""; position: absolute; right: -35px; bottom: -45px; width: 110px; height: 110px; background: #fff4ed; border-radius: 50%; transition: transform .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #ffc6a8; box-shadow: var(--shadow-sm); }
.service-card:hover::after { transform: scale(1.45); }
.service-card__number { position: absolute; right: 22px; top: 19px; color: #d8d0c6; font-size: 2.35rem; font-weight: 900; letter-spacing: -.06em; line-height: 1; }
.service-card__icon { margin-bottom: 27px; }
.service-card__eyebrow { display: block; margin-bottom: 7px; color: var(--orange-dark); font-size: .69rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { min-height: 56px; margin-bottom: 20px; color: var(--muted); font-size: .92rem; }
.service-card__link { position: relative; z-index: 2; color: var(--navy); font-size: .88rem; font-weight: 850; }
.service-card:hover .service-card__link { color: var(--orange-dark); }

.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.method-copy { position: sticky; top: 120px; }
.method-promise { display: flex; gap: 15px; padding: 19px; background: var(--cream); border-left: 4px solid var(--orange); border-radius: 0 13px 13px 0; }
.method-promise span { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; background: var(--orange); border-radius: 50%; flex: 0 0 auto; }
.method-promise p { margin: 0; color: var(--muted); font-size: .9rem; }
.method-promise strong { color: var(--navy); }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.step-card { min-height: 220px; padding: 29px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.step-card > span { display: inline-flex; margin-bottom: 38px; color: var(--orange-dark); font-size: .78rem; font-weight: 900; letter-spacing: .14em; }
.step-card p { color: var(--muted); font-size: .92rem; }
.step-card--accent { color: #fff; background: var(--orange); border-color: var(--orange); }
.step-card--accent h3, .step-card--accent > span { color: #fff; }
.step-card--accent p { color: #ffe8dc; }

.request-section { position: relative; overflow: hidden; }
.request-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -180px; bottom: -360px; border: 90px solid rgba(255,255,255,.035); border-radius: 50%; }
.request-section__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 7vw, 90px); align-items: center; }
.request-section__grid > div > p:not(.eyebrow) { max-width: 510px; color: #c6d3db; }
.check-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list svg { margin-top: 4px; color: var(--orange); }
.check-list--light { color: #d8e2e8; font-size: .93rem; }
.request-form { padding: clamp(23px, 3vw, 34px); color: var(--text); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.request-form__header { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 22px; padding-bottom: 19px; border-bottom: 1px solid var(--border); }
.request-form__header strong, .request-form__header span { display: block; }
.request-form__header strong { color: var(--navy); font-size: 1.06rem; }
.request-form__header div > span { color: var(--muted); font-size: .78rem; }
.request-form__wa { display: grid !important; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--green); border-radius: 12px; }
.request-form__wa svg { width: 24px; height: 24px; fill: currentColor; stroke: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 16px; }
.form-grid label:first-child { grid-column: 1 / -1; }
.form-grid label { display: grid; gap: 6px; color: var(--navy); font-size: .78rem; font-weight: 800; }
.form-grid input, .form-grid select { width: 100%; min-height: 49px; padding: 0 13px; color: var(--text); background: #fbfcfc; border: 1px solid #ccd5da; border-radius: 10px; outline: none; }
.form-grid input:focus, .form-grid select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,10,.11); }
.form-note { margin: 11px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }

.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.reviews-heading .section-heading { margin-bottom: 35px; }
.rating-badge { display: grid; min-width: 175px; margin-bottom: 35px; padding: 15px 18px; background: var(--cream); border: 1px solid var(--cream-2); border-radius: 13px; }
.rating-badge strong { color: var(--navy); font-size: 1.4rem; }
.rating-badge span { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: .75rem; }
.rating-badge svg { color: #f6aa18; fill: currentColor; stroke: none; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { margin: 0; padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 25px rgba(6,24,39,.035); }
.review-stars { margin-bottom: 18px; color: #f6aa18; letter-spacing: 3px; }
.review-card blockquote { min-height: 70px; margin: 0 0 24px; color: var(--navy); font-size: 1.05rem; font-weight: 650; }
.review-card footer { display: flex; align-items: center; gap: 12px; }
.review-card footer > span { display: grid; place-items: center; width: 42px; height: 42px; color: #fff; background: var(--navy); border-radius: 50%; font-weight: 800; }
.review-card footer strong, .review-card footer small { display: block; }
.review-card footer small { color: var(--muted); }
.section-link { margin-top: 25px; text-align: center; }

.zones-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(35px, 6vw, 75px); align-items: center; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; }
.zone-tags span { padding: 8px 13px; color: var(--navy); background: #fff; border: 1px solid #ddd6ca; border-radius: 999px; font-size: .82rem; font-weight: 750; }
.map-frame { min-height: 410px; overflow: hidden; background: #ddd; border: 8px solid #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 410px; border: 0; display: block; }

.blog-preview__heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.blog-preview__heading .section-heading { margin-bottom: 40px; }
.blog-preview__heading .text-link { margin-bottom: 43px; white-space: nowrap; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.posts-grid--archive { grid-template-columns: repeat(3, 1fr); }
.post-card { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.post-card__visual { display: block; height: 180px; overflow: hidden; background: var(--navy); }
.post-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.post-card:hover .post-card__visual img { transform: scale(1.04); }
.post-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: rgba(255,255,255,.7); background: radial-gradient(circle at 70% 20%, rgba(255,90,10,.48), transparent 35%), linear-gradient(135deg, var(--navy), var(--navy-3)); }
.post-card__placeholder svg { width: 70px; height: 70px; }
.post-card__body { padding: 23px; }
.post-card__meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 14px; color: var(--orange-dark); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.post-card h3 { font-size: 1.25rem; }
.post-card h3 a:hover { color: var(--orange-dark); }
.post-card p { color: var(--muted); font-size: .9rem; }
.post-card__link { color: var(--orange-dark); font-size: .86rem; font-weight: 850; }

.final-cta { padding: 45px 0; color: #fff; background: var(--orange); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { margin-bottom: 5px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.final-cta p { margin: 0; color: #ffe3d5; }
.final-cta .button--primary { color: var(--navy); background: #fff; box-shadow: none; }
.final-cta .button--primary:hover { color: var(--orange-dark); }

.page-hero, .service-hero, .article-hero { position: relative; overflow: hidden; }
.page-hero::after, .service-hero::after, .article-hero::after { content: ""; position: absolute; right: -180px; top: -230px; width: 540px; height: 540px; border: 80px solid rgba(255,255,255,.035); border-radius: 50%; }
.page-hero__grid, .service-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.page-hero h1, .service-hero h1 { max-width: 780px; font-size: clamp(2.7rem, 5.5vw, 5rem); }
.page-hero__grid > div:first-child > p:not(.eyebrow), .service-hero__grid > div:first-child > p:not(.eyebrow) { max-width: 660px; color: #c5d3db; font-size: 1.08rem; }
.page-hero .button-row, .service-hero .button-row { margin-top: 28px; }
.page-hero__badge { padding: 32px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); backdrop-filter: blur(10px); }
.page-hero__badge strong { display: block; margin: 22px 0 7px; color: #fff; font-size: 1.35rem; }
.page-hero__badge p { margin: 0; color: #bfcdd5; }
.service-hero__panel { display: flex; gap: 24px; align-items: flex-start; padding: 30px; background: #fff; color: var(--text); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.service-hero__panel strong { display: block; margin: 3px 0 7px; color: var(--navy); font-size: 1.2rem; }
.service-hero__panel p { color: var(--muted); }
.service-hero__panel a { color: var(--orange-dark); font-weight: 850; }

.offers-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.offer-card { min-height: 195px; padding: 25px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.offer-card > span { display: inline-block; margin-bottom: 35px; color: var(--orange-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.offer-card p { color: var(--muted); font-size: .9rem; }
.service-aside { display: grid; gap: 16px; position: sticky; top: 115px; }
.service-aside > div { padding: 24px; color: #fff; background: var(--navy); border-radius: var(--radius); }
.service-aside > div:last-child { color: var(--text); background: var(--cream); }
.service-aside > div:last-child h3 { color: var(--navy); }
.service-aside h3 { color: #fff; }
.service-aside p { margin: 0; color: var(--muted); }
.service-aside .check-list { margin-top: 15px; color: #d4e0e6; font-size: .88rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; background: #ddd6ca; border: 1px solid #ddd6ca; border-radius: var(--radius); }
.process-grid article { min-height: 235px; padding: 27px; background: #fff; }
.process-grid article > span { display: inline-flex; margin-bottom: 46px; color: var(--orange-dark); font-size: .76rem; font-weight: 900; letter-spacing: .13em; }
.process-grid article p { color: var(--muted); font-size: .9rem; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 100px); }
.faq-layout .section-heading { margin-bottom: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 14px; }
.faq-list summary { position: relative; padding: 20px 52px 20px 21px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--orange-dark); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 21px 21px; color: var(--muted); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { min-height: 315px; padding: 27px; background: #fff; border: 1px solid #e3dcd1; border-radius: var(--radius); }
.project-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 50px; }
.project-card__number { color: #c8beb2; font-size: 2.25rem; font-weight: 900; line-height: 1; }
.project-card h2 { font-size: 1.45rem; }
.project-card > p:last-child { color: var(--muted); }
.simple-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px; background: var(--cream); border-radius: var(--radius); }
.simple-cta h2 { max-width: 680px; margin-bottom: 0; font-size: clamp(1.7rem, 3vw, 2.65rem); }

.contact-quick-links { display: grid; gap: 12px; }
.contact-quick-links > a, .contact-quick-links > div { display: flex; align-items: center; gap: 15px; padding: 16px; color: var(--text); background: #fff; border-radius: 15px; }
.contact-quick-links small, .contact-quick-links strong { display: block; }
.contact-quick-links small { color: var(--muted); font-size: .75rem; }
.contact-quick-links strong { color: var(--navy); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.contact-layout .request-form { box-shadow: var(--shadow-sm); }

.article-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.article-hero__inner > p:not(.eyebrow) { max-width: 760px; color: #c8d5dd; font-size: 1.08rem; }
.article-hero h1 { font-size: clamp(2.45rem, 5vw, 4.7rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 25px; color: #aebfc8; font-size: .83rem; }
.article-featured { margin-bottom: 35px; overflow: hidden; border-radius: var(--radius); }
.prose { color: #273743; font-size: 1.05rem; }
.prose > * { max-width: 100%; }
.prose h2 { margin-top: 2em; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.prose h3 { margin-top: 1.7em; }
.prose a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 30px 0; padding: 24px 27px; color: var(--navy); background: var(--cream); border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose img { border-radius: 14px; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 60px; padding: 34px; color: #fff; background: var(--navy); border-radius: var(--radius); }
.article-cta h2 { margin-bottom: 6px; font-size: 2rem; }
.article-cta p { margin: 0; color: #bdccd4; }

.pagination-wrap { margin-top: 38px; }
.nav-links { display: flex; justify-content: center; gap: 7px; flex-wrap: wrap; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; background: #fff; border: 1px solid var(--border); border-radius: 9px; font-weight: 750; }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--orange); border-color: var(--orange); }

.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.not-found .container { max-width: 750px; }
.not-found__code { margin: 0; color: rgba(255,255,255,.12); font-size: clamp(7rem, 18vw, 13rem); font-weight: 950; line-height: .8; }
.not-found .button-row { justify-content: center; margin-top: 28px; }

.site-footer { padding: 75px 0 22px; color: #b8c8d1; background: #03111c; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .8fr 1.15fr; gap: 50px; }
.footer-brand p { max-width: 330px; margin-top: 20px; font-size: .9rem; }
.footer-title { margin: 4px 0 18px; color: #fff; font-size: .94rem; letter-spacing: .03em; }
.footer-links, .footer-contact { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; font-size: .88rem; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { margin-top: 4px; color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.mobile-contact-bar { display: none; }

@media (max-width: 1080px) {
  .primary-navigation a { padding-inline: 8px; font-size: .84rem; }
  .header-call { padding-inline: 13px; }
  .services-grid, .services-grid--wide { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .topbar__location { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .site-header__inner { gap: 13px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-call { min-width: 46px; width: 46px; padding: 0; justify-content: center; }
  .header-call span { display: none; }
  .primary-navigation { position: fixed; top: calc(38px + var(--header-height)); left: 0; right: 0; bottom: 0; z-index: 100; display: none; margin: 0; padding: 15px 20px 40px; overflow-y: auto; background: #fff; border-top: 1px solid var(--border); }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .menu { display: block; }
  .primary-navigation a { min-height: 52px; padding: 0 14px; font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .primary-navigation .sub-menu { position: static; display: block; width: auto; padding: 0 0 0 15px; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; }
  .primary-navigation .sub-menu a { font-size: .91rem; }
  .primary-navigation .menu-item-has-children > a::after { display: none; }

  .hero__grid, .page-hero__grid, .service-hero__grid, .request-section__grid, .zones-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero__content { max-width: 720px; }
  .hero__visual { width: min(100%, 700px); }
  .hero__visual-card { left: 20px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 88px; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: 0; }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: 1fr; }
  .method-copy { position: static; }
  .request-section__grid { align-items: stretch; }
  .reviews-grid, .posts-grid, .posts-grid--archive, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero__badge { max-width: 580px; }
  .offers-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .simple-cta, .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 15px; padding-bottom: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 65px 0; }
  .section--compact { padding: 28px 0; }
  .topbar__actions { width: 100%; justify-content: space-between; gap: 8px; }
  .topbar__quote { margin-right: -14px; }
  .brand-wordmark { font-size: 1.38rem; }
  .hero { padding-top: 58px; }
  .hero__grid { gap: 45px; }
  .hero__content h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero__lead { font-size: 1rem; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
  .hero__visual::before { inset: -8px 10px 10px -8px; }
  .hero__visual img { aspect-ratio: 1 / .76; border-radius: 22px; }
  .hero__visual-card { left: 12px; right: 12px; bottom: 12px; min-width: 0; }
  .brands__heading { display: block; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid img { height: 62px; padding: 9px 13px; }
  .services-grid, .services-grid--wide, .steps-grid, .offers-grid, .process-grid, .reviews-grid, .posts-grid, .posts-grid--archive, .projects-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .step-card { min-height: 190px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label:first-child { grid-column: auto; }
  .reviews-heading, .blog-preview__heading { display: block; }
  .rating-badge { width: fit-content; margin-top: -20px; }
  .blog-preview__heading .text-link { display: inline-block; margin: -12px 0 28px; }
  .map-frame, .map-frame iframe { min-height: 330px; height: 330px; }
  .service-hero__panel { display: block; }
  .service-hero__panel .icon-box { margin-bottom: 20px; }
  .service-aside { grid-template-columns: 1fr; }
  .simple-cta { padding: 28px; }
  .article-cta { display: block; padding: 27px; }
  .article-cta .button { width: 100%; margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }
  .mobile-contact-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; display: grid; grid-template-columns: 1fr 1fr; min-height: 68px; color: #fff; background: var(--navy); box-shadow: 0 -8px 28px rgba(6,24,39,.2); }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 850; }
  .mobile-contact-bar__whatsapp { background: var(--green); }
  .mobile-contact-bar svg { width: 21px; height: 21px; }
}

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