@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,400..800&display=swap');
:root{--font-google-sans-flex:"Google Sans Flex"}
[hidden]{display:none!important}.site-header button{border:0;cursor:pointer}.subservice-grid button{margin-top:auto;padding:20px 0 0;border:0;background:transparent;color:var(--purple);font-weight:750;text-align:left;cursor:pointer}.detail-cta{border:0;cursor:pointer}.whatsapp-float b{font-size:1.3rem}.policy-main .breadcrumbs{padding-top:30px}
.dynamic-content,.article-content{max-width:980px;margin:0 auto;padding:90px 24px;color:#55505b;font-size:1.08rem;line-height:1.85}.dynamic-content h2,.article-content h2{color:var(--ink);font-size:clamp(2rem,4vw,3.5rem);line-height:1.08;letter-spacing:-.05em}.dynamic-content h3,.article-content h3{color:var(--ink);font-size:1.6rem}.dynamic-content img,.article-content img{max-width:100%;height:auto;border-radius:20px}.article-image{display:block;width:min(1100px,calc(100% - 40px));max-height:580px;object-fit:cover;margin:0 auto;border-radius:28px}.blog-card>img{width:100%;min-height:260px;height:100%;object-fit:cover}.policy-main>.article-content{padding-top:0}.site-header nav button:not(.nav-quote){background:transparent}


:root {
  --ink: #26232b;
  --muted: #696470;
  --purple: #7b61e8;
  --purple-dark: #6043d7;
  --lavender: #eee9ff;
  --peach: #f6c8b4;
  --paper: #fcfbff;
  --line: rgba(71, 58, 110, 0.13);
  --shadow: 0 24px 70px rgba(87, 65, 145, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-google-sans-flex), "Google Sans", "Segoe UI", sans-serif;
  overflow-x: hidden;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(252, 251, 255, 0.84);
  border-bottom: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.15rem; font-weight: 700; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { position: relative; width: 38px; height: 34px; display: inline-block; }
.brand-mark i { position: absolute; display: block; width: 23px; height: 28px; border-radius: 9px 9px 12px 4px; background: linear-gradient(145deg, #a693f1, #7d62e8); }
.brand-mark i:last-child { right: 0; bottom: 0; background: linear-gradient(145deg, #ffd8c7, #f2a98a); border-radius: 12px 6px 9px 9px; }
.site-header nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); font-size: .94rem; font-weight: 560; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--purple); transition: right .25s ease; }
.site-header nav a:hover::after { right: 0; }
.site-header button { border: 0; cursor: pointer; }
.nav-contact { background: transparent; padding: 12px 22px; border: 1px solid var(--purple) !important; border-radius: 14px; color: var(--purple); }
.nav-quote, .primary-button { background: linear-gradient(115deg, #7658e9 0%, #a476e9 52%, #ff9977 100%); color: white; border-radius: 15px; box-shadow: 0 12px 30px rgba(123,97,232,.22); }
.nav-quote { padding: 13px 22px; }
.nav-contact:hover, .nav-quote:hover, .primary-button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(123,97,232,.28); }
.nav-contact, .nav-quote, .primary-button { transition: .25s ease; }
.menu-button { display: none; padding: 8px; background: transparent; }
.mobile-menu-trigger { width: 46px; height: 46px; border: 1px solid var(--line) !important; border-radius: 50%; }
.mobile-menu-trigger span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 3px auto; }

.hero {
  min-height: calc(100vh - 80px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 84px 6vw 38px;
  background:
    radial-gradient(circle at 12% 45%, rgba(185,154,255,.19), transparent 23%),
    radial-gradient(circle at 92% 72%, rgba(255,184,151,.22), transparent 25%),
    linear-gradient(180deg, #fefdff 0%, #fcfbff 100%);
}
.hero-content { position: relative; z-index: 5; max-width: 780px; margin: auto; text-align: center; animation: rise .75s ease both; }
.eyebrow { color: var(--purple); text-transform: uppercase; font-size: .76rem; letter-spacing: .24em; font-weight: 750; }
.hero h1 { margin: 25px auto 20px; font-size: clamp(3rem, 6vw, 5.3rem); line-height: .98; letter-spacing: -.065em; font-weight: 650; }
.hero h1 span { color: var(--purple); }
.hero-content > p { max-width: 610px; margin: 0 auto; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 35px; margin-top: 34px; }
.primary-button { border: 0; padding: 17px 26px; display: inline-flex; align-items: center; gap: 16px; font-weight: 700; cursor: pointer; }
.text-link { color: var(--purple); display: inline-flex; align-items: center; gap: 9px; font-weight: 700; border-bottom: 1px solid currentColor; padding: 9px 0; }
.text-link:hover svg { transform: translateX(4px); }
.text-link svg { transition: transform .2s ease; }
.floating-card { position: absolute; z-index: 2; width: 235px; padding: 28px; background: rgba(255,255,255,.68); border: 1px solid rgba(147,118,226,.18); box-shadow: var(--shadow); backdrop-filter: blur(18px); border-radius: 24px; animation: float 7s ease-in-out infinite; }
.academic-card { left: 5.5vw; top: 21%; transform: rotate(-7deg); }
.academic-card strong { display: block; margin: 18px 0 10px; font-size: 1.08rem; }
.academic-card > i { display: block; width: 33px; height: 2px; background: var(--purple); margin-bottom: 12px; }
.academic-card p { color: var(--muted); font-size: .78rem; line-height: 1.6; margin: 0; }
.mini-icon { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 50%; background: var(--lavender); color: var(--purple); font-size: 1.4rem; }
.round-arrow { position: absolute; right: 17px; bottom: 16px; display: grid; place-items: center; width: 35px; height: 35px; background: white; border-radius: 50%; }
.document-card { right: 5.5vw; top: 17%; transform: rotate(7deg); height: 245px; }
.doc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.doc-top i { width: 34px; height: 18px; border-radius: 4px; background: #bba9f2; }
.doc-top b { color: #aaa3b0; letter-spacing: 3px; }
.doc-line { display: block; width: 100%; height: 8px; border-radius: 10px; background: #e9e6ec; margin: 10px 0; }
.doc-line.medium { width: 74%; }.doc-line.short { width: 63%; }.doc-line.accent { background: #b7a4f1; width: 68%; }.doc-line.peach { background: #f6b69c; width: 57%; }
.signature { position: absolute; right: 28px; bottom: 24px; font-family: Georgia, serif; font-style: italic; font-size: 1.3rem; }
.glass-orb { position: absolute; right: 10vw; bottom: 11%; width: 145px; height: 145px; border-radius: 50%; border: 1px solid rgba(134,99,225,.45); background: radial-gradient(circle at 60% 65%, rgba(255,176,145,.6), transparent 43%), radial-gradient(circle at 34% 24%, white, rgba(173,146,244,.3) 46%, rgba(255,255,255,.15)); box-shadow: inset 0 0 25px rgba(255,255,255,.9), 0 18px 35px rgba(133,91,206,.18); animation: float 8s ease-in-out infinite reverse; }
.ambient { position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(55px); opacity: .18; }
.ambient-one { left: 15%; top: 8%; background: #a985ff; }.ambient-two { right: 12%; bottom: 6%; background: #ffae8b; }
.trust-row { position: relative; z-index: 5; display: flex; justify-content: center; gap: 0; margin: 78px auto 0; width: min(730px, 90%); }
.trust-row > span { flex: 1; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: .9rem; border-right: 1px solid var(--line); }
.trust-row > span:last-child { border: 0; }
.trust-row i { display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid var(--line); border-radius: 50%; }

.services-section, .process-section, .review-section { padding: 110px clamp(24px, 6vw, 90px); }
.section-heading { max-width: 680px; margin-bottom: 52px; }
.section-heading h2, .process-section h2, .review-section h2, .cta-section h2 { margin: 16px 0; font-size: clamp(2.15rem, 4vw, 3.8rem); line-height: 1.08; letter-spacing: -.05em; font-weight: 650; }
.section-heading p { color: var(--muted); line-height: 1.7; max-width: 600px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1260px; margin: 0 auto; }
.service-card { padding: 30px; min-height: 292px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.73); box-shadow: 0 12px 38px rgba(73,54,123,.06); transition: .3s ease; animation: rise .6s ease both; animation-delay: var(--delay); }
.service-card:hover { transform: translateY(-7px); border-color: rgba(123,97,232,.4); box-shadow: var(--shadow); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; font-weight: 800; font-size: .9rem; }
.lavender { background: #eee9ff; color: #7156da; }.peach { background: #fff0e8; color: #d47654; }.blue { background: #eaf5ff; color: #3d7faf; }.rose { background: #ffeaf0; color: #c85f7e; }.mint { background: #e9f8f0; color: #378861; }
.service-card h3 { margin: 24px 0 10px; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .92rem; }
.service-card button, .service-detail-link { margin-top: auto; padding: 20px 0 0; border: 0; background: transparent; color: var(--purple); display: flex; align-items: center; gap: 8px; font-weight: 700; cursor: pointer; }

.process-section { background: #292531; color: white; }
.process-section .eyebrow { color: #bcaaf7; }
.process-section .section-heading { text-align: center; margin: 0 auto 60px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; gap: 24px; }
.steps article { padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.04); }
.steps b { color: #c6b6fb; font-size: .85rem; letter-spacing: .12em; }
.steps h3 { font-size: 1.3rem; margin: 26px 0 12px; }
.steps p { color: #c9c4cf; line-height: 1.7; margin: 0; }
.review-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; background: linear-gradient(135deg, #f7f4ff, #fff7f3); }
.review-section blockquote { margin: 0; padding: 42px; background: rgba(255,255,255,.72); border: 1px solid white; box-shadow: var(--shadow); border-radius: 28px; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.5; }
.review-section footer { font-family: "Segoe UI", sans-serif; color: var(--muted); font-size: .85rem; margin-top: 24px; }
.cta-section { padding: 110px 24px; text-align: center; background: white; }
.cta-section h2 { max-width: 780px; margin: 20px auto 34px; }
.site-footer { padding: 54px clamp(24px, 6vw, 90px) 30px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; border-top: 1px solid var(--line); }
.site-footer p { color: var(--muted); font-size: .9rem; }
.site-footer button { border: 0; background: none; color: var(--purple); font-weight: 700; cursor: pointer; }
.site-footer small { grid-column: 1 / -1; color: #99939f; border-top: 1px solid var(--line); padding-top: 22px; }

.whatsapp-float { position: fixed; z-index: 55; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; border: 0; border-radius: 999px; padding: 12px 18px 12px 12px; background: #20bd66; color: white; box-shadow: 0 12px 35px rgba(22,144,75,.32); font-weight: 750; cursor: pointer; transition: .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 45px rgba(22,144,75,.4); }
.whatsapp-float svg { width: 29px; fill: currentColor; stroke: none; }
.modal-backdrop { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; background: rgba(31,27,40,.55); backdrop-filter: blur(12px); animation: fade .2s ease; }
.modal { position: relative; width: min(600px, 100%); max-height: calc(100vh - 36px); overflow-y: auto; background: var(--paper); border: 1px solid rgba(255,255,255,.8); border-radius: 28px; padding: clamp(28px, 5vw, 48px); box-shadow: 0 40px 100px rgba(28,21,48,.3); animation: modalIn .35s ease; }
.modal-close { position: absolute; right: 20px; top: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
.modal h2 { margin: 15px 0 8px; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.05em; }
.modal > p { color: var(--muted); margin: 0 0 28px; line-height: 1.6; }
.modal form { display: grid; gap: 17px; }
.modal label { display: grid; gap: 8px; font-size: .82rem; font-weight: 700; }
.modal input, .modal select { width: 100%; min-width: 0; height: 49px; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; background: white; color: var(--ink); outline: none; }
.modal input:focus, .modal select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,97,232,.1); }
.phone-field { display: grid; grid-template-columns: minmax(150px, .8fr) 1.2fr; gap: 10px; }
.check-row { display: flex !important; align-items: center; gap: 9px !important; font-weight: 500 !important; color: var(--muted); }
.check-row input { width: 17px; height: 17px; accent-color: var(--purple); }
.submit-button { height: 54px; border: 0; border-radius: 14px; display: flex; justify-content: center; align-items: center; gap: 12px; background: #20bd66; color: white; font-weight: 800; cursor: pointer; box-shadow: 0 12px 25px rgba(32,189,102,.2); }
.submit-button:hover { background: #18a959; }
.modal small { color: #89838e; text-align: center; line-height: 1.5; }

/* Inner pages */
.inner-main, .article-main { min-height: 70vh; }
.page-hero { position: relative; overflow: hidden; padding: 120px clamp(24px, 8vw, 130px) 90px; text-align: center; background: radial-gradient(circle at 15% 20%, rgba(175,143,255,.2), transparent 25%), radial-gradient(circle at 85% 70%, rgba(255,172,140,.2), transparent 26%), #fefdff; }
.page-hero h1, .detail-hero h1, .article-header h1 { max-width: 950px; margin: 20px auto; font-size: clamp(3rem, 6vw, 5.8rem); line-height: .98; letter-spacing: -.065em; font-weight: 650; }
.page-hero p, .detail-hero p, .article-header p { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.7; }
.listing-grid { max-width: 1260px; margin: 0 auto; padding: 90px clamp(20px, 5vw, 70px) 120px; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.listing-card { position: relative; min-height: 330px; padding: 32px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: 0 14px 45px rgba(73,54,123,.06); transition: .3s ease; }
.listing-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(123,97,232,.35); }
.listing-number { position: absolute; right: 24px; top: 24px; color: #aaa3b0; font-size: .75rem; letter-spacing: .12em; }
.listing-card > i { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--lavender); color: var(--purple); font-style: normal; font-weight: 800; }
.listing-card h2 { margin: 28px 0 12px; font-size: 1.35rem; letter-spacing: -.025em; }
.listing-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.listing-card b { margin-top: auto; color: var(--purple); }.listing-card b span { display: inline-block; transition: transform .2s; }.listing-card:hover b span { transform: translateX(5px); }
.inner-cta { margin: 0 clamp(20px, 6vw, 90px) 110px; padding: clamp(45px, 7vw, 90px); text-align: center; border-radius: 34px; background: linear-gradient(135deg,#f0ebff,#fff1ea); }
.inner-cta h2 { max-width: 830px; margin: 20px auto 30px; font-size: clamp(2.2rem,4vw,4rem); line-height: 1.05; letter-spacing: -.05em; }
.inner-cta a, .detail-cta { display: inline-flex; padding: 15px 23px; border-radius: 14px; background: var(--ink); color: white; font-weight: 750; }
.breadcrumbs { max-width: 1260px; margin: 0 auto; padding: 30px clamp(20px,5vw,70px) 0; display: flex; gap: 10px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--purple); }
.detail-hero { max-width: 1260px; margin: 0 auto; padding: 90px clamp(20px,5vw,70px) 110px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; }
.detail-hero h1, .detail-hero p { margin-left: 0; }
.detail-hero .detail-cta { margin-top: 32px; }
.detail-orb { display: grid; place-items: center; aspect-ratio: 1; max-width: 360px; margin: auto; border-radius: 50%; background: radial-gradient(circle at 65% 70%,rgba(255,174,141,.8),transparent 40%),radial-gradient(circle at 35% 25%,#fff,rgba(172,143,244,.45) 55%,#fff); border: 1px solid rgba(123,97,232,.35); box-shadow: inset 0 0 40px #fff, 0 35px 80px rgba(109,80,183,.2); }
.detail-orb span { font-size: clamp(2rem,6vw,5rem); color: var(--purple); font-weight: 750; }
.detail-columns { padding: 100px clamp(24px,8vw,130px); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: #292531; color: white; }
.detail-columns h2, .detail-process h2 { font-size: clamp(2.2rem,4vw,4rem); line-height: 1.08; letter-spacing: -.05em; }
.detail-columns ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.detail-columns li { display: flex; align-items: center; gap: 15px; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.05); }
.detail-columns li span { color: #c5b4ff; }
.detail-process { padding: 110px clamp(24px,8vw,130px); text-align: center; }
.detail-process > div { max-width: 1100px; margin: 55px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: left; }
.detail-process article { padding: 32px; border: 1px solid var(--line); border-radius: 23px; background: white; }
.detail-process article b { color: var(--purple); letter-spacing: .15em; }.detail-process article p { color: var(--muted); line-height: 1.7; }
.blog-grid { max-width: 1180px; margin: 0 auto; padding: 90px 24px 120px; display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 16px 50px rgba(73,54,123,.07); }
.blog-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.blog-art { position: relative; min-height: 260px; overflow: hidden; padding: 28px; background: radial-gradient(circle at 65% 65%,#ffc1a8,transparent 25%),radial-gradient(circle at 30% 20%,#a98ef2,transparent 28%),#f0ebff; }
.blog-art span { position: relative; z-index: 2; display: inline-block; padding: 8px 12px; background: rgba(255,255,255,.75); border-radius: 999px; font-size: .75rem; font-weight: 700; }
.blog-art i { position: absolute; width: 180px; height: 220px; right: 15%; top: 20%; border-radius: 20px; background: rgba(255,255,255,.63); border: 1px solid white; transform: rotate(8deg); box-shadow: var(--shadow); }
.blog-art i:last-child { right: 34%; top: 30%; transform: rotate(-10deg); }
.blog-copy { padding: 34px; }.blog-copy small { color: var(--purple); text-transform: uppercase; letter-spacing: .1em; }.blog-copy h2 { margin: 14px 0; font-size: clamp(1.5rem,2.5vw,2.4rem); line-height: 1.15; letter-spacing: -.04em; }.blog-copy p { color: var(--muted); line-height: 1.7; }.read-link { display: inline-block; margin-top: 12px; color: var(--purple); font-weight: 750; }
.article-main { padding-bottom: 1px; }
.article-header { max-width: 970px; margin: 0 auto; padding: 90px 24px 80px; text-align: center; }.article-header small { display: block; margin-top: 26px; color: var(--muted); }
.article-layout { max-width: 1100px; margin: 0 auto; padding: 0 24px 110px; display: grid; grid-template-columns: 230px 1fr; gap: 70px; }
.article-layout aside { position: sticky; top: 110px; align-self: start; display: grid; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; }.article-layout aside span { font-weight: 750; }.article-layout aside a { color: var(--muted); font-size: .9rem; }
.article-layout article section { margin-bottom: 46px; }.article-layout article h2 { font-size: clamp(1.7rem,3vw,2.5rem); letter-spacing: -.04em; }.article-layout article p { color: #55505b; font-size: 1.08rem; line-height: 1.85; }
.mobile-drawer-layer { position: fixed; inset: 0; z-index: 80; display: flex; justify-content: flex-end; }
.drawer-scrim { position: absolute; inset: 0; border: 0; background: rgba(35,29,45,.48); backdrop-filter: blur(7px); }
.mobile-drawer { position: relative; width: min(430px,92vw); height: 100%; padding: 24px; display: flex; flex-direction: column; background: #fcfbff; box-shadow: -30px 0 80px rgba(31,24,49,.25); animation: drawerIn .35s ease; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }.drawer-top button { width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 50%; font-size: 1.7rem; cursor: pointer; }.mobile-drawer > p { margin: 45px 0 20px; max-width: 280px; color: var(--muted); line-height: 1.6; }
.mobile-drawer nav { display: grid; }.mobile-drawer nav a { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); font-size: 1.45rem; font-weight: 650; }.mobile-drawer nav small { color: var(--purple); font-size: .66rem; }.mobile-drawer nav b { color: var(--purple); font-size: 1rem; }
.drawer-cta { margin-top: auto; padding: 23px; border-radius: 20px; background: linear-gradient(135deg,#eee8ff,#fff0e8); }.drawer-cta span { display: block; margin-bottom: 14px; font-weight: 650; }.drawer-cta button { border: 0; background: transparent; color: var(--purple); padding: 0; font-weight: 750; cursor: pointer; }
@keyframes drawerIn { from { transform: translateX(100%); } }

.service-overview { padding: 110px clamp(24px,8vw,130px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.service-overview h2, .subservices-section h2, .faq-section h2 { margin: 18px 0 0; font-size: clamp(2.2rem,4vw,4rem); line-height: 1.06; letter-spacing: -.055em; }
.overview-copy p { margin: 0 0 22px; color: var(--muted); font-size: 1.08rem; line-height: 1.85; }
.subservices-section { padding: 110px clamp(24px,6vw,90px); background: linear-gradient(180deg,#faf8ff,#fff); }
.subservices-section .section-heading { margin-left: auto; margin-right: auto; text-align: center; }
.subservice-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.subservice-grid article { min-height: 280px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: 0 14px 40px rgba(73,54,123,.06); transition: .28s ease; }
.subservice-grid article:hover { transform: translateY(-6px); border-color: rgba(123,97,232,.35); box-shadow: var(--shadow); }
.subservice-grid article > span { color: var(--purple); font-size: .75rem; letter-spacing: .16em; }
.subservice-grid h3 { margin: 30px 0 12px; font-size: 1.3rem; letter-spacing: -.03em; }
.subservice-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.subservice-grid a { margin-top: auto; padding-top: 20px; color: var(--purple); font-weight: 750; }
.faq-section { padding: 110px clamp(24px,8vw,130px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; background: #fdfcff; }
.faq-heading p { color: var(--muted); line-height: 1.7; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: white; overflow: hidden; }
.faq-list summary { list-style: none; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary b { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 50%; background: var(--lavender); color: var(--purple); font-size: 1.2rem; transition: transform .2s; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 24px 24px; color: var(--muted); line-height: 1.75; }
.article-faq { margin-bottom: 90px; background: linear-gradient(135deg,#f7f3ff,#fff7f2); }
.expanded-footer { grid-template-columns: 1.5fr .75fr 1fr .9fr; align-items: start; gap: clamp(28px,5vw,70px); padding-top: 70px; }
.footer-brand p { max-width: 330px; margin: 20px 0 0; line-height: 1.7; }
.footer-column, .footer-contact { display: grid; gap: 12px; font-size: .9rem; }
.footer-column strong, .footer-contact strong { margin-bottom: 7px; font-size: .76rem; color: var(--purple); text-transform: uppercase; letter-spacing: .14em; }
.footer-column a, .footer-column button, .footer-contact a { width: fit-content; color: var(--muted); }
.footer-column button { padding: 0; }
.footer-column a:hover, .footer-contact a:hover { color: var(--purple); }
.footer-contact a { color: var(--ink); font-size: 1.2rem; font-weight: 750; }
.footer-contact span { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.expanded-footer small { grid-column: 1 / -1; }
.policy-main { padding-bottom: 100px; }
.policy-main > header { max-width: 920px; margin: 0 auto; padding: 90px 24px 70px; text-align: center; }
.policy-main h1 { margin: 18px 0; font-size: clamp(3rem,6vw,5.5rem); letter-spacing: -.06em; }
.policy-main > header p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.policy-main > header small { display: block; margin-top: 22px; color: #918b96; }
.policy-main > article { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.policy-main > article section { padding: 32px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 260px 1fr; gap: 50px; }
.policy-main > article h2 { margin: 0; font-size: 1.35rem; }
.policy-main > article p { margin: 0; color: var(--muted); line-height: 1.8; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
@keyframes float { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }

@media (max-width: 1080px) {
  .site-header nav { gap: 18px; }
  .floating-card { opacity: .55; }
  .academic-card { left: -80px; }
  .document-card { right: -75px; }
  .glass-orb { right: 3vw; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .menu-button { display: grid; place-items: center; }
  .site-header > nav { display: none; }
  .nav-contact, .nav-quote { width: 100%; }
  .hero { min-height: auto; padding: 90px 24px 38px; }
  .floating-card, .glass-orb { display: none; }
  .trust-row { margin-top: 65px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .review-section { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand { justify-content: center; }
  .site-footer small { grid-column: auto; }
  .listing-grid { grid-template-columns: repeat(2,1fr); padding-top: 65px; }
  .detail-hero, .detail-columns { grid-template-columns: 1fr; }
  .detail-orb { width: min(280px,75vw); }
  .detail-process > div { grid-template-columns: 1fr; }
  .blog-card.featured { display: block; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-layout aside { position: static; }
  .service-overview, .faq-section { grid-template-columns: 1fr; gap: 45px; }
  .subservice-grid { grid-template-columns: repeat(2,1fr); }
  .expanded-footer { grid-template-columns: repeat(2,1fr); text-align: left; }
  .site-footer.expanded-footer .brand { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand { font-size: 1rem; }.brand-mark { transform: scale(.88); transform-origin: left center; margin-right: -3px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .primary-button { width: 100%; justify-content: center; }
  .trust-row { display: grid; grid-template-columns: 1fr; width: 100%; gap: 10px; }
  .trust-row > span { justify-content: flex-start; border: 0; padding: 9px 16px; background: rgba(255,255,255,.72); border-radius: 15px; }
  .services-section, .process-section, .review-section { padding: 80px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .review-section blockquote { padding: 27px; }
  .whatsapp-float { right: 16px; bottom: 16px; padding: 13px; }
  .whatsapp-float span { display: none; }
  .phone-field { grid-template-columns: 1fr; }
  .modal { padding: 30px 20px; border-radius: 22px; }
  .modal-close { right: 14px; top: 14px; }
  .page-hero { padding: 90px 20px 70px; }
  .page-hero h1, .detail-hero h1, .article-header h1 { font-size: clamp(2.65rem,13vw,4rem); }
  .listing-grid, .blog-grid { grid-template-columns: 1fr; padding: 55px 18px 80px; }
  .listing-card { min-height: 300px; }
  .blog-card.featured { grid-column: auto; }
  .detail-hero { padding: 60px 20px 80px; }
  .detail-columns, .detail-process { padding: 80px 20px; }
  .detail-columns { gap: 35px; }
  .inner-cta { margin: 0 18px 80px; padding: 50px 22px; border-radius: 26px; }
  .article-header { padding: 70px 20px 55px; }
  .article-layout { padding: 0 20px 75px; }
  .service-overview, .subservices-section, .faq-section { padding: 80px 20px; }
  .subservice-grid { grid-template-columns: 1fr; }
  .subservice-grid article { min-height: 250px; }
  .expanded-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer.expanded-footer .brand { justify-content: flex-start; }
  .policy-main > article section { grid-template-columns: 1fr; gap: 15px; }
}

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