:root {
  --ink: #171a3d;
  --ink-2: #555875;
  --teal: #3157d5;
  --teal-dark: #1f389a;
  --teal-soft: #e8eafd;
  --cream: #faf8f4;
  --paper: #ffffff;
  --coral: #ef8b2c;
  --gold: #f2bb45;
  --line: rgba(49, 87, 213, .14);
  --shadow: 0 24px 70px rgba(23, 26, 61, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--teal); color: #fff; }

.container-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 42px 0 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
  color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral); border-radius: 10px; }
.display-title { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.section-title { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.12; }
.section-copy { max-width: 640px; margin: 14px 0 0; color: var(--ink-2); font-size: .96rem; }
.text-balance { text-wrap: balance; }

.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; border-radius: 10px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.top-strip { background: var(--ink); color: #eef0ff; font-size: .78rem; }
.top-strip-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.top-strip a { opacity: .9; transition: opacity .2s; }
.top-strip a:hover { opacity: 1; }
.top-strip-links { display: flex; align-items: center; gap: 22px; }
.dot-online { width: 7px; height: 7px; display: inline-block; margin-right: 8px; border-radius: 50%; background: #ffb13c; box-shadow: 0 0 0 4px rgba(255, 177, 60, .15); }

#site-header { display: contents; }
.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(251, 248, 240, .9); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s, border-color .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(23,26,61,.07); }
.nav-shell { min-height: 74px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand-mark { position: relative; width: 41px; height: 41px; display: grid; place-items: center; border-radius: 13px 13px 13px 4px; background: linear-gradient(145deg, #456ce7, #243fa9); color: #fff; box-shadow: 0 8px 22px rgba(49,87,213,.24); transform: rotate(-3deg); }
.brand-mark svg { width: 23px; transform: rotate(3deg); }
.brand-copy { line-height: 1; }
.brand-name { display: block; font-size: 1rem; font-weight: 800; letter-spacing: -.03em; }
.brand-place { display: block; margin-top: 5px; color: var(--teal); font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link { position: relative; padding: 12px 11px; border-radius: 10px; color: #343758; font-size: .84rem; font-weight: 700; transition: color .2s, background .2s; }
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(49,87,213,.07); }
.services-menu { position: relative; }
.nav-link-drop { display: flex; align-items: center; gap: 5px; border: 0; background: transparent; }
.nav-link-drop svg { width: 12px; transition: transform .2s; }
.services-menu:hover .nav-link-drop svg, .services-menu:focus-within .nav-link-drop svg { transform: rotate(180deg); }
.mega-menu { position: absolute; visibility: hidden; opacity: 0; top: calc(100% + 16px); left: 50%; width: 620px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); transform: translate(-50%, 8px); transition: opacity .2s, transform .2s, visibility .2s; }
.services-menu:hover .mega-menu, .services-menu:focus-within .mega-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5px; }
.mega-link { padding: 12px 14px; border-radius: 12px; color: var(--ink-2); font-size: .82rem; font-weight: 700; }
.mega-link:hover { background: var(--teal-soft); color: var(--teal-dark); }
.nav-actions { display: flex; align-items: center; justify-self: end; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 21px; border: 1px solid transparent; border-radius: 14px; font-size: .84rem; font-weight: 800; line-height: 1; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #3d65e3, #2747bb); color: #fff; box-shadow: 0 12px 28px rgba(49,87,213,.25); }
.btn-primary:hover { background: linear-gradient(135deg, #294dc8, #1d348d); box-shadow: 0 16px 34px rgba(49,87,213,.31); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 12px 28px rgba(23,26,61,.18); }
.btn-light { background: #fff; border-color: var(--line); color: var(--ink); box-shadow: 0 8px 25px rgba(23,26,61,.08); }
.btn-coral { background: linear-gradient(135deg, #f39a3c, #e8791d); color: #fff; box-shadow: 0 12px 28px rgba(239,139,44,.25); }
.btn svg { width: 18px; height: 18px; }
.menu-toggle { display: none; width: 44px; height: 44px; flex: 0 0 44px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-drawer { position: fixed; z-index: 999; inset: var(--drawer-top, 120px) 0 auto; max-height: calc(100vh - var(--drawer-top, 120px)); padding: 18px 20px 30px; overflow-y: auto; background: var(--cream); border-top: 1px solid var(--line); transform: translateY(-130%); opacity: 0; transition: transform .3s ease, opacity .25s, top .1s linear; }
.mobile-drawer.open { transform: translateY(0); opacity: 1; }
.mobile-link { display: flex; justify-content: space-between; align-items: center; padding: 14px 3px; border-bottom: 1px solid var(--line); font-size: 1rem; font-weight: 800; }
.mobile-link svg { width: 18px; height: 18px; flex: 0 0 18px; }
.mobile-subgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 14px 0; }
.mobile-subgrid a { padding: 10px 12px; border-radius: 10px; background: #fff; color: var(--ink-2); font-size: .78rem; font-weight: 700; }
.mobile-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }

.hero { position: relative; height: 78vh; min-height: 560px; max-height: 760px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 15% 18%, rgba(242,187,69,.22), transparent 26%), radial-gradient(circle at 88% 18%, rgba(166,146,255,.18), transparent 26%), var(--cream); }
.hero::before { content: ""; position: absolute; right: -180px; top: -180px; width: 540px; height: 540px; border: 1px solid rgba(49,87,213,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(49,87,213,.028), 0 0 0 140px rgba(49,87,213,.02); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 52px; align-items: center; padding: 10px 0 10px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px 7px 7px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.76); color: var(--teal-dark); font-size: .72rem; font-weight: 800; }
.hero-badge-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; }
.hero-badge-icon svg { width: 15px; }
.hero h1 { max-width: 650px; margin: 15px 0 15px; font-size: clamp(2.55rem, 4.3vw, 4.05rem); }
.hero h1 .accent { color: var(--teal); }
.hero-copy { max-width: 590px; margin: 0; color: var(--ink-2); font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 21px; }
.avatar-stack { display: flex; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -9px; border: 3px solid var(--cream); border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-size: .72rem; font-weight: 900; }
.avatar:first-child { margin-left: 0; }
.proof-stars { color: #f5a623; font-size: .82rem; letter-spacing: 1px; }
.proof-copy { color: var(--ink-2); font-size: .75rem; line-height: 1.45; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; height: clamp(400px, 64vh, 590px); overflow: hidden; border-radius: 150px 150px 28px 28px; background: #e9eafb; box-shadow: var(--shadow); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,26,61,.24), transparent 42%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.trust-card { position: absolute; z-index: 2; left: -44px; bottom: 34px; width: 220px; padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.trust-card-top { display: flex; align-items: center; gap: 11px; }
.trust-card-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--teal-soft); color: var(--teal); }
.trust-card-icon svg { width: 20px; }
.trust-card strong { display: block; font-size: .9rem; }
.trust-card span { color: var(--ink-2); font-size: .67rem; }
.floating-note { position: absolute; top: 70px; right: -42px; padding: 14px 17px; border-radius: 16px; background: var(--ink); color: #fff; box-shadow: var(--shadow); transform: rotate(3deg); }
.floating-note strong { display: block; font-family: "DM Serif Display", serif; font-size: 1.25rem; font-weight: 400; }
.floating-note span { font-size: .64rem; opacity: .75; }

.trust-bar { position: relative; z-index: 3; margin-top: -34px; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 18px 55px rgba(23,26,61,.09); }
.trust-item { display: flex; align-items: center; gap: 12px; min-height: 82px; padding: 15px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--teal-soft); color: var(--teal); }
.trust-item-icon svg { width: 20px; }
.trust-item strong { display: block; font-size: .85rem; line-height: 1.3; }
.trust-item span { color: var(--ink-2); font-size: .69rem; }

.services-intro { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 270px; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 16px 40px rgba(23,26,61,.055); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(49,87,213,.32); box-shadow: 0 24px 55px rgba(23,26,61,.12); }
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border-radius: 50%; background: rgba(232,234,253,.72); transition: transform .3s; }
.service-card:hover::after { transform: scale(1.18); }
.service-number { color: rgba(49,87,213,.38); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 20px 0 18px; border-radius: 15px; background: var(--teal-soft); color: var(--teal); }
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin: 0 0 7px; font-family: "DM Serif Display", serif; font-size: 1.28rem; font-weight: 400; line-height: 1.18; }
.service-card p { margin: 0 0 22px; color: var(--ink-2); font-size: .82rem; line-height: 1.6; }
.service-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 7px; color: var(--teal); font-size: .76rem; font-weight: 900; }
.service-link svg { width: 15px; transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

.service-card.has-photo { padding-top: 18px; }
.service-thumb { position: relative; height: 132px; margin: -4px -7px 16px; overflow: hidden; border-radius: 15px; background: #ececf8; }
.service-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,26,61,.18), transparent 55%); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-thumb img { transform: scale(1.045); }
.service-card.has-photo .service-icon { position: absolute; z-index: 3; top: 115px; right: 24px; width: 41px; height: 41px; margin: 0; border: 4px solid #fff; border-radius: 13px; box-shadow: 0 8px 20px rgba(23,26,61,.14); }
.service-card.has-photo .service-icon svg { width: 20px; height: 20px; }

.about-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.about-band::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to right, #000, transparent 70%); }
.about-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: center; }
.about-collage { position: relative; min-height: 420px; }
.about-photo-main { position: absolute; inset: 0 70px 0 0; overflow: hidden; border-radius: 28px 100px 28px 28px; }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.about-stamp { position: absolute; right: 4px; bottom: 34px; width: 145px; height: 145px; display: grid; place-items: center; border: 8px solid var(--ink); border-radius: 50%; background: var(--coral); color: #fff; text-align: center; transform: rotate(-8deg); }
.about-stamp strong { font-family: "DM Serif Display", serif; font-size: 1.7rem; font-weight: 400; line-height: 1; }
.about-stamp span { display: block; margin-top: 5px; font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-band .eyebrow { color: #b8c5ff; }
.about-band .section-copy { color: #d0d4ec; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin: 22px 0 26px; }
.feature-item { display: flex; align-items: center; gap: 11px; color: #f2f3ff; font-size: .85rem; font-weight: 700; }
.feature-check { flex: 0 0 auto; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(242,187,69,.16); color: #ffc75c; }
.feature-check svg { width: 13px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.process-card { position: relative; padding: 22px 20px; border-radius: 19px; background: #fff; border: 1px solid var(--line); }
.process-step { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 19px; border-radius: 11px; background: var(--ink); color: #fff; font-size: .72rem; font-weight: 900; }
.process-card h3 { margin: 0 0 9px; font-size: .98rem; }
.process-card p { margin: 0; color: var(--ink-2); font-size: .8rem; }
.process-card:not(:last-child)::after { content: ""; position: absolute; z-index: 2; top: 49px; right: -25px; width: 32px; border-top: 2px dashed rgba(49,87,213,.28); }

.why-section { background: #f0eee5; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.why-points { display: grid; gap: 12px; }
.why-point { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 15px; border: 1px solid transparent; border-radius: 16px; transition: background .2s, border-color .2s, transform .2s; }
.why-point:hover { transform: translateX(5px); background: #fff; border-color: var(--line); }
.why-point-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #fff; color: var(--teal); }
.why-point-icon svg { width: 22px; }
.why-point h3 { margin: 0 0 4px; font-size: .95rem; }
.why-point p { margin: 0; color: var(--ink-2); font-size: .78rem; }
.stats-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 22px; border-radius: 28px; background: var(--teal); box-shadow: var(--shadow); }
.stat-card { min-height: 140px; padding: 20px; border-radius: 17px; background: rgba(255,255,255,.1); color: #fff; }
.stat-number { display: block; font-family: "DM Serif Display", serif; font-size: 2.45rem; line-height: 1; }
.stat-label { display: block; margin-top: 14px; color: #e0e4ff; font-size: .72rem; font-weight: 700; }
.stat-card.accent { background: var(--coral); }

.reviews-wrap { overflow: hidden; }
.reviews-track { display: flex; gap: 18px; width: max-content; animation: marquee 34s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }
.review-card { width: min(370px, 84vw); flex: 0 0 auto; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.review-stars { color: #f5a623; letter-spacing: 2px; }
.review-card blockquote { min-height: 96px; margin: 14px 0; color: var(--ink-2); font-family: "DM Serif Display", serif; font-size: 1.05rem; line-height: 1.42; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-weight: 900; }
.review-author strong { display: block; font-size: .8rem; }
.review-author span { color: var(--ink-2); font-size: .68rem; }

.cta-band { position: relative; overflow: hidden; border-radius: 34px; background: var(--teal); color: #fff; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.cta-band::before { left: -100px; bottom: -160px; box-shadow: 0 0 0 45px rgba(255,255,255,.03); }
.cta-band::after { right: -120px; top: -150px; box-shadow: 0 0 0 60px rgba(255,255,255,.025); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 40px 46px; }
.cta-inner h2 { max-width: 800px; margin: 0; font-family: "DM Serif Display", serif; font-size: clamp(1.75rem, 2.8vw, 2.55rem); font-weight: 400; line-height: 1.12; }
.cta-inner p { margin: 13px 0 0; color: #d9ddf5; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.page-hero { position: relative; overflow: hidden; padding: 64px 0 58px; background: radial-gradient(circle at 75% 20%, rgba(243,183,92,.18), transparent 24%), var(--ink); color: #fff; }
.page-hero::after { content: ""; position: absolute; right: -70px; top: -160px; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.02); }
.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 24px; color: #bdc8ff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb svg { width: 13px; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.35rem, 4.2vw, 3.65rem); }
.page-hero p { max-width: 650px; margin: 17px 0 0; color: #d2d6ee; font-size: .96rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.service-detail-page .page-hero { min-height: 420px; display: flex; align-items: center; }
.service-detail-page .page-hero > .container-shell { position: relative; z-index: 3; }
.service-detail-page .page-hero::before { content: ""; position: absolute; z-index: 0; inset: 0 0 0 auto; width: 47%; background-position: center; background-size: cover; opacity: .88; mask-image: linear-gradient(to right, transparent 0, #000 34%); }
.service-detail-page .page-hero h1 { max-width: 58%; }
.service-detail-page .page-hero p { max-width: 53%; }
.patient-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-patient-care.jpg'); }
.elder-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-elder-care.jpg'); }
.cook-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-cook.jpg'); }
.maid-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-house-maid.jpg'); }
.babysitter-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-babysitter.jpg'); }
.japa-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-japa-maid.jpg'); }
.driver-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-driver.jpg'); }
.schedule-detail .page-hero::before { background-image: linear-gradient(rgba(23,26,61,.06), rgba(23,26,61,.06)), url('../img/service-full-part-time.jpg'); }

.content-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; align-items: start; }
.prose h2 { margin: 32px 0 12px; font-family: "DM Serif Display", serif; font-size: 1.6rem; font-weight: 400; line-height: 1.24; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 22px 0 9px; font-size: 1rem; }
.prose p { color: var(--ink-2); }
.prose ul { display: grid; gap: 10px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 29px; color: var(--ink-2); }
.prose li::before { content: "\2713"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-size: .65rem; font-weight: 900; }
.sidebar-card { position: sticky; top: 106px; padding: 23px; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 18px 50px rgba(23,26,61,.08); }
.sidebar-card h3 { margin: 0 0 8px; font-family: "DM Serif Display", serif; font-size: 1.65rem; font-weight: 400; }
.sidebar-card > p { margin: 0 0 20px; color: var(--ink-2); font-size: .82rem; }
.mini-list { display: grid; gap: 10px; margin: 21px 0; }
.mini-list-item { display: flex; align-items: center; gap: 10px; padding: 11px; border-radius: 11px; background: var(--cream); font-size: .76rem; font-weight: 800; }
.mini-list-item svg { width: 17px; color: var(--teal); }
.sidebar-card .btn { width: 100%; margin-top: 8px; }
.detail-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.detail-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.detail-card svg { width: 25px; color: var(--teal); }
.detail-card h3 { margin: 14px 0 7px; font-size: .9rem; }
.detail-card p { margin: 0; color: var(--ink-2); font-size: .74rem; }

.page-service-photo { position: relative; margin: 0 0 28px; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); background: #ececf8; }
.page-service-photo img { width: 100%; height: 300px; object-fit: cover; }
.page-service-photo figcaption { position: absolute; left: 18px; bottom: 18px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(23,26,61,.78); color: #fff; font-size: .68rem; font-weight: 800; backdrop-filter: blur(10px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: 0 16px 45px rgba(23,26,61,.06); }
.price-card.featured { color: #fff; background: var(--ink); transform: translateY(-12px); box-shadow: var(--shadow); }
.popular-tag { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: var(--coral); color: #fff; font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-card h3 { margin: 0; font-family: "DM Serif Display", serif; font-size: 1.65rem; font-weight: 400; }
.price-copy { min-height: 72px; margin: 11px 0 23px; color: var(--ink-2); font-size: .8rem; }
.price-card.featured .price-copy { color: #d2d6ee; }
.price-value { font-family: "DM Serif Display", serif; font-size: 2.35rem; line-height: 1; }
.price-value small { font-family: "Manrope", sans-serif; font-size: .67rem; font-weight: 700; }
.price-features { display: grid; gap: 10px; margin: 21px 0; padding: 0; list-style: none; }
.price-features li { display: flex; gap: 9px; align-items: center; font-size: .78rem; }
.price-features svg { width: 17px; color: var(--teal); }
.price-card.featured .price-features svg { color: #ffc75c; }
.price-card .btn { width: 100%; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: #fff; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(23,26,61,.1); }
.blog-art { position: relative; min-height: 220px; display: grid; place-items: center; overflow: hidden; background: var(--teal-soft); }
.blog-art::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid rgba(49,87,213,.2); border-radius: 50%; box-shadow: 0 0 0 35px rgba(49,87,213,.04), 0 0 0 70px rgba(49,87,213,.03); }
.blog-art svg { position: relative; width: 70px; color: var(--teal); }
.blog-art.coral { background: #f6e2d8; }
.blog-art.coral svg { color: var(--coral); }
.blog-art.gold { background: #f7ecd3; }
.blog-art.gold svg { color: #b47a20; }
.blog-body { padding: 20px; }
.blog-meta { color: var(--teal); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.blog-body h2 { margin: 8px 0 10px; font-family: "DM Serif Display", serif; font-size: 1.25rem; font-weight: 400; line-height: 1.27; }
.blog-body p { margin: 0 0 18px; color: var(--ink-2); font-size: .77rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.contact-list { display: grid; gap: 13px; margin-top: 24px; }
.contact-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.contact-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--teal-soft); color: var(--teal); }
.contact-icon svg { width: 21px; }
.contact-item strong { display: block; margin-bottom: 3px; font-size: .78rem; }
.contact-item span, .contact-item a { color: var(--ink-2); font-size: .79rem; }
.form-card { padding: 26px; border: 1px solid var(--line); border-radius: 23px; background: #fff; box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 6px; font-family: "DM Serif Display", serif; font-size: 1.65rem; font-weight: 400; }
.form-card > p { margin: 0 0 25px; color: var(--ink-2); font-size: .82rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .72rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid rgba(23,26,61,.16); border-radius: 12px; outline: none; background: #fcfcfa; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(49,87,213,.09); }
.form-card .btn { margin-top: 4px; }
.form-note { margin: 10px 0 0; color: var(--ink-2); font-size: .66rem; }
.form-success { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 11px; background: #e8eafd; color: #253e9f; font-size: .78rem; font-weight: 700; }
.form-success.show { display: block; }
.map-card { min-height: 370px; display: grid; place-items: center; margin-top: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background-color: #e9eafb; background-image: linear-gradient(30deg, rgba(49,87,213,.09) 12%, transparent 12.5%, transparent 87%, rgba(49,87,213,.09) 87.5%, rgba(49,87,213,.09)), linear-gradient(150deg, rgba(49,87,213,.09) 12%, transparent 12.5%, transparent 87%, rgba(49,87,213,.09) 87.5%, rgba(49,87,213,.09)), linear-gradient(30deg, rgba(49,87,213,.09) 12%, transparent 12.5%, transparent 87%, rgba(49,87,213,.09) 87.5%, rgba(49,87,213,.09)), linear-gradient(150deg, rgba(49,87,213,.09) 12%, transparent 12.5%, transparent 87%, rgba(49,87,213,.09) 87.5%, rgba(49,87,213,.09)); background-size: 80px 140px; background-position: 0 0, 0 0, 40px 70px, 40px 70px; }
.map-pin-card { max-width: 310px; padding: 25px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.map-pin-card svg { width: 31px; margin: auto; color: var(--coral); }
.map-pin-card strong { display: block; margin: 10px 0 4px; }
.map-pin-card span { display: block; color: var(--ink-2); font-size: .75rem; }

.faq-list { display: grid; gap: 9px; margin-top: 26px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 17px; border: 0; background: transparent; color: var(--ink); text-align: left; font-size: .82rem; font-weight: 800; }
.faq-question svg { width: 18px; flex: 0 0 auto; transition: transform .2s; }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 17px 16px; color: var(--ink-2); font-size: .78rem; }

.site-footer { margin-top: 58px; background: var(--ink); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1fr .5fr .9fr 1fr; gap: 36px; padding: 50px 0 38px; }
.site-footer .brand-mark { background: var(--coral); }
.site-footer .brand-place { color: #b8c5ff; }
.footer-about { max-width: 330px; margin: 20px 0; color: #cbd0e8; font-size: .77rem; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; color: #d5d9ef; transition: background .2s, color .2s; }
.footer-socials a:hover { background: var(--teal); color: #fff; }
.footer-socials svg { width: 17px; }
.footer-title { margin: 0 0 18px; font-size: .82rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links span { color: #cbd0e8; font-size: .76rem; }
.footer-links a:hover { color: #fff; }
.footer-services { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
.footer-service-column { display: grid; align-content: start; gap: 10px; }
.footer-contact-row { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact-row svg { width: 16px; flex: 0 0 auto; margin-top: 4px; color: #9bafff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); color: #aeb5d2; font-size: .68rem; }
.footer-bottom-links {  }

.floating-actions { position: fixed; z-index: 900; right: 18px; bottom: 20px; display: grid; gap: 10px; }
.float-btn { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: #fff; box-shadow: 0 14px 35px rgba(23,26,61,.25); transition: transform .2s; }
.float-btn:hover { transform: translateY(-3px) scale(1.02); }
.float-btn svg { width: 24px; }
.float-whatsapp { background: linear-gradient(145deg, #456ce7, #243fa9); }
.float-call { background: var(--coral); }
.scroll-progress { position: fixed; z-index: 1100; top: 0; left: 0; width: 0; height: 3px; background: var(--coral); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .nav-shell { display: flex; }
  .desktop-nav { display: none; }
  .nav-actions .btn { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .section-pad { padding: 52px 0; }
  .hero { height: auto; min-height: auto; max-height: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 44px 0 54px; }
  .hero-copy-wrap { max-width: 700px; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .hero-image-wrap { height: auto; aspect-ratio: 5/4; border-radius: 110px 110px 26px 26px; }
  .hero-image-wrap img { object-position: 60% 35%; }
  .floating-note { right: -15px; }
  .trust-card { left: -20px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .why-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-collage { max-width: 620px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2)::after { display: none; }
  .pricing-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .cta-inner { display: block; }
  .cta-actions { margin-top: 26px; }
  .sidebar-card { position: static; }
  .service-detail-page .page-hero::before { width: 100%; opacity: .24; mask-image: none; }
  .service-detail-page .page-hero h1, .service-detail-page .page-hero p { max-width: 100%; }
}

@media (max-width: 640px) {
  .container-shell { width: min(100% - 28px, 1180px); }
  .top-strip-inner { min-height: 34px; }
  .top-strip-links a:first-child { display: none; }
  .top-strip { font-size: .67rem; }
  .nav-shell { min-height: 66px; }
  .brand-mark { width: 37px; height: 37px; }
  .menu-toggle { width: 42px; height: 42px; flex-basis: 42px; border-radius: 12px; }
  .menu-toggle span { width: 18px; }
  .mobile-drawer { padding: 10px 18px 24px; }
  .mobile-link { min-height: 52px; padding: 12px 4px; font-size: .9rem; }
  .mobile-link svg { width: 17px; height: 17px; flex-basis: 17px; }
  .section-pad { padding: 40px 0; }
  .section-pad-sm { padding: 30px 0 0; }
  .section-title { font-size: clamp(1.65rem, 7.5vw, 2.05rem); }
  .section-copy { margin-top: 11px; font-size: .9rem; }
  .hero-grid { padding: 34px 0 44px; gap: 32px; }
  .hero h1 { margin-top: 14px; font-size: clamp(2.2rem, 10vw, 2.75rem); }
  .hero-copy { font-size: .9rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 18px; }
  .hero-actions .btn { width: 100%; }
  .hero-image-wrap { aspect-ratio: 4/5; border-radius: 90px 90px 23px 23px; }
  .hero-image-wrap img { object-position: 64% center; }
  .trust-card { left: 8px; bottom: 20px; width: 190px; }
  .floating-note { top: 32px; right: -3px; }
  .hero-proof { align-items: flex-start; margin-top: 18px; }
  .trust-bar { margin-top: -25px; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { min-height: 72px; padding: 12px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .services-intro { display: block; }
  .services-intro .btn { margin-top: 17px; }
  .services-grid, .process-grid, .pricing-grid, .blog-grid, .detail-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .about-collage { min-height: 330px; }
  .about-photo-main { right: 28px; }
  .about-stamp { right: -4px; width: 120px; height: 120px; }
  .feature-list { grid-template-columns: 1fr; }
  .process-card::after { display: none; }
  .stats-panel { padding: 12px; gap: 9px; }
  .stat-card { min-height: 118px; padding: 15px; }
  .stat-number { font-size: 2rem; }
  .cta-band { border-radius: 24px; }
  .cta-inner { padding: 28px 20px; }
  .cta-actions { display: grid; }
  .page-hero { padding: 46px 0 42px; }
  .page-hero h1 { font-size: clamp(2.05rem, 9.5vw, 2.6rem); }
  .page-hero p { margin-top: 13px; font-size: .88rem; }
  .page-hero-actions { margin-top: 17px; }
  .service-detail-page .page-hero { min-height: 350px; }
  .prose h2 { font-size: 1.42rem; }
  .page-service-photo { margin-bottom: 21px; }
  .page-service-photo img { height: 220px; }
  .form-card { padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 27px; padding: 38px 0 30px; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .floating-actions { right: 12px; bottom: 14px; }
  .float-btn { width: 50px; height: 50px; border-radius: 16px; }
}

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