:root {
  --primary: #341c41;
  --primary-deep: #1d1025;
  --primary-soft: #563268;
  --accent: #b990c9;
  --accent-light: #eadcf0;
  --paper: #fbf9fc;
  --surface: #ffffff;
  --surface-alt: #f4eff6;
  --text: #241c28;
  --muted: #6f6474;
  --line: #e5dce9;
  --success: #58c98d;
  --white: #ffffff;
  --shadow-sm: 0 4px 18px rgba(52, 28, 65, .07);
  --shadow-lg: 0 24px 60px rgba(36, 18, 44, .16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: min(1200px, calc(100vw - 48px));
  --body: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { border: 0; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container, .shell { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px; background: white; color: var(--primary); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #d8b1e7; outline-offset: 3px; }

.top-bar { background: var(--primary-deep); color: #cbbbd2; font-size: .76rem; }
.top-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-bar__left, .top-bar__right, .top-contact, .status-badge { display: flex; align-items: center; gap: 10px; }
.top-bar__left { gap: 18px; }
.status-badge { padding: 3px 11px; border: 1px solid rgba(217,177,231,.24); border-radius: 999px; background: rgba(185,144,201,.1); color: #eadcf0; }
.status-badge i, .regular-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }
.top-contact svg { width: 14px; height: 14px; color: var(--accent); }
.top-contact[href]:hover { color: white; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(52,28,65,.96); color: white; border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(14px); transition: .3s ease; }
.site-header.is-scrolled { background: rgba(29,16,37,.98); box-shadow: 0 12px 34px rgba(17,7,22,.22); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { display: grid; place-items: center; width: 45px; height: 45px; border-radius: 12px; background: linear-gradient(145deg, #a76fbd, #714184); box-shadow: 0 7px 18px rgba(10,4,13,.22); }
.brand-mark svg { width: 30px; height: 30px; stroke: white; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 1.2rem; font-weight: 800; letter-spacing: .13em; }
.brand-copy small { margin-top: 6px; color: #cbbbd2; font-size: .61rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; font-weight: 600; }
.main-nav a { position: relative; color: #ded2e3; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .25s var(--ease); }
.main-nav a:hover { color: white; }
.main-nav a:hover::after { transform: scaleX(1); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; }
.menu-button i { display: block; height: 2px; margin: 5px 0; background: white; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 46px; padding: 0 22px; border-radius: 999px; font-size: .86rem; font-weight: 700; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s, background .25s; }
.button--primary { background: linear-gradient(135deg, #74458a, #9e69b4); color: white; box-shadow: 0 8px 22px rgba(25,10,31,.24); }
.button--primary:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(25,10,31,.32); }
.button--large { min-height: 56px; padding-inline: 28px; }
.button--ghost { border: 1px solid rgba(255,255,255,.3); color: white; background: rgba(255,255,255,.07); }
.button--ghost:hover { background: rgba(255,255,255,.14); }
.button--block { width: 100%; }
.button--light { background: white; color: var(--primary); }
.button--light:hover { transform: translateY(-2px); }

.hero { position: relative; padding: clamp(72px, 8vw, 110px) 0 105px; overflow: hidden; background: linear-gradient(125deg, rgba(29,16,37,.98), rgba(52,28,65,.94) 58%, rgba(86,50,104,.91)); color: white; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; top: -320px; right: 5%; border: 1px solid rgba(217,177,231,.23); border-radius: 50%; box-shadow: 0 0 0 95px rgba(217,177,231,.04), 0 0 0 190px rgba(217,177,231,.025); }
.hero::after { content: ""; position: absolute; inset: auto -15% -60% 44%; height: 700px; background: radial-gradient(circle, rgba(185,144,201,.28), transparent 66%); }
.hero-pattern { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg, black, transparent 80%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 7vw, 92px); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; padding: 6px 14px; border: 1px solid rgba(217,177,231,.35); border-radius: 999px; background: rgba(185,144,201,.12); color: #eadcf0; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { max-width: 720px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 5.6vw, 5.35rem); line-height: 1.04; letter-spacing: -.055em; }
.hero h1 span { color: #d8b1e7; }
.hero-copy > p { max-width: 650px; margin: 24px 0 0; color: #d2c4d8; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 24px; margin: 36px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.13); list-style: none; color: #ded2e3; font-size: .78rem; font-weight: 600; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: rgba(185,144,201,.18); color: #d8b1e7; }
.hero-form { padding: 30px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-lg); background: rgba(32,16,40,.76); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.form-header { display: flex; gap: 15px; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.11); }
.form-header h2 { margin: 0; font-family: var(--display); font-size: 1.35rem; }
.form-header p { margin: 4px 0 0; color: #bbaec1; font-size: .78rem; }
.form-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #75478a, #aa78bd); font-size: 1.25rem; }
.field { margin-bottom: 15px; }
.field label { display: block; margin-bottom: 6px; color: #d9cddd; font-size: .72rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); outline: none; background: rgba(255,255,255,.07); color: white; transition: border .2s, background .2s, box-shadow .2s; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8f8096; }
.field select option { background: var(--primary-deep); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #c18cd4; background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(185,144,201,.17); }
.button--disabled, .button--disabled:hover { opacity: .56; cursor: not-allowed; transform: none; box-shadow: none; }
.form-note { margin: 10px 0 0; color: #9d90a3; font-size: .67rem; text-align: center; }

.stats { position: relative; z-index: 4; margin-top: -42px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 27px 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-lg); }
.stats article { display: flex; align-items: center; gap: 15px; padding: 5px 20px; }
.stats article:not(:last-child) { border-right: 1px solid var(--line); }
.stat-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border-radius: 13px; background: var(--accent-light); color: var(--primary); font-size: 1.25rem; }
.stats strong { display: block; color: var(--primary); font-family: var(--display); font-size: 1.3rem; line-height: 1.15; }
.stats p { margin: 3px 0 0; color: var(--muted); font-size: .72rem; }

.section { padding: clamp(82px, 9vw, 125px) 0; }
.section-heading { max-width: 730px; margin: 0 auto 52px; text-align: center; }
.section-tag { display: inline-block; margin-bottom: 12px; padding: 6px 13px; border-radius: 999px; background: var(--accent-light); color: var(--primary); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.section-heading h2, .about-copy h2 { margin: 0; color: var(--primary); font-family: var(--display); font-size: clamp(2.25rem, 4vw, 3.55rem); line-height: 1.15; letter-spacing: -.035em; }
.section-heading > p { max-width: 620px; margin: 15px auto 0; color: var(--muted); }
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; overflow: hidden; min-height: 360px; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border .3s; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--primary), #a671b9); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-card:hover { transform: translateY(-7px); border-color: #ccb4d5; box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 22px; border-radius: 15px; background: var(--accent-light); color: var(--primary); font-size: 1.55rem; }
.service-card small { color: #9e7aaa; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 8px 0 11px; color: var(--primary); font-family: var(--display); font-size: 1.25rem; }
.service-card p { margin: 0 0 18px; color: var(--muted); font-size: .86rem; }
.service-card ul { margin: auto 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; margin: 7px 0; padding-left: 20px; font-size: .76rem; font-weight: 600; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: #8a549d; }

.about { background: var(--surface-alt); }
.about-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 8vw, 100px); align-items: center; }
.about-visual { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--primary-deep), var(--primary) 55%, #6a3c7c); box-shadow: var(--shadow-lg); }
.visual-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); transform: rotate(-12deg) scale(1.25); }
.visual-grid span { border: 1px solid rgba(255,255,255,.1); }
.visual-grid span:nth-child(2), .visual-grid span:nth-child(6) { background: rgba(185,144,201,.18); }
.about-visual::before, .about-visual::after { content: ""; position: absolute; border-radius: 50%; }
.about-visual::before { width: 270px; height: 270px; left: -65px; bottom: -40px; border: 56px solid rgba(217,177,231,.25); }
.about-visual::after { width: 170px; height: 170px; right: 55px; top: 55px; background: linear-gradient(135deg, #bf8ed0, #6b3a7e); box-shadow: 0 25px 50px rgba(8,2,11,.24); }
.about-badge { position: absolute; z-index: 2; right: -1px; bottom: 34px; display: flex; align-items: center; gap: 15px; padding: 18px 22px; background: white; color: var(--primary); border-radius: 15px 0 0 15px; box-shadow: var(--shadow-lg); }
.about-badge strong { font-family: var(--display); font-size: 1.8rem; }
.about-badge span { color: var(--muted); font-size: .7rem; line-height: 1.35; }
.about-copy > p { color: var(--muted); }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 30px; }
.about-highlights > div { display: grid; grid-template-columns: 30px 1fr; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.about-highlights span { grid-row: 1 / 3; color: #87539a; }
.about-highlights strong { color: var(--primary); font-size: .84rem; }
.about-highlights small { color: var(--muted); font-size: .67rem; }

.differentials { background: white; }
.differentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.differentials-grid article { position: relative; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s, border .25s, background .25s; }
.differentials-grid article:hover { transform: translateY(-5px); border-color: #b98dc8; background: white; }
.differentials-grid article > span { position: absolute; top: 21px; right: 21px; color: #ae99b5; font-size: .67rem; }
.diff-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 18px; border-radius: 13px; background: var(--accent-light); color: var(--primary); font-size: 1.25rem; }
.differentials-grid h3 { margin: 0 0 9px; color: var(--primary); font-family: var(--display); font-size: 1.05rem; }
.differentials-grid p { margin: 0; color: var(--muted); font-size: .79rem; }

.steps { position: relative; overflow: hidden; background: var(--primary-deep); color: white; }
.steps::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(185,144,201,.18), transparent 31%); }
.section-heading--dark { position: relative; }
.section-heading--dark h2 { color: white; }
.section-heading--dark p { color: #b9aabd; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps-grid article { min-height: 245px; padding: 27px 23px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.035); transition: transform .25s, background .25s; }
.steps-grid article:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); }
.steps-grid span { color: rgba(217,177,231,.35); font-family: var(--display); font-size: 2rem; font-weight: 800; }
.steps-grid h3 { margin: 55px 0 9px; font-family: var(--display); }
.steps-grid p { margin: 0; color: #b9aabd; font-size: .79rem; }

.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 14px; background: white; overflow: hidden; transition: box-shadow .25s, border .25s; }
.faq-item.is-open { border-color: #c9aed3; box-shadow: var(--shadow-sm); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 22px; padding: 20px 22px; background: transparent; color: var(--primary); text-align: left; font-weight: 700; cursor: pointer; }
.faq-item button i { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; background: var(--accent-light); color: var(--primary); font-style: normal; transition: transform .25s; }
.faq-item.is-open button i { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 22px; color: var(--muted); font-size: .87rem; transition: padding .3s; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 20px; }
.faq-answer a { color: var(--primary); text-decoration: underline; }

.cta-section { padding: 0 0 80px; background: var(--paper); }
.cta-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 50px 48px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--primary), #633876); color: white; box-shadow: var(--shadow-lg); }
.cta-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -190px; border-radius: 50%; border: 70px solid rgba(255,255,255,.06); }
.cta-card > * { position: relative; z-index: 2; }
.cta-card span { color: #d8b1e7; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cta-card h2 { margin: 7px 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-card p { margin: 0; color: #d5c7da; }

.site-footer { padding: 68px 0 0; background: #140a19; color: #a99cad; }
.company-card { padding: 27px 30px; border: 1px solid #633d72; border-radius: var(--radius-md); background: linear-gradient(135deg, #2d1838, #1d1025); box-shadow: var(--shadow-lg); }
.company-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.company-card__head > div { display: flex; align-items: center; gap: 13px; }
.company-check { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid #a26ab6; border-radius: 11px; background: rgba(185,144,201,.13); color: #d8b1e7; }
.company-card__head p { margin: 0; }
.company-card small { display: block; color: #b78ec5; font-size: .63rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.company-card__head strong { display: block; margin-top: 2px; color: white; font-family: var(--display); font-size: 1.25rem; }
.regular-badge { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid rgba(88,201,141,.45); border-radius: 999px; color: #85dfad; font-size: .7rem; font-weight: 700; }
.company-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 20px; }
.company-card__grid > div { padding: 16px 18px; border-radius: 11px; background: rgba(255,255,255,.035); }
.company-card__grid strong { display: block; margin: 5px 0 2px; color: #d8b1e7; font-family: var(--display); font-size: 1.25rem; letter-spacing: .04em; }
.company-card__grid span, .company-card__grid p { color: #b6a8bb; font-size: .75rem; }
.company-card__grid p { margin: 6px 0 0; }
.company-card__grid a { color: #e2d4e7; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr 1fr 1fr; gap: 45px; padding: 55px 0; }
.brand--footer { color: white; }
.footer-grid > div:first-child > p { max-width: 300px; font-size: .82rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; font-size: .77rem; }
.footer-grid h3 { margin: 0 0 9px; padding-bottom: 8px; color: white; font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid a:hover { color: #d8b1e7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: .69rem; }
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: #d4c7d9; }

/* Página de termos */
.legal-page { background: var(--paper); }
.legal-header { position: relative; }
.legal-main { padding: 90px 0 125px; }
.legal-layout { display: grid; grid-template-columns: .4fr 1.6fr; gap: clamp(55px, 9vw, 125px); }
.legal-aside { padding-top: 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: .74rem; }
.legal-aside span { color: var(--primary); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-content { max-width: 790px; }
.legal-content > .kicker { color: #825093; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.legal-content h1 { margin: 5px 0 20px; color: var(--primary); font-family: var(--display); font-size: clamp(3.5rem, 7vw, 6.3rem); line-height: 1; letter-spacing: -.05em; }
.legal-intro { margin-bottom: 60px; color: var(--muted); font-size: 1.06rem; }
.legal-content section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 10px; color: var(--primary); font-family: var(--display); font-size: 1.35rem; }
.legal-content section p { margin: 0; color: var(--muted); }
.legal-content section a { color: var(--primary); text-decoration: underline; }
.legal-notice { margin-top: 35px; padding: 22px; border-left: 4px solid var(--primary); background: var(--accent-light); }
.legal-notice p { margin: 5px 0 0; color: var(--muted); font-size: .82rem; }
.legal-footer { padding-top: 0; }

/* Painel de configuração */
.admin-page { min-height: 100vh; background: var(--primary-deep); color: white; }
.admin-main { min-height: 100vh; padding: clamp(30px, 6vw, 72px) 0; background-image: radial-gradient(circle at 10% 10%, rgba(185,144,201,.18), transparent 28%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 70px 70px, 70px 70px; }
.admin-shell { width: min(1060px, calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 7vw, 90px); align-items: center; }
.brand--admin { color: white; }
.admin-intro { min-height: 650px; display: flex; flex-direction: column; justify-content: space-between; }
.admin-kicker { display: inline-block; margin-bottom: 14px; padding: 6px 12px; border: 1px solid rgba(217,177,231,.34); border-radius: 999px; color: #d8b1e7; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admin-intro h1 { max-width: 480px; margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 5.4vw, 5rem); line-height: 1.03; letter-spacing: -.055em; }
.admin-intro p { max-width: 430px; margin: 22px 0 0; color: #bdafc1; }
.admin-back { width: fit-content; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.3); color: #ddd1e1; font-size: .8rem; }
.admin-card { padding: clamp(25px, 4vw, 42px); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: var(--paper); color: var(--text); box-shadow: 0 35px 80px rgba(5,1,7,.34); }
.admin-card__header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.admin-card__header > div { min-width: 0; }
.admin-card__header span:first-child { display: block; color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.admin-card__header strong { display: block; max-width: 320px; margin-top: 3px; overflow: hidden; color: var(--primary); font-size: .9rem; text-overflow: ellipsis; white-space: nowrap; }
.admin-status { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; background: #ece7ee; color: var(--muted); font-size: .65rem; font-weight: 700; }
.admin-status i { width: 6px; height: 6px; border-radius: 50%; background: #a59ca8; }
.admin-status.is-configured { background: #e1f6e9; color: #287d4e; }
.admin-status.is-configured i { background: #42ad72; }
.admin-card h2 { margin: 0; color: var(--primary); font-family: var(--display); font-size: 1.55rem; }
.admin-description { margin: 6px 0 26px; color: var(--muted); font-size: .78rem; }
.admin-field { margin-bottom: 18px; }
.admin-field label { display: block; margin-bottom: 6px; color: var(--primary); font-size: .7rem; font-weight: 800; }
.admin-field input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); outline: 0; background: white; color: var(--text); transition: border .2s, box-shadow .2s; }
.admin-field input:focus { border-color: #9a68ad; box-shadow: 0 0 0 3px rgba(154,104,173,.13); }
.admin-field small { display: block; margin-top: 6px; color: var(--muted); font-size: .65rem; }
.admin-divider { height: 1px; margin: 26px 0; background: var(--line); }
.admin-submit { margin-top: 8px; }
.admin-submit:disabled { opacity: .65; cursor: wait; }
.admin-message { min-height: 22px; margin-top: 13px; font-size: .72rem; text-align: center; }
.admin-message[data-type="success"] { color: #238452; }
.admin-message[data-type="error"] { color: #b12f4a; }
.admin-message[data-type="warning"] { color: #9a6516; }
.admin-message[data-type="info"] { color: var(--muted); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.services-grid article:nth-child(2), .differentials-grid article:nth-child(2), .steps-grid article:nth-child(2) { transition-delay: .06s; }
.services-grid article:nth-child(3), .differentials-grid article:nth-child(3), .steps-grid article:nth-child(3) { transition-delay: .12s; }

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-form { max-width: 680px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .stats article:nth-child(n+3) { padding-top: 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .differentials-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 32px, 640px); }
  .top-bar { display: none; }
  .header-inner { min-height: 70px; }
  .menu-button { display: block; }
  .main-nav { position: absolute; inset: 70px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 16px; padding: 24px 16px; background: rgba(29,16,37,.99); border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: 0 20px 30px rgba(10,3,13,.25); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 4px 0; }
  .hero { padding-top: 68px; }
  .trust-list { gap: 14px; }
  .about-layout, .legal-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 430px; }
  .company-card__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 38px 30px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-intro { min-height: auto; gap: 60px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 26px); }
  .hero h1 { font-size: 2.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-form { padding: 22px 18px; }
  .trust-list { flex-direction: column; }
  .stats { margin-top: -28px; }
  .stats-grid, .services-grid, .differentials-grid, .steps-grid, .about-highlights { grid-template-columns: 1fr; }
  .stats article { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 15px 8px !important; }
  .stats article:last-child { border-bottom: 0; }
  .service-card { min-height: 330px; }
  .about-visual { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .company-card__head { flex-direction: column; align-items: flex-start; }
  .legal-main { padding-top: 55px; }
  .admin-main { padding: 22px 0; }
  .admin-intro { gap: 42px; }
  .admin-card { padding: 24px 18px; }
  .admin-card__header { align-items: flex-start; flex-direction: column; }
}

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