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

:root {
  --navy-950: #050b13;
  --navy-900: #07111f;
  --navy-850: #0a1829;
  --navy-800: #0d2036;
  --gold-500: #d8a84f;
  --gold-400: #e6bd6d;
  --gold-300: #f1d69b;
  --cream: #f7f3eb;
  --paper: #fffdf9;
  --ink: #132033;
  --muted: #677284;
  --line: #e5ded2;
  --green: #21c063;
  --shadow: 0 22px 70px rgba(7, 17, 31, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", Arial, sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { fill: currentColor; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 12px 18px; background: white; color: var(--navy-900); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.topbar { background: var(--navy-950); color: #d8e0e9; font-size: 12px; letter-spacing: .04em; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; }
.topbar a { color: var(--gold-400); font-weight: 700; letter-spacing: .08em; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #32d276; box-shadow: 0 0 0 5px rgba(50, 210, 118, .12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(50, 210, 118, 0); } }

.site-header { position: sticky; z-index: 1000; top: 0; color: white; background: rgba(7, 17, 31, .94); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand__mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy-950); background: linear-gradient(145deg, var(--gold-300), var(--gold-500)); border-radius: 50% 50% 50% 14px; box-shadow: 0 8px 25px rgba(216, 168, 79, .2); }
.brand__mark svg { width: 26px; height: 26px; }
.brand strong { display: block; font: 800 17px/1.1 "Manrope", sans-serif; letter-spacing: .08em; }
.brand small { display: block; margin-top: 7px; color: var(--gold-400); font-size: 9px; letter-spacing: .28em; }
.main-menu { display: flex; align-items: center; gap: 31px; font-size: 13px; font-weight: 600; }
.main-menu > a:not(.nav-call) { color: #dfe6ee; transition: color .2s; }
.main-menu > a:not(.nav-call):hover { color: var(--gold-400); }
.nav-call { display: flex; align-items: center; gap: 9px; padding: 13px 18px; color: var(--navy-950); background: var(--gold-500); border-radius: 999px; font-weight: 800; }
.nav-call svg { width: 17px; height: 17px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: white; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; transition: .25s; }

.hero { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; color: white; background: var(--navy-950); }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media { background: url("assets/didim-cilingir-hero.webp") center / cover no-repeat; }
.hero__overlay { background: linear-gradient(90deg, rgba(5,11,19,.98) 0%, rgba(5,11,19,.92) 32%, rgba(5,11,19,.45) 61%, rgba(5,11,19,.1) 100%), linear-gradient(0deg, rgba(5,11,19,.72) 0%, transparent 35%); }
.hero__content { position: relative; z-index: 2; padding-block: 92px 122px; }
.hero__copy { max-width: 650px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-400); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { margin-bottom: 22px; }
.hero h1 { max-width: 760px; margin: 0; font: 700 clamp(48px, 6.4vw, 84px)/.99 "Manrope", sans-serif; letter-spacing: -.055em; }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero__lead { max-width: 605px; margin: 27px 0 32px; color: #d5dee8; font-size: 18px; line-height: 1.75; }
.hero__lead strong { color: white; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; line-height: 1.15; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 22px; height: 22px; }
.btn small { display: block; margin-bottom: 4px; font-size: 9px; letter-spacing: .16em; opacity: .78; }
.btn--primary { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 14px 35px rgba(216,168,79,.22); }
.btn--whatsapp { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); backdrop-filter: blur(10px); }
.btn--whatsapp svg { color: #54d98a; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 23px; margin: 31px 0 0; padding: 0; list-style: none; color: #cbd5df; font-size: 12px; }
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--gold-400); }
.hero__badge { position: absolute; z-index: 3; right: max(28px, calc((100vw - var(--container)) / 2)); bottom: 42px; width: 136px; height: 136px; display: flex; align-items: center; justify-content: center; gap: 9px; color: var(--navy-950); background: rgba(241,214,155,.92); border: 1px solid white; border-radius: 50%; box-shadow: 0 15px 45px rgba(0,0,0,.2); backdrop-filter: blur(8px); }
.hero__badge::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(7,17,31,.28); border-radius: inherit; }
.hero__badge strong { font: 800 31px/1 "Manrope", sans-serif; }
.hero__badge span { font-size: 9px; font-weight: 800; line-height: 1.25; letter-spacing: .12em; }

.quick-strip { position: relative; z-index: 4; margin-top: -20px; }
.quick-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: white; border-radius: 16px; box-shadow: var(--shadow); }
.quick-strip__grid > div { min-height: 110px; display: flex; align-items: center; gap: 14px; padding: 23px 24px; border-right: 1px solid var(--line); }
.quick-strip__grid > div:last-child { border: 0; }
.quick-strip__icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; color: var(--gold-500); background: #fbf4e6; border-radius: 11px; }
.quick-strip svg { width: 21px; height: 21px; }
.quick-strip p { margin: 0; line-height: 1.3; }
.quick-strip strong, .quick-strip small { display: block; }
.quick-strip strong { font: 700 14px "Manrope", sans-serif; }
.quick-strip small { margin-top: 5px; color: var(--muted); font-size: 11px; }

