@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy: #062b50;
  --navy-2: #0a3e6e;
  --blue: #0786cf;
  --cyan: #35c7e7;
  --sky: #eaf7fc;
  --ink: #10243a;
  --muted: #6c7d8d;
  --line: #d9e6ee;
  --white: #fff;
  --shadow: 0 20px 55px rgba(10, 51, 82, .12);
  --font: 'DM Sans', Arial, sans-serif;
  --display: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.25rem; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: var(--display); letter-spacing: -.05em; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6vw, 5.65rem); }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
h3 { font-size: 1.3rem; }
em { color: var(--blue); font-style: normal; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.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; width: 1px; word-wrap: normal !important; }
.screen-reader-text:focus { background: #fff; clip: auto; clip-path: none; color: #000; height: auto; left: 10px; padding: 10px 16px; top: 10px; width: auto; z-index: 100000; }

/* Header */
.announcement-bar { background: var(--navy); color: #d5f6ff; font-size: .76rem; letter-spacing: .06em; overflow: hidden; }
.announcement-inner { display: flex; height: 38px; align-items: center; gap: 13px; }
.announcement-pulse { width: 7px; height: 7px; background: #38d3ed; border-radius: 50%; box-shadow: 0 0 0 5px rgba(56, 211, 237, .15); flex: 0 0 auto; }
.announcement-track { flex: 1; overflow: hidden; white-space: nowrap; display: flex; gap: 80px; }
.announcement-track span { animation: marquee 24s linear infinite; flex: 0 0 auto; }
.announcement-cta { color: #fff; font-weight: 700; white-space: nowrap; }
.announcement-cta span { color: var(--cyan); margin-left: 5px; }
.site-header { background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(217,230,238,.7); position: relative; z-index: 20; backdrop-filter: blur(14px); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 255px; }
.brand-logo { width: 55px; height: 45px; object-fit: contain; object-position: center; }
.custom-logo { max-width: 58px; max-height: 50px; width: auto; height: auto; }
.brand-copy { color: var(--navy); display: flex; flex-direction: column; line-height: .95; font-family: var(--display); letter-spacing: -.04em; }
.brand-copy strong { font-size: 1.45rem; letter-spacing: .07em; }
.brand-copy small { font-size: .55rem; color: var(--blue); letter-spacing: .11em; font-weight: 800; margin-top: 5px; }
.main-navigation { margin-left: auto; }
.main-navigation ul { display: flex; gap: 30px; padding: 0; margin: 0; list-style: none; align-items: center; }
.main-navigation a { color: #496174; font-size: .87rem; font-weight: 700; transition: color .2s ease; }
.main-navigation a:hover, .main-navigation .current-menu-item a { color: var(--blue); }
.header-call { align-items: center; border-left: 1px solid var(--line); color: var(--navy); display: flex; gap: 10px; line-height: 1.2; padding-left: 27px; font-weight: 700; white-space: nowrap; }
.header-call small { display: block; color: var(--muted); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.call-icon { display: grid; place-items: center; background: var(--sky); border-radius: 50%; color: var(--blue); font-size: 1.5rem; height: 38px; width: 38px; transform: rotate(-35deg); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 5px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy); }

/* Reusable */
.eyebrow { color: var(--blue); font-size: .71rem; font-weight: 800; letter-spacing: .17em; margin-bottom: 20px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.eyebrow-line { background: currentColor; display: inline-block; height: 2px; width: 29px; }
.eyebrow-light { color: #52c9e8; }
.button { align-items: center; border: 1px solid transparent; border-radius: 4px; display: inline-flex; font-size: .85rem; font-weight: 800; gap: 12px; justify-content: center; min-height: 52px; padding: 0 22px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 70, 110, .16); }
.button-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(7, 134, 207, .2); }
.button-primary:hover { background: #0878b5; }
.button-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.button-ghost:hover { border-color: var(--blue); }
.button-white { background: #fff; color: var(--navy); }
.button-outline-light { border-color: rgba(255,255,255,.42); color: #fff; }
.button-symbol { font-size: 1.15rem; line-height: 1; }
.text-link { border-bottom: 1px solid var(--blue); color: var(--navy); display: inline-flex; font-size: .87rem; font-weight: 800; gap: 14px; padding-bottom: 6px; }
.text-link span { color: var(--blue); font-size: 1.1rem; }
.section { padding: 120px 0; }
.section-heading { margin-bottom: 57px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; max-width: 370px; }
.split-heading { align-items: end; display: flex; justify-content: space-between; gap: 60px; }
.centered-heading { text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading p { margin: 18px auto 0; }

/* Hero */
.hero-section { background: linear-gradient(120deg, #fff 0%, #f5fbfd 62%, #e9f7fc 100%); min-height: 650px; overflow: hidden; position: relative; }
.hero-grid { background-image: linear-gradient(rgba(27,142,194,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(27,142,194,.08) 1px, transparent 1px); background-size: 70px 70px; height: 100%; opacity: .5; position: absolute; right: 0; top: 0; transform: perspective(500px) rotateY(-16deg); transform-origin: right; width: 50%; }
.hero-water { border: 1px solid rgba(45,178,213,.17); border-radius: 50%; height: 680px; position: absolute; right: -180px; top: -210px; width: 820px; }
.hero-water-one { animation: float 9s ease-in-out infinite; }
.hero-water-two { height: 550px; opacity: .7; right: -45px; top: -90px; width: 680px; }
.hero-layout { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 570px; align-items: center; gap: 35px; position: relative; z-index: 2; }
.hero-copy { padding: 68px 0 54px; }
.hero-copy h1 { max-width: 660px; }
.hero-lead { color: #5c7184; font-size: 1.04rem; line-height: 1.75; margin: 28px 0 32px; max-width: 490px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { align-items: center; color: var(--muted); display: flex; font-size: .8rem; gap: 12px; margin-top: 30px; }
.hero-trust strong { color: var(--navy); }
.trust-avatars { color: var(--blue); letter-spacing: -5px; font-size: 1rem; margin-right: 5px; }
.hero-visual { height: 510px; position: relative; }
.hero-card { animation: card-float 6s ease-in-out infinite; background: rgba(255,255,255,.81); border: 1px solid rgba(255,255,255,.95); border-radius: 13px; box-shadow: 0 28px 80px rgba(10, 67, 106, .19), inset 0 0 0 1px rgba(4, 123, 184, .1); left: 16%; padding: 19px; position: absolute; top: 74px; transform: perspective(850px) rotateY(-10deg) rotateX(4deg) rotateZ(2deg); width: 69%; z-index: 2; }
.card-topline, .card-bottomline { align-items: center; color: #7895a4; display: flex; font-size: .58rem; font-weight: 800; justify-content: space-between; letter-spacing: .12em; }
.live-dot { color: #1abe8b; font-size: .54rem; }
.logo-plate { align-items: center; background: linear-gradient(145deg, #fafdfe, #e6f4f9); border-radius: 8px; display: flex; height: 300px; justify-content: center; margin: 15px 0; overflow: hidden; }
.logo-plate img { mix-blend-mode: multiply; object-fit: contain; width: 94%; }
.card-bottomline { color: var(--blue); }
.card-bottomline strong { color: var(--navy); font-family: var(--display); font-size: 1.55rem; letter-spacing: -.06em; }
.card-bottomline strong span { color: var(--cyan); }
.visual-orbit { border: 1px solid rgba(0, 150, 207, .23); border-radius: 50%; position: absolute; transform: rotate(-28deg); }
.orbit-one { height: 410px; right: 1%; top: 46px; width: 560px; }
.orbit-two { border-color: rgba(0, 150, 207, .1); height: 500px; right: -5%; top: 0; transform: rotate(31deg); width: 650px; }
.visual-sun { background: #ffd171; border-radius: 50%; filter: blur(1px); height: 15px; position: absolute; right: 18%; top: 55px; width: 15px; }
.floating-spec { align-items: center; animation: float 5s ease-in-out infinite; background: rgba(255,255,255,.92); border: 1px solid rgba(174,218,232,.65); border-radius: 7px; box-shadow: 0 14px 34px rgba(12, 71, 102, .13); display: flex; gap: 10px; padding: 12px 16px; position: absolute; z-index: 3; }
.spec-one { left: 1%; top: 68%; }
.spec-two { animation-delay: -2s; right: -3%; top: 28%; }
.spec-icon { align-items: center; background: var(--sky); border-radius: 50%; color: var(--blue); display: flex; font-size: 1.25rem; height: 32px; justify-content: center; width: 32px; }
.floating-spec b, .floating-spec small { display: block; line-height: 1.25; }
.floating-spec b { color: var(--navy); font-size: .73rem; }
.floating-spec small { color: var(--muted); font-size: .62rem; margin-top: 3px; }
.hero-bottom { align-items: center; border-top: 1px solid rgba(32,145,187,.14); color: #70909d; display: flex; font-size: .62rem; font-weight: 800; gap: 19px; letter-spacing: .18em; padding-bottom: 19px; padding-top: 18px; position: relative; z-index: 2; }
.hero-bottom i { background: var(--cyan); border-radius: 50%; display: block; height: 4px; opacity: .7; width: 4px; }

/* Stats and services */
.stats-strip { background: var(--navy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { border-left: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; padding: 26px 28px; }
.stats-grid > div:first-child { border-left: 0; }
.stats-grid strong { color: #fff; font-family: var(--display); font-size: 1.6rem; letter-spacing: -.05em; }
.stats-grid span { color: #8bb2c5; font-size: .73rem; margin-top: 4px; }
.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card { border: 1px solid var(--line); min-height: 285px; padding: 28px 29px; position: relative; transition: background .3s ease, box-shadow .3s ease, transform .3s ease; }
.service-card:hover { background: #f7fcfe; box-shadow: var(--shadow); transform: translateY(-5px); }
.service-number { color: #bed9e5; font-family: var(--display); font-size: .75rem; font-weight: 800; position: absolute; right: 27px; top: 27px; }
.service-icon { color: var(--blue); font-size: 1.7rem; height: 47px; }
.service-card h3 { font-size: 1.13rem; margin: 13px 0 10px; }
.service-card p { color: var(--muted); font-size: .85rem; line-height: 1.65; min-height: 64px; }
.service-card a, .guide-read { color: var(--blue); font-size: .75rem; font-weight: 800; }
.service-card a span { margin-left: 7px; }

/* Why */
.dark-section { background: var(--navy); color: #fff; }
.why-section { overflow: hidden; position: relative; }
.why-section:after { background: radial-gradient(circle, rgba(0,177,226,.24), transparent 65%); content: ''; height: 700px; position: absolute; right: -160px; top: -100px; width: 700px; }
.why-layout { align-items: center; display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; position: relative; z-index: 1; }
.why-visual { height: 430px; position: relative; }
.why-ring { border: 1px solid rgba(60,207,235,.35); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%) rotate(-20deg); }
.ring-large { height: 375px; width: 300px; }
.ring-small { border-color: rgba(60,207,235,.15); height: 430px; transform: translate(-50%, -50%) rotate(40deg); width: 380px; }
.why-pump { align-items: center; background: linear-gradient(145deg, #f9fdff, #aacbd6); border-radius: 47% 47% 18% 18%; box-shadow: 15px 28px 30px rgba(0,0,0,.3), inset -10px -9px 16px rgba(12, 70, 91,.36), inset 8px 8px 11px #fff; color: var(--navy); display: flex; font-family: var(--display); font-size: 2rem; font-weight: 800; height: 200px; justify-content: center; left: 50%; letter-spacing: -.1em; position: absolute; top: 44%; transform: translate(-50%,-50%); width: 138px; }
.why-pump:after, .why-pump:before { background: linear-gradient(90deg, #b3d4dd, #f8ffff 45%, #6c99a4); border-radius: 4px; content: ''; height: 31px; position: absolute; top: 56px; width: 47px; }
.why-pump:before { left: -40px; }
.why-pump:after { right: -40px; }
.why-pump i { background: var(--blue); border-radius: 50%; bottom: -34px; box-shadow: 0 0 0 10px rgba(0,145,204,.14); height: 22px; position: absolute; width: 22px; }
.why-label { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); color: #9bc2d1; font-size: .6rem; left: 4%; letter-spacing: .13em; padding: 10px 14px; position: absolute; top: 22%; }
.why-label b { color: #fff; font-size: .68rem; }
.why-copy { max-width: 570px; }
.why-copy h2 { color: #fff; }
.why-copy p { color: #9bb7c4; line-height: 1.75; margin: 28px 0; max-width: 500px; }
.check-list { list-style: none; margin: 0 0 33px; padding: 0; }
.check-list li { color: #d8e8ed; font-size: .87rem; margin: 12px 0; padding-left: 26px; position: relative; }
.check-list li:before { color: var(--cyan); content: '✓'; font-weight: 800; left: 0; position: absolute; }
.light-link { border-color: var(--cyan); color: #fff; }

/* Process & guides */
.process-section { background: #f4fafc; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-step { background: #fff; border: 1px solid #e5f0f4; padding: 27px 30px 31px; position: relative; }
.process-step > span { color: #9ecddc; font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.process-icon { color: var(--blue); font-size: 2rem; margin: 28px 0 15px; }
.process-step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .87rem; line-height: 1.7; margin: 0; }
.guide-section { background: #fff; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { border-top: 2px solid var(--navy); padding: 20px 4px 0 0; }
.guide-meta { align-items: center; color: #7993a1; display: flex; font-size: .68rem; font-weight: 700; justify-content: space-between; letter-spacing: .05em; text-transform: uppercase; }
.guide-meta span { color: var(--blue); font-size: 1rem; }
.guide-card h3 { font-size: 1.3rem; line-height: 1.23; margin: 22px 0 14px; }
.guide-card h3 a:hover { color: var(--blue); }
.guide-card p { color: var(--muted); font-size: .84rem; line-height: 1.7; margin-bottom: 22px; }

/* CTA and tag cloud */
.cta-section { background: var(--blue); color: #fff; overflow: hidden; position: relative; }
.cta-section:after { border: 1px solid rgba(255,255,255,.16); border-radius: 50%; content: ''; height: 650px; position: absolute; right: -150px; top: -240px; transform: rotate(-22deg); width: 900px; }
.cta-wave { background: radial-gradient(ellipse at center, rgba(116,230,246,.33), transparent 64%); height: 430px; position: absolute; right: 8%; top: -190px; width: 580px; }
.cta-inner { align-items: center; display: flex; justify-content: space-between; min-height: 400px; position: relative; z-index: 1; }
.cta-copy h2 { color: #fff; }
.cta-copy h2 em { color: #b6f1f7; }
.cta-copy p { color: #cbeaf1; margin-top: 22px; }
.cta-actions { display: flex; flex-direction: column; gap: 13px; min-width: 285px; }
.seo-cloud { background: #f4fafc; padding: 100px 0 120px; }
.seo-cloud h2 { margin-bottom: 34px; }
.tag-cloud { align-items: center; display: flex; flex-wrap: wrap; gap: 10px; max-width: 800px; }
.tag-cloud span { background: #fff; border: 1px solid #d8eaf0; border-radius: 40px; color: #42677c; font-size: .78rem; padding: 10px 16px; transition: background .2s, color .2s, border .2s; }
.tag-cloud span:nth-child(3n+1) { color: var(--blue); }
.tag-cloud span:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Footer / floating contact */
.site-footer { background: #041e38; color: #a8c2cc; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 62px; }
.footer-mark { color: #fff; font-family: var(--display); font-size: 1.75rem; font-weight: 800; letter-spacing: -.12em; }
.footer-mark span { color: var(--cyan); }
.footer-brand h2 { color: #fff; font-size: 1.45rem; margin: 12px 0 16px; }
.footer-brand h2 span { color: var(--cyan); }
.footer-brand p { font-size: .83rem; line-height: 1.7; max-width: 270px; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.footer-actions .button { font-size: .7rem; min-height: 41px; padding: 0 14px; }
.button-whatsapp { background: #0cbd83; color: #fff; }
.footer-col h3 { color: #fff; font-size: .85rem; letter-spacing: .02em; margin: 5px 0 19px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li, .footer-col p { font-size: .79rem; line-height: 2; margin: 0; }
.footer-col a { transition: color .2s; }
.footer-col a:hover, .footer-link { color: var(--cyan); }
.footer-contact > a { display: block; font-size: .82rem; margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); display: flex; font-size: .68rem; justify-content: space-between; padding: 19px 0; }
.footer-bottom span:last-child { color: #5e8493; }
.floating-contact { bottom: 18px; display: flex; flex-direction: column; gap: 8px; position: fixed; right: 18px; z-index: 50; }
.floating-contact a { align-items: center; border-radius: 50px; box-shadow: 0 8px 21px rgba(0,0,0,.19); color: #fff; display: flex; font-size: .61rem; font-weight: 800; gap: 7px; justify-content: center; min-height: 42px; padding: 0 14px; }
.floating-contact a span { font-size: 1.2rem; line-height: 1; }
.floating-call { background: var(--navy); }
.floating-wa { background: #11bd81; }

/* Blog and content */
.page-main { min-height: 500px; padding: 100px 0 120px; }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 80px; }
.archive-heading { margin-bottom: 45px; }
.archive-heading h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.post-list { display: grid; gap: 18px; }
.post-card { border-bottom: 1px solid var(--line); padding: 26px 0 34px; }
.post-card h2 { font-size: 1.8rem; margin: 17px 0 12px; }
.post-card h2 a:hover { color: var(--blue); }
.post-card p { color: var(--muted); max-width: 650px; }
.default-sidebar { padding-top: 60px; }
.sidebar-card { background: var(--navy); color: #b9d2dc; padding: 29px; }
.sidebar-card h3 { color: #fff; font-size: 1.45rem; margin: 14px 0; }
.sidebar-card p { font-size: .85rem; line-height: 1.7; }
.sidebar-card .button { font-size: .72rem; min-height: 45px; padding: 0 14px; }
.article-layout { max-width: 820px; }
.single-article h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); margin: 14px 0 15px; }
.article-meta { color: var(--muted); font-size: .76rem; margin-bottom: 40px; }
.article-meta span { color: var(--cyan); padding: 0 7px; }
.article-image { margin: 0 0 36px; }
.entry-content { color: #526879; font-size: 1.04rem; line-height: 1.85; }
.entry-content h2, .entry-content h3 { margin: 38px 0 14px; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.article-cta { align-items: center; background: var(--sky); display: flex; gap: 20px; justify-content: space-between; margin-top: 50px; padding: 24px; }
.article-cta strong { color: var(--navy); }
.article-cta .button { min-height: 44px; }
.empty-state { padding: 70px 0; text-align: center; }
.empty-state h1 { margin: 20px 0; }
.empty-state h2 { font-size: 2.5rem; margin: 20px 0 10px; }
.empty-state p { color: var(--muted); margin: 0 auto 24px; max-width: 500px; }
.nav-links { display: flex; gap: 8px; margin-top: 30px; }
.nav-links a, .nav-links .current { border: 1px solid var(--line); font-size: .8rem; padding: 8px 13px; }
.nav-links .current { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Motion */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .15s; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 80px)); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes card-float { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }

@media (max-width: 1020px) {
  .container { width: min(100% - 42px, 850px); }
  .header-inner { gap: 18px; }
  .brand { min-width: auto; }
  .main-navigation ul { gap: 16px; }
  .header-call { padding-left: 15px; }
  .hero-layout { gap: 0; }
  .hero-visual { transform: scale(.9); transform-origin: center right; }
  .why-layout { gap: 45px; }
  .footer-grid { gap: 25px; }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 34px); }
  .announcement-cta { display: none; }
  .announcement-track { font-size: .68rem; }
  .header-inner { min-height: 74px; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy small { font-size: .46rem; }
  .brand-logo { height: 39px; width: 47px; }
  .header-call { display: none; }
  .menu-toggle { display: block; margin-left: auto; position: relative; z-index: 22; }
  .main-navigation { background: #fff; box-shadow: 0 20px 35px rgba(0,30,60,.12); display: none; left: 0; padding: 16px 17px 22px; position: absolute; top: 74px; width: 100%; }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { align-items: stretch; flex-direction: column; gap: 0; }
  .main-navigation li { border-bottom: 1px solid var(--line); }
  .main-navigation a { display: block; padding: 13px 4px; }
  .hero-section { min-height: 0; }
  .hero-layout { display: flex; flex-direction: column; min-height: 0; }
  .hero-copy { padding: 60px 0 15px; }
  h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .hero-lead { font-size: .95rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .button { width: 100%; }
  .hero-trust { margin-bottom: 10px; }
  .hero-visual { height: 410px; transform: scale(.9); transform-origin: top center; width: 100%; }
  .hero-card { left: 13%; top: 54px; width: 74%; }
  .logo-plate { height: 235px; }
  .spec-two { right: -1%; }
  .hero-bottom { flex-wrap: wrap; font-size: .54rem; gap: 10px; padding-bottom: 19px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { border-bottom: 1px solid rgba(255,255,255,.12); padding: 19px 16px; }
  .stats-grid > div:nth-child(odd) { border-left: 0; }
  .section { padding: 78px 0; }
  .split-heading { align-items: start; flex-direction: column; gap: 24px; }
  .section-heading { margin-bottom: 36px; }
  .services-grid, .process-grid, .guide-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 25px; }
  .service-card p { min-height: 0; }
  .why-layout { display: flex; flex-direction: column; gap: 25px; }
  .why-visual { height: 335px; width: 100%; }
  .ring-large { height: 295px; width: 235px; }
  .ring-small { height: 340px; width: 290px; }
  .why-copy { width: 100%; }
  .process-step { padding: 24px; }
  .cta-inner { align-items: start; flex-direction: column; gap: 30px; min-height: 0; padding-bottom: 75px; padding-top: 75px; }
  .cta-actions { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 7px; }
  .floating-contact { bottom: 10px; left: 10px; right: 10px; flex-direction: row; }
  .floating-contact a { flex: 1; }
  .content-layout { display: block; }
  .default-sidebar { margin-top: 50px; padding-top: 0; }
  .article-cta { align-items: start; flex-direction: column; }
  .page-main { padding: 65px 0 80px; }
}

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