:root {
  --ink: #101318;
  --muted: #626a73;
  --line: #dfe3e8;
  --soft: #f3f5f7;
  --white: #fff;
  --blue: #0768b7;
  --blue-dark: #035395;
  --container: 1240px;
  --shadow: 0 20px 60px rgba(10, 19, 30, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: #fff; color: #000; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; color: #fff; background: rgba(8, 10, 13, .82); border-bottom: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(15px); transition: background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(8, 10, 13, .96); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 38px; }
.wordmark { flex: 0 0 auto; display: inline-flex; flex-direction: column; line-height: 1; letter-spacing: .08em; }
.wordmark-main { font-size: 22px; font-weight: 800; }
.wordmark-sub { margin-top: 8px; font-size: 9px; letter-spacing: .21em; color: #aab1b8; }
.brand-logo { position: relative; width: 220px; height: 54px; overflow: hidden; }
.brand-logo img { position: absolute; top: -39px; left: -3px; width: 235px; max-width: none; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(15px, 1.7vw, 27px); margin-left: auto; }
.main-nav > a, .nav-item > button { position: relative; padding: 33px 0 28px; color: inherit; background: transparent; border: 0; cursor: pointer; font-size: 14px; font-weight: 650; white-space: nowrap; }
.main-nav > a::after, .nav-item > button::after { content: ""; position: absolute; right: 0; bottom: 24px; left: 0; height: 2px; background: #1688df; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after, .nav-item:hover > button::after, .nav-item > button:focus-visible::after, .nav-item.submenu-open > button::after { transform: scaleX(1); }
.nav-item { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-item > button span { display: inline-block; margin-left: 4px; color: #8e969d; transition: transform .2s; }
.nav-item.submenu-open > button span { transform: rotate(180deg); }
.nav-submenu { position: absolute; z-index: 150; top: calc(100% - 5px); left: -24px; width: 310px; display: grid; padding: 12px; color: var(--ink); background: #fff; border-top: 3px solid var(--blue); box-shadow: 0 20px 55px rgba(0,0,0,.24); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s, visibility .2s, transform .2s; }
.nav-submenu-compact { width: 285px; }
.nav-submenu a { display: block; padding: 11px 12px; color: #30373e; border-bottom: 1px solid #eef0f2; font-size: 13px; line-height: 1.3; }
.nav-submenu a:last-child { border-bottom: 0; }
.nav-submenu a:hover, .nav-submenu a:focus-visible { color: var(--blue); background: #f3f7fa; }
.nav-submenu strong, .nav-submenu small { display: block; }
.nav-submenu strong { font-size: 14px; }
.nav-submenu small { margin-top: 4px; color: #7b848d; font-size: 10px; font-weight: 500; }
.nav-item.submenu-open .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-overlay { display: none; }
@media (min-width: 821px) {
  .nav-item:hover .nav-submenu, .nav-item:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.header-call { min-width: 160px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); line-height: 1.25; }
.header-call span { display: block; color: #aeb5bc; font-size: 11px; }
.header-call strong { display: block; margin-top: 4px; font-size: 15px; letter-spacing: .02em; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; color: #fff; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 790px; display: flex; align-items: center; color: #fff; background: #0b0d10; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { display: block; overflow: hidden; }
.hero-media > img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center center; }
.hero-shade { background: linear-gradient(90deg, rgba(5,8,12,.92) 0%, rgba(5,8,12,.65) 37%, rgba(5,8,12,.15) 70%, rgba(5,8,12,.35) 100%), linear-gradient(0deg, rgba(5,8,12,.72) 0%, transparent 42%); }
.hero-content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 135px; }
.eyebrow { margin: 0 0 18px; color: #cbd1d6; font-size: 12px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 34px; height: 2px; margin: 0 10px 3px 0; background: #1688df; }
.eyebrow.dark { color: #59626b; }
.hero h1 { max-width: 740px; margin: 0; font-size: clamp(46px, 6vw, 84px); line-height: .98; letter-spacing: -.055em; font-weight: 650; }
.hero-copy { max-width: 620px; margin: 28px 0 0; color: #e4e7e9; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid transparent; font-size: 14px; font-weight: 750; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { background: var(--blue-dark); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.15); }
.button-ghost:hover { background: #fff; color: #111; }

.quick-actions { position: absolute; z-index: 5; bottom: 0; left: 50%; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--blue); transform: translateX(-50%); }
.quick-actions a { min-height: 88px; display: flex; align-items: center; gap: 15px; padding: 17px 22px; color: #fff; border-right: 1px solid rgba(255,255,255,.3); transition: background .2s; }
.quick-actions a:last-child { border-right: 0; }
.quick-actions a:hover { background: var(--blue-dark); }
.quick-actions svg { flex: 0 0 28px; width: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.quick-actions span { font-size: 15px; font-weight: 700; line-height: 1.25; }
.quick-actions small { display: block; margin-bottom: 4px; color: #cfeaff; font-size: 10px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

.trust-strip { color: #fff; background: #15191e; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 28px; }
.trust-grid div { padding: 0 25px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 15px; }
.trust-grid span { margin-top: 2px; color: #9fa7ae; font-size: 12px; }

.section { padding: 110px 0; }
.section-heading h2, .process-copy h2, .faq-intro h2, .contact-band h2 { margin: 0; font-size: clamp(35px, 4vw, 56px); line-height: 1.08; letter-spacing: -.04em; font-weight: 600; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.models-section { background: #fff; }
.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.model-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: color .25s, background .25s; }
.model-card[open] { grid-column: span 2; color: #fff; background: #15191e; }
.model-card summary, .service-detail-card summary { display: grid; align-items: center; cursor: pointer; list-style: none; }
.model-card summary::-webkit-details-marker, .service-detail-card summary::-webkit-details-marker { display: none; }
.model-card summary { grid-template-columns: clamp(130px, 13vw, 170px) minmax(0, 1fr) 30px; gap: 20px; min-height: 164px; padding: 22px 24px; }
.model-card summary:hover { background: var(--soft); }
.model-card[open] summary:hover { background: transparent; }
.model-visual { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: #f5f6f7; border-radius: 6px; }
.model-visual img { width: 100%; height: 100%; object-fit: contain; }
.model-card summary:focus-visible { outline: 2px solid var(--blue); outline-offset: -3px; }
.model-card summary strong, .model-card summary small { display: block; }
.model-card summary strong { font-size: 20px; font-weight: 650; line-height: 1.3; }
.model-card summary small { margin-top: 5px; color: #818a93; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.model-card summary i, .service-detail-card summary i { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); border: 1px solid #bdc6ce; border-radius: 50%; font-size: 18px; font-style: normal; font-weight: 300; transition: color .2s, border-color .2s, transform .2s; }
.model-card[open] summary i, .service-detail-card[open] summary i { color: #fff; border-color: rgba(255,255,255,.45); transform: rotate(45deg); }
.expand-content { padding: 0 30px 34px 106px; }
.model-card .expand-content { padding: 0 24px 30px; }
.expand-content p { max-width: 900px; margin: 0 0 17px; color: #bac1c7; font-size: 15px; }
.expand-content a { color: #58b4f5; font-size: 13px; font-weight: 750; }
.model-disclaimer { margin: 18px 0 0; color: #7d858d; font-size: 11px; }
@media (max-width: 820px) {
  .model-grid { grid-template-columns: 1fr; }
  .model-card[open] { grid-column: span 1; }
  .model-card summary { grid-template-columns: 140px minmax(0, 1fr) 30px; }
}
.services { background: var(--soft); }
.service-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-detail-card { min-width: 0; background: #fff; border: 1px solid #e0e4e8; box-shadow: 0 10px 35px rgba(13,24,36,.05); transition: color .25s, background .25s, transform .25s; }
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-detail-card[open] { grid-column: span 2; color: #fff; background: var(--blue); border-color: var(--blue); transform: none; }
.service-detail-card summary { grid-template-columns: 42px 1fr 30px; gap: 13px; min-height: 164px; padding: 26px; }
.service-detail-card summary strong, .service-detail-card summary small { display: block; }
.service-detail-card summary strong { font-size: 19px; line-height: 1.25; }
.service-detail-card summary small { margin-top: 7px; color: #737d86; font-size: 11px; line-height: 1.35; }
.service-detail-card[open] summary small, .service-detail-card[open] .service-number { color: #d6edff; }
.service-detail-card .expand-content { padding: 0 30px 32px 82px; }
.service-detail-card[open] .expand-content a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 280px; display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s, background .25s, transform .25s; }
.service-card:hover { position: relative; z-index: 2; color: #fff; background: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-number { color: #8b949d; font-size: 13px; font-weight: 700; }
.service-card:hover .service-number, .service-card:hover p { color: #d9ecfb; }
.service-card h3 { margin: 0; font-size: 27px; font-weight: 600; letter-spacing: -.02em; }
.service-card p { max-width: 440px; margin: 14px 0 24px; color: var(--muted); transition: color .25s; }
.service-card a { font-size: 13px; font-weight: 750; }
.service-card a span, .text-link span { margin-left: 8px; color: var(--blue); }
.service-card:hover a span { color: #fff; }

.process-section { overflow: hidden; background: var(--soft); }
.process-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px, 8vw, 110px); align-items: center; }
.process-image { position: relative; min-height: 590px; }
.process-image img { width: 100%; height: 590px; object-fit: cover; object-position: 75% center; }
.image-label { position: absolute; right: -35px; bottom: 38px; width: min(300px, 76%); padding: 24px 28px; color: #fff; background: var(--blue); box-shadow: var(--shadow); }
.image-label strong, .image-label span { display: block; }
.image-label strong { font-size: 19px; }
.image-label span { margin-top: 5px; color: #d8edfc; font-size: 12px; }
.process-copy h2 { max-width: 570px; }
.steps { margin: 40px 0 30px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid #d7dce1; }
.steps li > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); border: 1px solid #b7c9d8; border-radius: 50%; font-size: 12px; font-weight: 800; }
.steps strong { font-size: 17px; }
.steps p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.text-link { font-size: 14px; font-weight: 750; }
.home-gallery { background: #fff; }
.home-gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 250px); gap: 14px; }
.gallery-shot { position: relative; display: block; overflow: hidden; background: #111; }
.gallery-shot-large { grid-row: 1 / 3; }
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s; }
.gallery-shot::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,7,10,.82)); }
.gallery-shot span { position: absolute; z-index: 2; right: 25px; bottom: 20px; left: 25px; color: #fff; font-size: 15px; font-weight: 700; }
.gallery-shot:hover img { transform: scale(1.035); opacity: .88; }
.gallery-all-link { display: inline-block; margin-top: 24px; }

.brand-links { background: #fff; }
.centered { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.centered .eyebrow span { display: none; }
.centered > p:last-child { color: var(--muted); }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.brand-grid a { position: relative; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; overflow: hidden; color: #fff; background: #15191e; transition: background .25s, transform .25s; }
.brand-grid a::before { content: ""; position: absolute; top: 0; left: 0; width: 48px; height: 3px; background: var(--blue); transition: width .25s; }
.brand-grid a:hover { background: var(--blue); transform: translateY(-4px); }
.brand-grid a:hover::before { width: 100%; background: #fff; }
.brand-grid strong { font-size: 25px; font-weight: 600; }
.brand-grid span { color: #abb2b9; font-size: 12px; }
.brand-grid a:hover span { color: #d8edfc; }
.brand-grid i { position: absolute; top: 24px; right: 25px; font-style: normal; }
.testimonials { color: #fff; background: #15191e; }
.testimonials .eyebrow.dark, .testimonials .split-heading > p { color: #aeb6bd; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testimonial-grid blockquote { position: relative; min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 35px; background: #20252b; border-top: 2px solid var(--blue); }
.quote-mark { height: 44px; color: var(--blue); font-family: Georgia, serif; font-size: 70px; line-height: 1; }
.testimonial-grid blockquote > p { margin: 12px 0 30px; color: #dce0e3; font-size: 16px; }
.testimonial-grid blockquote footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: 13px; }
.testimonial-grid blockquote footer span { color: #f5b400; letter-spacing: 1px; }

.faq-section { background: var(--soft); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 8vw, 110px); align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.button-dark { margin-top: 14px; color: #fff; background: var(--ink); }
.accordion { border-top: 1px solid #cfd5da; }
.accordion details { border-bottom: 1px solid #cfd5da; }
.accordion summary { position: relative; padding: 27px 48px 27px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 650; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before, .accordion summary::after { content: ""; position: absolute; top: 38px; right: 8px; width: 15px; height: 1px; background: var(--ink); transition: transform .2s; }
.accordion summary::after { transform: rotate(90deg); }
.accordion details[open] summary::after { transform: rotate(0); }
.accordion details p { max-width: 690px; margin: -8px 55px 26px 0; color: var(--muted); }

.contact-band { padding: 76px 0; color: #fff; background: var(--blue); }
.contact-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.contact-band h2 { max-width: 760px; font-size: clamp(34px, 4vw, 52px); }
.contact-band-actions { flex: 0 0 auto; display: flex; gap: 10px; }
.button-light { color: var(--blue); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.65); }
.button-outline-light:hover { color: var(--blue); background: #fff; }
.seo-guide-section { background: #fff; }
.seo-guide-shell { padding-top: 10px; border-top: 1px solid var(--line); }
.seo-guide-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.seo-guide-heading h2 { max-width: 520px; margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; font-weight: 600; }
.seo-guide-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.seo-guide-heading a, .seo-guide-body a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(0,102,177,.28); text-underline-offset: 3px; }
.seo-guide-details { margin-top: 44px; background: var(--soft); border: 1px solid var(--line); }
.seo-guide-details > summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; cursor: pointer; font-size: 15px; font-weight: 800; list-style: none; }
.seo-guide-details > summary::-webkit-details-marker { display: none; }
.seo-guide-details > summary i { width: 31px; height: 31px; flex: 0 0 31px; display: grid; place-items: center; color: var(--blue); border: 1px solid #b7c9d6; border-radius: 50%; font-style: normal; transition: transform .2s; }
.seo-guide-details[open] > summary i { transform: rotate(45deg); }
.seo-guide-body { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; padding: 0 28px 30px; }
.seo-guide-body article { padding: 26px 0; border-top: 1px solid var(--line); }
.seo-guide-body article.wide { grid-column: 1 / -1; }
.seo-guide-body h3 { margin: 0 0 12px; font-size: 19px; line-height: 1.3; }
.seo-guide-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.location-section { min-height: 500px; display: grid; grid-template-columns: .42fr .58fr; background: #11161b; }
.location-copy { display: grid; place-items: center; padding: 60px; color: #fff; }
.location-copy > div { max-width: 430px; }
.location-copy h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; font-weight: 550; }
.location-copy p:not(.eyebrow) { margin: 20px 0 28px; color: #b7bec5; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.location-section iframe { width: 100%; height: 100%; min-height: 500px; border: 0; filter: grayscale(1) contrast(.92); }

.site-footer { background: #fff; }
.footer-reviews { padding: 78px 0 38px; background: var(--soft); }
.footer-review-grid { display: grid; grid-template-columns: 1.15fr .85fr .8fr; gap: 28px; align-items: stretch; }
.review-heading { padding-right: 35px; }
.review-heading h2 { max-width: 520px; margin: 0; font-size: clamp(32px, 3vw, 45px); font-weight: 500; line-height: 1.12; letter-spacing: -.035em; }
.review-heading > p:last-child { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.google-review-card, .social-mini { min-height: 235px; padding: 29px; background: #fff; border: 1px solid #e3e7ea; border-radius: 3px; }
.google-review-card { display: flex; flex-direction: column; justify-content: space-between; transition: transform .2s, box-shadow .2s; }
.google-review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.google-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 13px; }
.review-card-copy { display: grid; gap: 8px; margin: 22px 0; }
.review-card-copy span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-card-copy strong { max-width: 250px; font-size: 22px; line-height: 1.22; letter-spacing: -.02em; }
.google-word { color: #586069; font-size: 16px; font-weight: 650; }
.google-word i { color: #4285f4; font-size: 21px; font-style: normal; }
.stars { color: #f5b400; font-size: 18px; letter-spacing: 1px; }



.review-cta, .social-mini a { color: var(--blue); font-size: 13px; font-weight: 750; }
.review-cta b { float: right; }
.social-mini { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-content: center; }
.social-icon { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #764ba2, #f23f72 48%, #f7b44a); border-radius: 12px; font-size: 15px; font-weight: 800; }
.social-mini strong { font-size: 18px; }
.social-mini p { margin: 7px 0 16px; color: var(--muted); font-size: 12px; }

.footer-top { display: grid; grid-template-columns: 1.5fr .75fr 1fr 1fr; gap: 60px; padding-top: 82px; padding-bottom: 72px; }
.dark-mark { color: var(--ink); }
.footer-brand-logo { width: 280px; height: 88px; background: #0b0d10; }
.footer-brand-logo img { top: -34px; left: 2px; width: 270px; }
.footer-brand > p { max-width: 340px; margin: 25px 0; color: var(--muted); font-size: 14px; }
.social-link { color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-column h3 { margin: 0 0 11px; font-size: 14px; }
.footer-column a, .footer-column address { color: #515961; font-size: 13px; font-style: normal; }
.footer-column a:hover { color: var(--blue); }
.footer-contact address { margin-top: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; padding-bottom: 24px; color: #747c84; border-top: 1px solid var(--line); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-studio { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; opacity: .58; transition: opacity .2s; }
.footer-studio:hover { opacity: .82; }
.footer-studio img { display: block; width: 108px; height: auto; }
.mobile-call, .mobile-whatsapp { display: none; }

/* İç sayfalar */
.inner-site-header { position: fixed; }
.inner-hero { position: relative; min-height: 490px; display: flex; align-items: flex-end; padding: 160px 0 75px; overflow: hidden; color: #fff; background: #11161b; }
.inner-hero::before { content: ""; position: absolute; inset: 0; background: var(--page-image, linear-gradient(135deg, #11161b, #25303a)) center/cover no-repeat; opacity: .45; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,10,14,.94), rgba(7,10,14,.48) 65%, rgba(7,10,14,.25)); }
.inner-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: #bfc6cc; font-size: 12px; }
.breadcrumbs a { color: #80c9fa; }
.inner-hero h1 { max-width: 850px; margin: 0; font-size: clamp(43px, 6vw, 72px); line-height: 1.02; letter-spacing: -.05em; font-weight: 600; }
.inner-hero-copy { max-width: 720px; margin: 22px 0 0; color: #dce1e5; font-size: 18px; }

.content-section { padding: 90px 0; }
.content-section.soft { background: var(--soft); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(50px, 7vw, 95px); align-items: start; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy h2 { margin: 0 0 22px; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -.035em; font-weight: 600; }
.rich-copy h3 { margin: 38px 0 12px; font-size: 24px; line-height: 1.25; }
.rich-copy p, .rich-copy li { color: #56606a; }
.rich-copy p { margin: 0 0 18px; }
.rich-copy ul { padding-left: 20px; }
.side-stack { display: grid; gap: 16px; }
.aside-card { padding: 30px; color: #fff; background: #15191e; }
.aside-card.blue { background: var(--blue); }
.aside-card h2, .aside-card h3 { margin: 0 0 13px; font-size: 23px; line-height: 1.2; }
.aside-card p { margin: 0 0 20px; color: #bdc5cc; font-size: 14px; }
.aside-card.blue p { color: #d9edfc; }
.aside-card a:not(.button) { display: block; margin-top: 9px; font-size: 14px; font-weight: 700; }
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 45px; }
.feature-item { min-height: 180px; padding: 30px; background: #fff; border: 1px solid var(--line); }
.feature-item span { color: var(--blue); font-size: 12px; font-weight: 800; }
.feature-item h3 { margin: 18px 0 8px; font-size: 20px; }
.feature-item p { margin: 0; color: var(--muted); font-size: 13px; }
.content-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.content-card { padding: 31px; background: #fff; border: 1px solid var(--line); }
.content-card h2, .content-card h3 { margin: 0 0 12px; font-size: 22px; line-height: 1.25; }
.content-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.content-card a { color: var(--blue); font-size: 13px; font-weight: 750; }
.service-scope-section { background: #fff; }
.service-scope-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.service-scope-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; min-height: 178px; padding: 30px 34px 30px 0; border-bottom: 1px solid var(--line); }
.service-scope-list li:nth-child(odd) { padding-right: 42px; border-right: 1px solid var(--line); }
.service-scope-list li:nth-child(even) { padding-left: 42px; }
.service-scope-list > li > span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--blue); background: #eaf5fd; border-radius: 50%; font-size: 11px; font-weight: 800; }
.service-scope-list h3 { margin: 3px 0 9px; font-size: 20px; line-height: 1.25; }
.service-scope-list p { margin: 0; color: var(--muted); font-size: 13px; }
.diagnostic-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px 85px; align-items: start; }
.diagnostic-heading h2 { margin: 0 0 20px; font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; font-weight: 600; }
.diagnostic-heading > p:last-child { color: var(--muted); }
.diagnostic-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid #cfd5da; border-left: 1px solid #cfd5da; }
.diagnostic-grid article { min-height: 190px; padding: 29px; background: #fff; border-right: 1px solid #cfd5da; border-bottom: 1px solid #cfd5da; }
.diagnostic-grid strong { display: block; margin-bottom: 12px; font-size: 18px; }
.diagnostic-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.service-principles { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); background: #101419; }
.service-principles > div { min-height: 210px; padding: 32px; color: #fff; border-right: 1px solid rgba(255,255,255,.13); }
.service-principles > div:last-child { border-right: 0; }
.service-principles span { color: #62b9f3; font-size: 11px; font-weight: 800; }
.service-principles h3 { margin: 18px 0 10px; font-size: 20px; }
.service-principles p { margin: 0; color: #aeb7bf; font-size: 13px; }
.maintenance-section { background: #fff; }
.maintenance-plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.maintenance-plan { min-height: 475px; padding: clamp(32px, 4vw, 52px); }
.maintenance-plan.primary { color: #fff; background: var(--blue); }
.maintenance-plan.dark { color: #fff; background: #11161b; }
.maintenance-plan .plan-label { margin: 0 0 22px; color: #cde9fb; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.maintenance-plan.dark .plan-label { color: #80c9fa; }
.maintenance-plan h3 { max-width: 480px; margin: 0 0 27px; font-size: clamp(27px, 3vw, 36px); line-height: 1.12; letter-spacing: -.025em; }
.maintenance-plan ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.maintenance-plan li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid rgba(255,255,255,.18); font-size: 14px; }
.maintenance-plan li::before { content: ""; position: absolute; top: 19px; left: 3px; width: 8px; height: 4px; border-bottom: 2px solid #fff; border-left: 2px solid #fff; transform: rotate(-45deg); }
.maintenance-note { max-width: 950px; margin: 27px auto 0; color: var(--muted); font-size: 13px; text-align: center; }
.page-cta { padding: 70px 0; color: #fff; background: var(--blue); }
.page-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-cta h2 { max-width: 760px; margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -.035em; font-weight: 550; }
.gallery-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.gallery-page-grid a { position: relative; min-height: 290px; overflow: hidden; background: #111; }
.gallery-page-grid a:nth-child(1), .gallery-page-grid a:nth-child(7) { grid-column: span 2; }
.gallery-page-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; }
.gallery-page-grid a:hover img { transform: scale(1.03); opacity: .85; }
.gallery-page-grid span { position: absolute; right: 20px; bottom: 18px; left: 20px; color: #fff; font-weight: 700; text-shadow: 0 2px 12px #000; }
.contact-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { min-height: 210px; padding: 31px; background: #fff; border: 1px solid var(--line); }
.contact-card span { color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-card h2 { margin: 20px 0 11px; font-size: 23px; }
.contact-card p, .contact-card address { margin: 0; color: var(--muted); font-style: normal; font-size: 14px; }
.contact-card a { color: var(--blue); font-weight: 750; }
.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.form-intro h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.1; letter-spacing: -.04em; }
.form-intro p { color: var(--muted); }
.form-card { padding: 40px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #f7f8f9; border: 1px solid #dce1e5; border-radius: 0; font: inherit; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid #a9d8f7; border-color: var(--blue); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 11px; }
.form-card-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.form-card-heading h2 { margin: 0 0 4px; font-size: 24px; }
.form-card-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.whatsapp-mark { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; color: #fff; background: #1fa855; border-radius: 50%; font-weight: 900; }
.whatsapp-steps { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; }
.whatsapp-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid var(--line); }
.whatsapp-steps li:last-child { border-bottom: 1px solid var(--line); }
.whatsapp-steps li > span { width: 30px; height: 30px; display: grid; place-items: center; color: #168a46; background: #e5f7ec; border-radius: 50%; font-size: 11px; font-weight: 800; }
.whatsapp-steps strong, .whatsapp-steps small { display: block; }
.whatsapp-steps strong { margin-bottom: 4px; font-size: 14px; }
.whatsapp-steps small { color: var(--muted); font-size: 12px; }
.aside-card.whatsapp-aside { background: #168a46; }
.aside-card.whatsapp-aside p { color: #d9f2e3; }
.button-whatsapp, .button-whatsapp-light { border-color: transparent; }
.button-whatsapp { width: 100%; display: flex; justify-content: center; gap: 10px; color: #fff; background: #1fa855; }
.button-whatsapp:hover { color: #fff; background: #168a46; }
.button-whatsapp-light { color: #168a46; background: #fff; }
.whatsapp-note { padding-left: 17px; border-left: 3px solid #1fa855; line-height: 1.55; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.map-frame { width: 100%; height: 480px; display: block; border: 0; filter: grayscale(1); }
.compact-footer .footer-reviews { padding-top: 60px; }

@media (max-width: 820px) {
  .inner-hero { min-height: 440px; padding-top: 140px; }
  .content-layout, .form-layout { grid-template-columns: 1fr; }
  .feature-list, .content-card-grid, .contact-page-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnostic-layout { grid-template-columns: 1fr; gap: 45px; }
  .service-principles { grid-column: auto; }
  .page-cta .container { align-items: flex-start; flex-direction: column; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .inner-hero { min-height: 420px; padding: 130px 0 55px; }
  .inner-hero h1 { font-size: 44px; }
  .content-section { padding: 65px 0; }
  .feature-list, .content-card-grid, .contact-page-grid, .gallery-page-grid, .form-grid { grid-template-columns: 1fr; }
  .service-scope-list, .diagnostic-grid, .service-principles, .maintenance-plan-grid { grid-template-columns: 1fr; }
  .service-scope-list li, .service-scope-list li:nth-child(odd), .service-scope-list li:nth-child(even) { min-height: 0; padding: 25px 0; border-right: 0; }
  .service-principles > div { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .service-principles > div:last-child { border-bottom: 0; }
  .maintenance-plan { min-height: 0; padding: 32px 24px; }
  .gallery-page-grid a:nth-child(1), .gallery-page-grid a:nth-child(7) { grid-column: auto; }
  .gallery-page-grid a { min-height: 240px; }
  .form-card { padding: 25px 20px; }
}

@media (max-width: 1050px) {
  .header-call { display: none; }
  .header-inner { min-height: 76px; }
  .hero { min-height: 730px; }
  .quick-actions a { padding-inline: 15px; }
  .quick-actions span { font-size: 13px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header-inner { position: relative; z-index: 130; }
  .wordmark { position: relative; z-index: 130; }
  .menu-toggle { position: relative; z-index: 140; display: block; margin-left: auto; cursor: pointer; }
  .main-nav { position: fixed; z-index: 130; top: 0; right: 0; bottom: 0; width: min(88vw, 390px); display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 95px 24px 35px; overflow-y: auto; color: #fff; background: #0b0d10; box-shadow: -20px 0 60px rgba(0,0,0,.3); transform: translateX(105%); transition: transform .3s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a, .nav-item > button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 17px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; text-align: left; }
  .main-nav > a::after, .nav-item > button::after { display: none; }
  .nav-item { display: block; align-self: auto; }
  .nav-item > button span { margin-left: auto; font-size: 19px; }
  .nav-submenu { position: static; width: auto; max-height: 0; display: block; padding: 0 0 0 12px; overflow: hidden; color: #fff; background: #111820; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height .28s ease, padding .28s ease; }
  .nav-item.submenu-open .nav-submenu { max-height: 520px; padding-block: 7px 10px; }
  .nav-submenu a { padding: 11px 12px; color: #ccd3d9; border-bottom-color: rgba(255,255,255,.07); font-size: 13px; }
  .nav-submenu a:hover, .nav-submenu a:focus-visible { color: #fff; background: rgba(255,255,255,.05); }
  .nav-submenu small { color: #8ea0ad; }
  .menu-overlay { position: fixed; z-index: 115; inset: 0; display: block; padding: 0; background: rgba(0,0,0,.62); border: 0; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
  body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 780px; align-items: flex-start; }
  .hero-media > img { object-position: 50% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,8,12,.93), rgba(5,8,12,.45)), linear-gradient(0deg, rgba(5,8,12,.8), transparent); }
  .hero-content { padding-top: 165px; padding-bottom: 300px; }
  .hero h1 { max-width: 620px; }
  .hero-copy { max-width: 550px; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .quick-actions a { min-height: 85px; border-bottom: 1px solid rgba(255,255,255,.25); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .section { padding: 80px 0; }
  .split-heading, .process-grid, .faq-layout { grid-template-columns: 1fr; gap: 44px; }
  .seo-guide-heading { grid-template-columns: 1fr; gap: 28px; }
  .seo-guide-body { grid-template-columns: 1fr; }
  .seo-guide-body article.wide { grid-column: auto; }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-card[open] { grid-column: span 2; }
  .service-card { padding: 32px 28px; }
  .process-image, .process-image img { min-height: 440px; height: 440px; }
  .home-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px; }
  .gallery-shot-large { grid-column: 1 / 3; grid-row: auto; }
  .image-label { right: 20px; }
  .faq-intro { position: static; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid blockquote { min-height: 220px; }
  .contact-band-inner { align-items: flex-start; flex-direction: column; }
  .location-section { grid-template-columns: 1fr; }
  .location-copy { min-height: 390px; padding: 55px 24px; }
  .footer-review-grid { grid-template-columns: 1fr 1fr; }
  .review-heading { grid-column: 1 / -1; padding-right: 0; }
  .footer-top { grid-template-columns: repeat(3, 1fr); gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-logo { width: 180px; height: 45px; }
  .brand-logo img { top: -31px; left: -2px; width: 191px; }
  .footer-brand-logo { width: 250px; height: 80px; }
  .footer-brand-logo img { top: -31px; left: 2px; width: 240px; }
  .hero { min-height: 810px; }
  .hero-content { padding-top: 145px; padding-bottom: 310px; }
  .hero h1 { font-size: 48px; }
  .hero-copy { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .quick-actions svg { width: 23px; flex-basis: 23px; }
  .quick-actions a { gap: 11px; padding: 13px 11px; }
  .trust-grid { padding-block: 24px; }
  .trust-grid div { padding-inline: 15px; }
  .trust-grid div:nth-child(odd) { padding-left: 0; }
  .trust-grid strong { font-size: 13px; }
  .section { padding: 68px 0; }
  .split-heading { margin-bottom: 38px; }
  .section-heading h2, .process-copy h2, .faq-intro h2, .contact-band h2 { font-size: 37px; }
  .seo-guide-details { margin-top: 32px; }
  .seo-guide-details > summary { padding: 20px; }
  .seo-guide-body { padding: 0 20px 22px; }
  .seo-guide-heading h2 { font-size: 35px; }
  .service-grid { grid-template-columns: 1fr; }
  .model-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .model-card[open], .service-detail-card[open] { grid-column: span 1; }
  .model-card summary { grid-template-columns: 104px minmax(0, 1fr) 26px; gap: 12px; min-height: 130px; padding: 16px; }
  .model-card summary strong { font-size: 17px; }
  .model-card summary small { font-size: 10px; letter-spacing: .03em; }
  .model-card summary i { width: 26px; height: 26px; }
  .expand-content, .service-detail-card .expand-content { padding: 0 21px 27px; }
  .service-detail-card summary { min-height: 145px; padding: 22px 20px; }
  .service-card { min-height: 0; grid-template-columns: 40px 1fr; padding: 28px 22px; }
  .service-card h3 { font-size: 23px; }
  .process-image, .process-image img { min-height: 330px; height: 330px; }
  .home-gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 240px); }
  .gallery-shot-large { grid-column: auto; }
  .image-label { right: 12px; bottom: 15px; padding: 18px; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-grid a { min-height: 145px; }
  .contact-band-actions { width: 100%; flex-direction: column; }
  .contact-band-actions .button { width: 100%; }
  .footer-review-grid { grid-template-columns: 1fr; }
  .review-heading { grid-column: auto; }
  .google-review-card, .social-mini { min-height: 205px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-call, .mobile-whatsapp { position: fixed; z-index: 90; right: 14px; left: auto; display: flex; align-items: center; justify-content: center; gap: 8px; width: 136px; min-height: 48px; padding: 0 14px; color: #fff; border: 0; border-radius: 30px; box-shadow: 0 5px 18px rgba(0,0,0,.2); font-size: 13px; font-weight: 750; line-height: 1; transition: transform .2s, opacity .2s, visibility .2s; }
  .mobile-call { bottom: calc(70px + env(safe-area-inset-bottom, 0px)); background: var(--blue); }
  .mobile-whatsapp { bottom: calc(14px + env(safe-area-inset-bottom, 0px)); background: #168947; }
  .mobile-call:hover, .mobile-whatsapp:hover { color: #fff; transform: translateY(-2px); }
  .mobile-call svg { flex: 0 0 20px; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-whatsapp img { display: block; flex: 0 0 20px; width: 20px; height: 20px; object-fit: contain; }
  body.menu-open .mobile-whatsapp, body.menu-open .mobile-call { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Compact homepage hero: mobile and tablet only. */
.hero-contact-mobile { display: none; }

@media (min-width: 821px) {
  .hero { display: grid; grid-template-columns: minmax(0, 1fr); }
  .hero > .hero-content.container { grid-area: 1 / 1; justify-self: center; width: min(calc(100% - 48px), var(--container)); margin-inline: 0; }
}

@media (max-width: 820px) {
  .hero { min-height: 780px; flex-direction: column; justify-content: flex-start; align-items: stretch; }
  .hero-content { padding-top: 145px; padding-bottom: 40px; }
  .hero h1 { max-width: 580px; font-size: clamp(40px, 7vw, 58px); line-height: 1.04; }
  .hero-copy { max-width: 480px; margin-top: 22px; font-size: 17px; line-height: 1.6; }
  .hero-shade { background: linear-gradient(180deg, rgba(5,8,12,.76), rgba(5,8,12,.42) 50%, rgba(5,8,12,.16) 72%, rgba(5,8,12,.52)), linear-gradient(90deg, rgba(5,8,12,.65), rgba(5,8,12,.12)); }
  .hero-actions { margin-top: 22px; gap: 10px; flex-wrap: nowrap; }
  .hero-actions .button { width: auto; min-height: 44px; padding: 0 14px; font-size: 12px; white-space: nowrap; }
  .hero-actions .button-primary { display: inline-flex; order: 1; }
  .hero-actions .button-ghost { border-color: rgba(255,255,255,.4); }
  .hero .quick-actions { display: none; }
  .hero-contact-mobile { position: relative; z-index: 5; display: block; width: min(calc(100% - 28px), 600px); margin: 0 auto 18px; padding: 22px; color: #fff; background: radial-gradient(ellipse at top right, rgba(90,164,225,.15), transparent 65%), #13568e; border: 1px solid rgba(255,255,255,.1); border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,.14); }
  .hero-contact-kicker { display: block; margin-bottom: 8px; color: #c7dff1; font-size: 10px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
  .hero-contact-intro h2 { margin: 0; font-size: 22px; line-height: 1.25; letter-spacing: -.025em; }
  .hero-contact-intro p { margin: 7px 0 0; color: #c7dff1; font-size: 12px; }
  .hero-contact-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
  .hero-contact-phone { display: flex; flex-direction: column; justify-content: center; min-height: 44px; color: #fff; }
  .hero-contact-phone span { margin-bottom: 3px; color: #c7dff1; font-size: 10px; }
  .hero-contact-phone strong { font-size: clamp(17px, 5vw, 23px); line-height: 1.15; letter-spacing: -.035em; white-space: nowrap; }
  .hero-contact-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 7px; flex-shrink: 0; min-height: 44px; padding: 0 13px; color: #fff; background: #168947; border: 1px solid rgba(255,255,255,.12); border-radius: 4px; font-size: 12px; font-weight: 750; }
  .hero-contact-whatsapp:hover { color: #fff; background: #11753b; }
  .hero-contact-whatsapp img { display: block; flex: 0 0 18px; width: 18px; height: 18px; object-fit: contain; }
  .hero-contact-links { display: flex; gap: 22px; margin-top: 18px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.18); }
  .hero-contact-links a { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: #e2eef7; font-size: 12px; font-weight: 650; }
  .hero-contact-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
  body.hero-contact-visible .mobile-call, body.hero-contact-visible .mobile-whatsapp { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media (max-width: 560px) {
  .hero-content { padding-top: 132px; padding-bottom: 32px; }
  .hero h1 { font-size: clamp(40px, 10.5vw, 52px); }
  .hero-copy { font-size: 16px; }
  .hero-contact-mobile { padding: 18px 16px 8px; }
  .hero-contact-intro h2 { font-size: 20px; }
}

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