.section { padding: 112px 0; }
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .assurance h2, .faq h2, .cta h2 { margin: 12px 0 16px; font: 800 clamp(34px, 4.5vw, 53px)/1.08 "Manrope", sans-serif; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: 1.08fr 1fr 1fr; gap: 22px; align-items: stretch; }
.service-card { position: relative; overflow: hidden; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(7,17,31,.05); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-900); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; }
.service-card__tag { position: absolute; left: 16px; top: 16px; padding: 6px 10px; color: var(--navy-950); background: var(--gold-300); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card__visual { min-height: 180px; display: grid; place-items: center; overflow: hidden; }
.service-card__visual svg { width: 125px; height: 125px; opacity: .92; }
.service-card__visual--door { color: #dec37d; background: radial-gradient(circle at 50% 100%, #213957, var(--navy-900) 68%); }
.service-card__visual--lock { color: #c6d6e5; background: radial-gradient(circle at 50% 100%, #2d3c4c, #131c26 68%); }
.service-card__body { position: relative; flex: 1; padding: 30px 29px 29px; }
.service-card__number { position: absolute; right: 24px; top: 18px; color: #e9e4dc; font: 800 34px "Manrope", sans-serif; }
.service-card__icon { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 19px; color: var(--gold-500); background: #fbf4e7; border-radius: 12px; }
.service-card__icon svg { width: 23px; height: 23px; }
.service-card h3 { margin: 0 0 12px; font: 800 21px/1.2 "Manrope", sans-serif; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card ul { margin: 21px 0; padding: 0; list-style: none; color: #334156; font-size: 12px; }
.service-card li { position: relative; margin: 7px 0; padding-left: 18px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px; border: 2px solid var(--gold-500); border-radius: 50%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: 13px; font-weight: 800; }
.text-link span { color: var(--gold-500); transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.service-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.service-mini-grid > div { display: flex; align-items: center; gap: 15px; padding: 21px 24px; background: #f5f1e9; border-radius: 15px; }
.service-mini-grid svg { width: 27px; height: 27px; flex: 0 0 auto; color: var(--gold-500); }
.service-mini-grid strong, .service-mini-grid small { display: block; }
.service-mini-grid strong { font: 700 13px "Manrope", sans-serif; }
.service-mini-grid small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.unlock-showcase { margin-top: 80px; }
.unlock-showcase__heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 25px; }
.unlock-showcase__heading h3 { margin: 10px 0 0; font: 800 clamp(29px, 4vw, 43px)/1.08 "Manrope", sans-serif; letter-spacing: -.04em; }
.unlock-showcase__heading > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 14px; }
.service-slider { position: relative; overflow: hidden; color: white; background: var(--navy-950); border-radius: 28px; box-shadow: 0 28px 80px rgba(7,17,31,.18); outline: none; }
.service-slider:focus-visible { box-shadow: 0 0 0 4px var(--gold-300), 0 28px 80px rgba(7,17,31,.18); }
.service-slider__viewport { overflow: hidden; }
.service-slider__track { display: flex; transition: transform .85s cubic-bezier(.22,.75,.16,1); will-change: transform; }
.service-slide { position: relative; width: 100%; min-width: 100%; min-height: 580px; display: flex; align-items: center; overflow: hidden; }
.service-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 6s ease; }
.service-slide.is-active > img { transform: scale(1); }
.service-slide:nth-child(1) > img { object-position: center 48%; }
.service-slide:nth-child(2) > img { object-position: center; }
.service-slide__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,11,19,.96) 0%, rgba(5,11,19,.85) 38%, rgba(5,11,19,.26) 70%, rgba(5,11,19,.1) 100%), linear-gradient(0deg, rgba(5,11,19,.7), transparent 45%); }
.service-slide__content { position: relative; z-index: 3; width: min(625px, 62%); padding: 65px 0 72px 62px; opacity: .35; transform: translateX(28px); transition: opacity .6s .25s, transform .7s .25s; }
.service-slide.is-active .service-slide__content { opacity: 1; transform: translateX(0); }
.service-slide__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; color: #dce8e1; background: rgba(32,173,90,.16); border: 1px solid rgba(83,218,138,.3); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.service-slide__badge i { width: 7px; height: 7px; background: #4cda87; border-radius: 50%; box-shadow: 0 0 0 5px rgba(76,218,135,.12); }
.service-slide__eyebrow { margin: 23px 0 8px !important; color: var(--gold-400) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-slide h4 { margin: 0 0 19px; font: 800 clamp(37px, 5vw, 58px)/1.02 "Manrope", sans-serif; letter-spacing: -.05em; }
.service-slide h4 em { color: var(--gold-400); font-style: normal; }
.service-slide__content > p:not(.service-slide__eyebrow) { max-width: 540px; margin: 0; color: #c4d0db; font-size: 14px; line-height: 1.7; }
.service-slide__features { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; }
.service-slide__features span { padding: 7px 10px; color: #dfe7ef; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; font-size: 9px; font-weight: 700; }
.service-slide__content > a { display: inline-flex; align-items: center; gap: 12px; padding: 13px 17px; color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); border-radius: 10px; font-size: 11px; font-weight: 800; }
.service-slide__content > a strong { padding-left: 12px; border-left: 1px solid rgba(7,17,31,.25); font: 800 13px "Manrope", sans-serif; }
.service-slide__type { position: absolute; z-index: 2; right: 34px; bottom: 63px; color: rgba(255,255,255,.11); font: 800 clamp(80px, 13vw, 160px)/.7 "Manrope", sans-serif; letter-spacing: -.08em; }
.service-slide__motion { position: absolute; z-index: 2; right: 18%; top: 40%; width: 118px; height: 118px; border: 1px solid rgba(230,189,109,.2); border-radius: 50%; opacity: 0; transform: scale(.6); transition: opacity .5s .55s, transform .8s .45s; }
.service-slide.is-active .service-slide__motion { opacity: 1; transform: scale(1); }
.service-slide__motion::before, .service-slide__motion::after { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(230,189,109,.35); border-radius: inherit; animation: unlockPulse 2.4s infinite; }
.service-slide__motion::after { inset: 30px; animation-delay: .8s; }
.service-slide__motion span { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; background: var(--gold-400); border-radius: 50%; box-shadow: 0 0 25px var(--gold-400); transform: translate(-50%,-50%); }
.service-slide__motion i { position: absolute; left: 50%; top: 50%; width: 62px; height: 2px; background: linear-gradient(90deg, var(--gold-400), transparent); transform-origin: left; animation: unlockScan 3s linear infinite; }
.service-slide__motion--door { right: 15%; top: 43%; }
@keyframes unlockPulse { 0% { opacity: .7; transform: scale(.65); } 75%,100% { opacity: 0; transform: scale(1.15); } }
@keyframes unlockScan { to { transform: rotate(360deg); } }
.service-slider__controls { min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 0 27px; background: #07111f; border-top: 1px solid rgba(255,255,255,.09); }
.service-slider__arrows { display: flex; gap: 8px; }
.service-slider__arrows button { width: 36px; height: 36px; display: grid; place-items: center; padding: 0; color: white; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: 50%; cursor: pointer; transition: color .2s, background .2s; }
.service-slider__arrows button:hover { color: var(--navy-950); background: var(--gold-400); }
.service-slider__arrows svg { width: 18px; height: 18px; }
.service-slider__dots { display: flex; justify-content: center; gap: 28px; }
.service-slider__dots button { position: relative; padding: 24px 3px 20px; color: #78899a; background: transparent; border: 0; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; transition: color .2s; }
.service-slider__dots button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold-400); transition: right .35s; }
.service-slider__dots button.is-active { color: white; }
.service-slider__dots button.is-active::after { right: 0; }
.service-slider__dots button span { margin-right: 5px; color: var(--gold-400); }
.service-slider__counter { display: flex; align-items: baseline; gap: 4px; margin: 0; }
.service-slider__counter strong { color: var(--gold-400); font: 800 20px "Manrope", sans-serif; }
.service-slider__counter span { color: #6d7e8f; font-size: 10px; }
.service-slider__progress { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.08); }
.service-slider__progress span { display: block; width: 0; height: 100%; background: var(--gold-400); }
.service-slider.is-playing .service-slider__progress span { animation: sliderProgress 5.5s linear forwards; }
@keyframes sliderProgress { from { width: 0; } to { width: 100%; } }

.assurance { position: relative; overflow: hidden; color: white; background: var(--navy-900); }
.assurance::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to right, black, transparent 70%); }
.assurance__grid { position: relative; display: grid; grid-template-columns: 1.2fr .75fr; gap: 90px; align-items: center; }
.kicker--light { color: var(--gold-400); }
.assurance__copy > p { max-width: 650px; color: #b8c5d3; font-size: 16px; }
.assurance__points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 32px; margin: 36px 0; }
.assurance__points > div { display: flex; gap: 14px; }
.assurance__points > div > span { width: 33px; height: 33px; flex: 0 0 auto; display: grid; place-items: center; color: var(--gold-400); border: 1px solid rgba(230,189,109,.35); border-radius: 50%; font-size: 9px; font-weight: 800; }
.assurance__points p { margin: 0; }
.assurance__points strong, .assurance__points small { display: block; }
.assurance__points strong { font: 700 14px "Manrope", sans-serif; }
.assurance__points small { margin-top: 5px; color: #8fa0b2; font-size: 11px; line-height: 1.5; }
.btn--outline { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.035); }
.btn--outline span { color: var(--gold-400); }
.assurance__panel { position: relative; padding: 84px 35px 32px; color: var(--ink); background: #f8f3e9; border-radius: 28px; box-shadow: 0 30px 90px rgba(0,0,0,.27); }
.assurance__panel h3 { margin: 0 0 23px; font: 800 22px "Manrope", sans-serif; }
.assurance__seal { position: absolute; left: 50%; top: -55px; width: 110px; height: 110px; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 0 6px; color: var(--navy-950); background: linear-gradient(145deg, #f5deb0, var(--gold-500)); border: 6px solid var(--navy-900); border-radius: 50%; text-align: center; box-shadow: 0 0 0 1px rgba(230,189,109,.4); transform: translateX(-50%); }
.assurance__seal strong { font: 800 23px/1 "Manrope", sans-serif; }
.assurance__seal span { align-self: center; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.assurance__seal i { flex-basis: 100%; height: 0; }
.assurance__panel ol { margin: 0; padding: 0; list-style: none; }
.assurance__panel li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #ded7cb; }
.assurance__panel li > span { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--navy-900); border-radius: 8px; font-size: 11px; font-weight: 800; }
.assurance__panel li p { margin: 0; }
.assurance__panel li strong, .assurance__panel li small { display: block; }
.assurance__panel li strong { font-size: 13px; }
.assurance__panel li small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.assurance__panel > a { display: flex; justify-content: space-between; margin-top: 23px; color: #158b48; font-size: 12px; font-weight: 800; }

.areas { background: var(--cream); }
.area-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.area-feature { position: relative; min-height: 310px; display: flex; align-items: end; overflow: hidden; padding: 35px; color: white; border-radius: 24px; background: var(--navy-900); box-shadow: var(--shadow); }
.area-feature::before, .area-feature::after { content: ""; position: absolute; inset: 0; }
.area-feature::before { opacity: .7; }
.area-feature--akbuk::before { background: radial-gradient(circle at 82% 18%, rgba(47,135,173,.9), transparent 32%), linear-gradient(135deg, #0c2339, #07111f 70%); }
.area-feature--altinkum::before { background: radial-gradient(circle at 82% 18%, rgba(216,168,79,.65), transparent 32%), linear-gradient(135deg, #172a3e, #07111f 70%); }
.area-feature::after { background-image: linear-gradient(135deg, transparent 60%, rgba(255,255,255,.06) 60%); }
.area-feature > div { position: relative; z-index: 2; max-width: 440px; }
.area-feature__index { position: absolute; z-index: 2; right: 27px; top: 14px; color: rgba(255,255,255,.08); font: 800 90px "Manrope", sans-serif; }
.area-feature__label { color: var(--gold-400); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.area-feature h3 { margin: 10px 0; font: 800 31px "Manrope", sans-serif; }
.area-feature p { margin: 0 0 17px; color: #bdcad7; font-size: 13px; }
.area-feature a { color: var(--gold-400); font-size: 12px; font-weight: 800; }
.neighborhoods { margin-top: 30px; padding: 36px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.neighborhoods h3 { margin: 0 0 23px; font: 800 20px "Manrope", sans-serif; }
.neighborhoods__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.neighborhoods__list a { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; background: #f7f4ee; border: 1px solid transparent; border-radius: 10px; transition: border-color .2s, color .2s; }
.neighborhoods__list a:hover { color: var(--gold-500); border-color: var(--gold-300); }
.neighborhoods__list span { font-size: 13px; font-weight: 700; }
.neighborhoods__list small { color: #9b8b70; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.neighborhoods__note { margin: 21px 0 0; color: var(--muted); font-size: 12px; }

.process { background: white; }
.process__steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; max-width: 900px; margin: 0 auto; }
.process__steps::before { content: ""; position: absolute; left: 17%; right: 17%; top: 52px; border-top: 1px dashed #d8c8aa; }
.process__steps > div { position: relative; z-index: 2; text-align: center; }
.process__steps > div > span { position: absolute; left: calc(50% + 33px); top: 0; width: 23px; height: 23px; display: grid; place-items: center; color: var(--navy-950); background: var(--gold-400); border-radius: 50%; font-size: 9px; font-weight: 800; }
.process__steps svg { width: 60px; height: 60px; padding: 17px; color: var(--gold-500); background: var(--cream); border-radius: 19px; box-shadow: 0 0 0 8px white; }
.process__steps h3 { margin: 20px 0 7px; font: 800 16px "Manrope", sans-serif; }
.process__steps p { margin: 0; color: var(--muted); font-size: 12px; }

.faq { background: #f6f2ea; }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq__intro { padding-top: 10px; }
.faq__intro > p { margin: 0 0 29px; color: var(--muted); }
.btn--dark { color: white; background: var(--navy-900); }
.accordion { border-top: 1px solid #d9d1c4; }
.accordion details { border-bottom: 1px solid #d9d1c4; }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; cursor: pointer; font: 700 15px "Manrope", sans-serif; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 24px; height: 24px; flex: 0 0 auto; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 6px; right: 6px; top: 11px; height: 2px; background: var(--gold-500); }
.accordion summary span::after { transform: rotate(90deg); transition: transform .2s; }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { margin: -5px 48px 23px 4px; color: var(--muted); font-size: 13px; }

.cta { padding: 70px 0; color: white; background: linear-gradient(135deg, var(--navy-900), #102b45); border-bottom: 1px solid rgba(255,255,255,.08); }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta h2 { max-width: 670px; margin-bottom: 8px; font-size: clamp(31px, 4vw, 47px); }
.cta p { margin: 0; color: #aebdcb; }
.cta__actions { flex: 0 0 auto; text-align: center; }
.cta__actions .btn { min-width: 230px; display: flex; flex-direction: column; }
.cta__wa { display: inline-flex; gap: 8px; margin-top: 14px; color: #66df97; font-size: 12px; font-weight: 800; }

.site-footer { padding: 72px 0 25px; color: #a9b6c4; background: var(--navy-950); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.brand--footer { color: white; }
.footer__brand p { max-width: 320px; margin: 22px 0 0; font-size: 12px; }
.site-footer h3 { margin: 6px 0 20px; color: white; font: 700 12px "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 9px 0; font-size: 12px; }
.site-footer li a:hover { color: var(--gold-400); }
.footer__contact > a { display: block; font-size: 12px; }
.footer__contact .footer__phone { margin-bottom: 10px; color: var(--gold-400); font: 800 18px "Manrope", sans-serif; }
.footer__contact p { font-size: 11px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.footer__bottom p { margin: 0; }
.mobile-actions { display: none; }

@media (max-width: 1020px) {
  .main-menu { gap: 18px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card--featured .service-card__image { aspect-ratio: auto; min-height: 390px; }
  .assurance__grid { gap: 45px; }
  .neighborhoods__list { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { gap: 30px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 85px; }
  body { padding-bottom: 70px; }
  .topbar__area { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 70px; }
  .menu-toggle { display: block; }
  .main-menu { position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 20px; background: rgba(7,17,31,.98); border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 25px 60px rgba(0,0,0,.25); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s; }
  .main-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-menu > a:not(.nav-call) { padding: 14px 5px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-call { justify-content: center; margin-top: 15px; }
  .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: 680px; }
  .hero__media { background-position: 63% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(5,11,19,.98), rgba(5,11,19,.82) 70%, rgba(5,11,19,.55)), linear-gradient(0deg, rgba(5,11,19,.7), transparent); }
  .hero__content { padding-block: 70px 115px; }
  .hero__copy { max-width: 600px; }
  .hero__badge { width: 105px; height: 105px; right: 24px; bottom: 24px; }
  .hero__badge strong { font-size: 24px; }
  .quick-strip { margin-top: 0; background: white; }
  .quick-strip__grid { grid-template-columns: 1fr 1fr; width: min(100%, 100%); border-radius: 0; box-shadow: none; }
  .quick-strip__grid > div { min-height: 95px; border-bottom: 1px solid var(--line); }
  .section { padding: 85px 0; }
  .unlock-showcase__heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .service-slide { min-height: 600px; align-items: end; }
  .service-slide__shade { background: linear-gradient(0deg, rgba(5,11,19,.98) 0%, rgba(5,11,19,.78) 58%, rgba(5,11,19,.18) 100%); }
  .service-slide__content { width: 100%; padding: 215px 32px 44px; }
  .service-slide__motion { right: 15%; top: 19%; width: 90px; height: 90px; }
  .service-slide__type { right: 22px; bottom: 48px; font-size: 90px; }
  .service-slider__controls { gap: 15px; padding-inline: 18px; }
  .service-slider__dots { gap: 16px; }
  .assurance__grid, .faq__grid { grid-template-columns: 1fr; gap: 80px; }
  .area-feature-grid { grid-template-columns: 1fr; }
  .neighborhoods__list { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { align-items: flex-start; flex-direction: column; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__contact { grid-column: 1 / -1; }
  .mobile-actions { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; height: 70px; display: grid; grid-template-columns: 1.35fr .8fr; color: white; box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 10px; font-weight: 800; }
  .mobile-actions a:first-child { background: var(--gold-500); color: var(--navy-950); }
  .mobile-actions a:last-child { background: #1fae59; }
  .mobile-actions svg { width: 22px; height: 22px; }
  .mobile-actions small { display: block; font-size: 8px; line-height: 1; letter-spacing: .12em; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar { display: none; }
  .brand__mark { width: 37px; height: 37px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 665px; }
  .hero__media { background-position: 64% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(5,11,19,.98), rgba(5,11,19,.76)), linear-gradient(0deg, rgba(5,11,19,.74), transparent); }
  .hero__content { padding-block: 68px 105px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero__lead { font-size: 15px; line-height: 1.65; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero__trust { gap: 8px 14px; }
  .hero__trust li { font-size: 10px; }
  .hero__badge { display: none; }
  .quick-strip__grid > div { padding: 18px 14px; gap: 10px; }
  .quick-strip__icon { width: 32px; height: 32px; }
  .quick-strip strong { font-size: 11px; }
  .quick-strip small { font-size: 9px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .assurance h2, .faq h2 { font-size: 34px; }
  .section-heading p { font-size: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: auto; display: flex; }
  .service-card--featured .service-card__image { min-height: 0; aspect-ratio: 16 / 10; }
  .service-mini-grid { grid-template-columns: 1fr; }
  .unlock-showcase { margin-top: 58px; }
  .service-slider { border-radius: 20px; }
  .service-slide { min-height: 590px; }
  .service-slide:nth-child(1) > img { object-position: 61% center; }
  .service-slide:nth-child(2) > img { object-position: 66% center; }
  .service-slide__content { padding: 205px 22px 35px; }
  .service-slide h4 { font-size: 36px; }
  .service-slide__content > p:not(.service-slide__eyebrow) { font-size: 12px; }
  .service-slide__features { margin: 18px 0; }
  .service-slide__content > a { width: 100%; justify-content: center; }
  .service-slide__type { display: none; }
  .service-slide__motion { right: 9%; top: 16%; }
  .service-slider__controls { grid-template-columns: auto 1fr; min-height: 67px; }
  .service-slider__dots { justify-content: flex-end; gap: 10px; }
  .service-slider__dots button { padding-block: 22px 18px; font-size: 8px; }
  .service-slider__counter { display: none; }
  .assurance__points { grid-template-columns: 1fr; }
  .assurance__panel { padding-inline: 24px; }
  .area-feature { min-height: 340px; padding: 27px; }
  .neighborhoods { padding: 24px 16px; }
  .neighborhoods__list { grid-template-columns: 1fr 1fr; }
  .neighborhoods__list a { padding: 11px; }
  .neighborhoods__list span { font-size: 11px; }
  .process__steps { grid-template-columns: 1fr; gap: 35px; }
  .process__steps::before { left: 50%; top: 0; bottom: 0; right: auto; height: auto; border-left: 1px dashed #d8c8aa; border-top: 0; }
  .process__steps > div { padding: 15px 0; background: white; }
  .faq__grid { gap: 45px; }
  .cta { padding: 55px 0; }
  .cta h2 { font-size: 34px; }
  .cta__actions, .cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__contact { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

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