:root {
  --bg: #08070c;
  --bg-soft: #0e0c14;
  --panel: #121019;
  --panel-2: #17141f;
  --panel-3: #1d1927;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(139, 92, 246, 0.48);
  --text: #f7f5fa;
  --muted: #aaa5b4;
  --muted-2: #76717f;
  --violet: #8b5cf6;
  --violet-dark: #6d36ec;
  --lavender: #c4b5fd;
  --green: #22c55e;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --red: #ef4444;
  --display: "Sora", sans-serif;
  --body: "Inter", sans-serif;
  --container: 1440px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--text); background: var(--bg); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 8%, rgba(109, 54, 236, .1), transparent 28%), linear-gradient(180deg, #08070c, #07060a); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, blockquote { margin: 0; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 10000; padding: 10px 14px; border-radius: 8px; background: var(--text); color: var(--bg); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 14px; }
.hidden { display: none !important; }

.button { min-height: 44px; border: 1px solid transparent; border-radius: var(--radius-sm); padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: var(--text); background: transparent; font-weight: 650; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(196, 181, 253, .5); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, #9a63ff, #6f35ef); box-shadow: 0 16px 38px rgba(109, 54, 236, .28), inset 0 1px rgba(255, 255, 255, .25); }
.button-primary:hover { box-shadow: 0 18px 46px rgba(109, 54, 236, .42), inset 0 1px rgba(255, 255, 255, .3); }
.button-outline { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .02); }
.button-outline:hover, .button-ghost:hover { border-color: rgba(196, 181, 253, .45); background: rgba(139, 92, 246, .08); }
.button-ghost { border-color: transparent; }
.button-small { min-height: 44px; padding-inline: 22px; }
.button-large { min-height: 56px; padding-inline: 26px; border-radius: 12px; }

.site-header { position: sticky; top: 0; z-index: 100; padding: 10px 0 4px; background: linear-gradient(180deg, rgba(8, 7, 12, .96) 0%, rgba(8, 7, 12, .86) 75%, transparent 100%); backdrop-filter: blur(18px); }
.nav-shell { height: 60px; display: grid; grid-template-columns: 240px 1fr 240px; align-items: center; border: 1px solid rgba(255, 255, 255, .08); border-radius: 16px; padding: 0 18px 0 22px; background: rgba(11, 9, 15, .85); box-shadow: 0 14px 40px rgba(0, 0, 0, .24); }
.brand { width: 178px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 44px); }
.desktop-nav a { position: relative; color: #d6d2dc; font-size: 14px; font-weight: 550; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--violet); transition: right .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); background: var(--panel); }
.mobile-nav { display: none; width: min(calc(100% - 48px), var(--container)); margin: 8px auto 0; padding: 14px; border: 1px solid var(--border); border-radius: 16px; background: rgba(14, 12, 20, .98); box-shadow: var(--shadow); }
.mobile-nav.open { display: grid; gap: 6px; }
.mobile-nav a { padding: 12px; color: var(--muted); }

.hero { position: relative; padding: 14px 0 28px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 20% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .24), transparent); }
.hero-orb { position: absolute; border-radius: 999px; filter: blur(3px); pointer-events: none; }
.hero-orb-one { width: 620px; height: 620px; right: -200px; top: -180px; background: radial-gradient(circle, rgba(124, 58, 237, .18), transparent 68%); }
.hero-orb-two { width: 420px; height: 420px; left: -250px; bottom: -140px; background: radial-gradient(circle, rgba(91, 33, 182, .13), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: minmax(540px, .92fr) minmax(680px, 1.28fr); gap: clamp(24px, 3vw, 48px); align-items: start; }
.hero-copy { position: relative; z-index: 4; padding-left: 10px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--lavender); font-size: 13px; font-weight: 650; letter-spacing: .02em; }
.eyebrow { border: 1px solid rgba(139, 92, 246, .34); border-radius: 999px; padding: 8px 13px; background: rgba(124, 58, 237, .06); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34, 197, 94, .1); }
.hero h1 { margin-top: 18px; max-width: 650px; font: 700 clamp(50px, 3.8vw, 58px)/1.03 var(--display); letter-spacing: -.055em; }
.hero h1 strong { font-weight: 700; color: transparent; background: linear-gradient(100deg, #bca5ff 0%, #8b5cf6 45%, #7234f0 100%); -webkit-background-clip: text; background-clip: text; }
.hero-description { max-width: 590px; margin-top: 16px; color: #bbb6c4; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-actions .button { min-height: 52px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 16px; color: #9f99aa; font-size: 12px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row i { color: var(--green); }

.product-scene { position: relative; z-index: 3; min-height: 390px; display: flex; align-items: flex-start; }
.dashboard-card { position: relative; width: 100%; min-height: 370px; display: grid; grid-template-columns: 116px 1fr; overflow: hidden; border: 1px solid rgba(139, 92, 246, .5); border-radius: 20px; background: linear-gradient(150deg, rgba(19, 16, 27, .99), rgba(9, 8, 13, .99)); box-shadow: 0 32px 90px rgba(0, 0, 0, .55), 0 0 70px rgba(109, 54, 236, .09), inset 0 1px rgba(255, 255, 255, .08); transform: perspective(1400px) rotateY(-1.5deg); }
.dash-sidebar { padding: 16px 9px 12px; border-right: 1px solid rgba(255, 255, 255, .08); background: rgba(5, 4, 9, .35); display: flex; flex-direction: column; }
.dash-sidebar > img { width: 84px; margin: 0 4px 14px; }
.dash-menu { display: grid; gap: 6px; }
.dash-menu span { display: flex; align-items: center; gap: 8px; min-height: 29px; padding: 0 8px; border-radius: 7px; color: #817a8c; font-size: 8px; }
.dash-menu span.active { color: #fff; background: linear-gradient(90deg, rgba(124, 58, 237, .32), rgba(124, 58, 237, .12)); box-shadow: inset 2px 0 var(--violet); }
.dash-menu i { width: 12px; text-align: center; }
.dash-profile { margin-top: auto; display: flex; align-items: center; gap: 8px; padding: 10px 8px; border-top: 1px solid var(--border); }
.dash-profile > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); font-size: 9px; font-weight: 700; }
.dash-profile small { color: #ddd8e4; font-size: 8px; line-height: 1.4; }
.dash-profile b { color: var(--green); font-weight: 500; }
.dash-content { min-width: 0; padding: 16px 15px 11px; }
.dash-top { min-height: 62px; display: grid; grid-template-columns: 1fr 116px 120px; align-items: start; gap: 8px; }
.dash-top > div:first-child > p { font: 600 14px/1.3 var(--display); }
.date-controls { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.date-controls button { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 5px; color: #a9a3b1; background: rgba(255, 255, 255, .02); font-size: 8px; }
.date-controls span { font-size: 9px; color: var(--muted); }
.metric { min-height: 58px; padding: 8px 9px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 9px; background: rgba(255, 255, 255, .025); display: flex; flex-direction: column; gap: 3px; }
.metric small, .metric span { color: var(--muted); font-size: 8px; }
.metric strong { font-size: 15px; }
.metric strong i { color: var(--green); font-size: 10px; }
.schedule { display: grid; gap: 6px; margin-top: 9px; }
.appointment { position: relative; min-height: 44px; display: grid; grid-template-columns: 38px 24px 1fr auto auto; align-items: center; gap: 7px; padding: 5px 8px 5px 0; border: 1px solid rgba(139, 92, 246, .55); border-radius: 8px; background: linear-gradient(90deg, rgba(124, 58, 237, .12), rgba(255, 255, 255, .018)); box-shadow: inset 2px 0 var(--violet); }
.appointment time { margin-left: -49px; color: #9c96a6; font-size: 9px; transform: translateX(-4px); }
.appointment .avatar { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); font-size: 8px; font-weight: 700; }
.appointment p { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.appointment p strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.appointment p small { color: var(--muted); font-size: 8px; }
.appointment > b { font-size: 9px; white-space: nowrap; }
.appointment em { border-radius: 99px; padding: 4px 7px; color: #86efac; background: rgba(34, 197, 94, .11); font-size: 7px; font-style: normal; }
.appointment.green { border-color: rgba(34, 197, 94, .56); box-shadow: inset 2px 0 var(--green); background: linear-gradient(90deg, rgba(34, 197, 94, .1), rgba(255, 255, 255, .018)); }
.appointment.green .avatar { background: #16a34a; }
.appointment.blue { border-color: rgba(59, 130, 246, .48); box-shadow: inset 2px 0 var(--blue); background: linear-gradient(90deg, rgba(59, 130, 246, .1), rgba(255, 255, 255, .018)); }
.appointment.blue .avatar { background: #2563eb; }
.appointment.amber { border-color: rgba(245, 158, 11, .46); box-shadow: inset 2px 0 var(--amber); background: linear-gradient(90deg, rgba(245, 158, 11, .1), rgba(255, 255, 255, .018)); }
.appointment.amber .avatar { background: #d97706; }
.appointment.amber em { color: #d6d0df; background: rgba(255, 255, 255, .06); }
.appointment.empty { grid-template-columns: 38px 1fr auto; min-height: 32px; border-style: dashed; border-color: rgba(255, 255, 255, .09); box-shadow: none; background: transparent; }
.appointment.empty p { color: #625e69; font-size: 8px; text-align: center; }
.appointment.empty button { border: 0; color: #6b6671; background: transparent; }
.dash-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); color: var(--muted); font-size: 7px; }
.dash-footer i { color: var(--green); }
.dash-footer button { border: 1px solid var(--border); border-radius: 5px; padding: 5px 8px; color: #aaa4b2; background: transparent; font-size: 8px; }

.phone-card { position: absolute; right: -16px; bottom: -18px; width: 166px; min-height: 320px; padding: 22px 9px 10px; overflow: hidden; border: 5px solid #292630; border-radius: 28px; background: #09080d; box-shadow: 0 32px 60px rgba(0, 0, 0, .65), inset 0 0 0 1px rgba(255, 255, 255, .08); transform: rotate(6deg); }
.phone-sensor { position: absolute; top: 7px; left: 50%; width: 60px; height: 13px; border-radius: 20px; background: #020203; transform: translateX(-50%); }
.phone-top { display: flex; justify-content: space-between; color: #d6d2dc; font-size: 7px; }
.phone-card h3 { margin-top: 16px; font: 600 13px var(--display); }
.phone-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; margin: 14px 0; }
.phone-days span { padding: 4px 2px; border-radius: 8px; color: #76717d; font-size: 5px; text-align: center; }
.phone-days small { display: block; margin-top: 4px; color: #ddd7e5; font-size: 8px; }
.phone-days .selected { color: #fff; background: var(--violet-dark); }
.phone-event { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 6px; margin-bottom: 8px; padding: 9px 7px; border: 1px solid rgba(139, 92, 246, .48); border-radius: 9px; background: rgba(124, 58, 237, .11); }
.phone-event > span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--violet); font-size: 7px; font-weight: 700; }
.phone-event p { display: flex; flex-direction: column; gap: 3px; }
.phone-event b { font-size: 7px; }
.phone-event small { color: var(--muted); font-size: 5px; }
.phone-event em { color: #dad4e2; font-size: 6px; font-style: normal; }
.phone-event.green { border-color: rgba(34, 197, 94, .4); background: rgba(34, 197, 94, .08); }
.phone-event.green > span { background: #16a34a; }
.phone-event.blue { border-color: rgba(59, 130, 246, .4); background: rgba(59, 130, 246, .08); }
.phone-event.blue > span { background: #2563eb; }
.phone-free { display: flex; justify-content: space-between; margin-bottom: 8px; padding: 10px; border: 1px dashed var(--border); border-radius: 8px; color: #6f6977; font-size: 6px; }
.phone-nav { position: absolute; left: 0; right: 0; bottom: 0; height: 42px; display: flex; align-items: center; justify-content: space-around; border-top: 1px solid var(--border); color: #8f8997; background: rgba(12, 10, 16, .98); font-size: 9px; }
.phone-nav i:first-child { color: var(--violet); }

.guided-section { padding: 20px 0 110px; }
.guided-shell { border: 1px solid var(--border); border-radius: 26px; padding: 34px; background: linear-gradient(145deg, rgba(18, 16, 25, .94), rgba(10, 9, 14, .94)); box-shadow: var(--shadow); }
.guided-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.guided-heading h2, .section-heading h2, .proof-copy h2, .pricing-shell h2, .final-cta h2 { margin-top: 9px; font: 650 clamp(30px, 3vw, 46px)/1.15 var(--display); letter-spacing: -.035em; }
.guided-heading p:last-child, .section-heading > p:last-child { max-width: 650px; margin-top: 10px; color: var(--muted); line-height: 1.7; }
.guided-grid { display: grid; grid-template-columns: 310px 1fr 260px; gap: 20px; margin-top: 28px; }
.tour-steps { display: grid; align-content: start; gap: 10px; }
.tour-step { width: 100%; display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 15px; border: 1px solid transparent; border-radius: 14px; color: var(--muted); background: transparent; text-align: left; transition: .2s ease; }
.tour-step:hover { background: rgba(255, 255, 255, .025); }
.tour-step > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 12px; color: #8f8998; font: 700 15px var(--display); }
.tour-step div { display: flex; flex-direction: column; gap: 6px; }
.tour-step b { color: #dcd7e2; font-size: 14px; }
.tour-step small { color: #85808b; font-size: 11px; line-height: 1.5; }
.tour-step.active { border-color: rgba(139, 92, 246, .45); color: #fff; background: linear-gradient(110deg, rgba(124, 58, 237, .17), rgba(124, 58, 237, .05)); box-shadow: inset 2px 0 var(--violet); }
.tour-step.active > span { border-color: var(--violet); color: #fff; background: var(--violet); box-shadow: 0 8px 24px rgba(124, 58, 237, .34); }
.tour-step.active b { color: #fff; }
.tour-stage { min-height: 390px; padding: 22px; border: 1px solid rgba(139, 92, 246, .25); border-radius: 18px; background: #0d0b12; box-shadow: inset 0 1px rgba(255, 255, 255, .035); }
.tour-progress { display: flex; align-items: center; gap: 15px; color: var(--muted); font-size: 10px; }
.tour-progress > div { flex: 1; height: 4px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .06); }
.tour-progress i { display: block; width: 33.33%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--lavender)); transition: width .3s ease; }
.tour-stage-header { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.tour-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--lavender); background: rgba(124, 58, 237, .16); }
.tour-stage-header small { color: var(--violet); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.tour-stage-header h3 { margin-top: 4px; font: 600 20px var(--display); }
.tour-stage > p { margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.tour-demo { display: grid; gap: 7px; margin-top: 18px; }
.demo-row { min-height: 48px; display: grid; grid-template-columns: 1fr 58px 65px 24px; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--border); border-radius: 9px; background: rgba(255, 255, 255, .02); font-size: 11px; }
.demo-row > span { display: flex; align-items: center; gap: 8px; }
.demo-row > span i { width: 18px; color: var(--lavender); }
.demo-row small { color: var(--muted); }
.demo-row > i { color: var(--green); font-size: 18px; }
.tour-stage-actions { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: 18px; color: #968fa0; font-size: 10px; }
.tour-stage-actions > span i { color: var(--violet); }
.help-card { min-height: 390px; display: flex; flex-direction: column; align-items: flex-start; padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: linear-gradient(160deg, rgba(124, 58, 237, .12), rgba(255, 255, 255, .018)); }
.help-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--lavender); background: rgba(124, 58, 237, .2); }
.help-card > p:nth-of-type(1) { margin-top: 24px; color: var(--violet); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.help-card h3 { margin-top: 8px; font: 600 21px/1.25 var(--display); }
.help-card > p:nth-of-type(2) { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.help-card button { margin-top: 22px; border: 0; padding: 0; color: #ddd6e6; background: transparent; font-weight: 600; }
.help-card button i { margin-right: 7px; color: var(--violet); }
.help-card small { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); color: #8b8594; font-size: 9px; line-height: 1.5; }
.help-card small i { color: var(--green); }

.motion-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

.owner-dashboard-section { padding: 110px 0; border-top: 1px solid rgba(255, 255, 255, .05); background: radial-gradient(circle at 90% 10%, rgba(124, 58, 237, .09), transparent 30%); }
.dashboard-heading, .resources-heading { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 60px; align-items: end; margin-bottom: 42px; }
.dashboard-heading h2, .personalization-copy h2, .resources-heading h2, .manual-intro h2, .faq-intro h2 { margin-top: 9px; font: 650 clamp(30px, 3vw, 46px)/1.15 var(--display); letter-spacing: -.035em; }
.dashboard-heading > p, .resources-heading > p { color: var(--muted); line-height: 1.75; }
.owner-console { min-height: 620px; display: grid; grid-template-columns: 240px 1fr; overflow: hidden; border: 1px solid rgba(139, 92, 246, .34); border-radius: 25px; background: linear-gradient(145deg, #111019, #09080d); box-shadow: 0 36px 100px rgba(0, 0, 0, .52), 0 0 80px rgba(109, 54, 236, .07); }
.console-nav { display: flex; flex-direction: column; gap: 7px; padding: 24px 18px; border-right: 1px solid var(--border); background: rgba(5, 4, 8, .38); }
.console-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; padding: 0 8px 20px; border-bottom: 1px solid var(--border); font: 700 11px var(--display); letter-spacing: .08em; }
.console-brand img { width: 34px; height: 34px; object-fit: contain; }
.console-brand span { display: flex; flex-direction: column; gap: 4px; }
.console-brand small { color: var(--muted); font: 500 10px var(--body); letter-spacing: 0; }
.console-tab { min-height: 47px; display: flex; align-items: center; gap: 12px; border: 1px solid transparent; border-radius: 11px; padding: 0 14px; color: #918a9c; background: transparent; text-align: left; transition: .2s ease; }
.console-tab i { width: 18px; color: #766e82; text-align: center; }
.console-tab:hover { color: #fff; background: rgba(255, 255, 255, .025); }
.console-tab.active { border-color: rgba(139, 92, 246, .28); color: #fff; background: linear-gradient(90deg, rgba(124, 58, 237, .2), rgba(124, 58, 237, .05)); box-shadow: inset 3px 0 var(--violet); }
.console-tab.active i { color: var(--lavender); }
.console-stage { min-width: 0; padding: 38px; }
.console-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.console-topbar > div { min-width: 0; }
.console-topbar span:first-child { color: var(--violet); font-size: 10px; font-weight: 750; letter-spacing: .14em; }
.console-topbar h3 { margin-top: 8px; font: 600 clamp(23px, 2.1vw, 34px)/1.2 var(--display); letter-spacing: -.03em; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; flex: none; border: 1px solid rgba(34, 197, 94, .2); border-radius: 99px; padding: 8px 11px; color: #9dd8b1; background: rgba(34, 197, 94, .055); font-size: 10px; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34, 197, 94, .1); animation: live-pulse 2s infinite; }
@keyframes live-pulse { 50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } }
.console-description { max-width: 780px; margin-top: 12px; color: var(--muted); line-height: 1.7; }
.console-canvas { margin-top: 30px; animation: canvas-in .35s ease; }
@keyframes canvas-in { from { opacity: 0; transform: translateY(10px); } }
.console-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.console-kpis article { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 19px; border: 1px solid var(--border); border-radius: 15px; background: rgba(255, 255, 255, .025); }
.console-kpis span, .console-kpis small { color: var(--muted); font-size: 11px; }
.console-kpis strong { margin: 8px 0 6px; font: 650 23px var(--display); }
.console-kpis small i { margin-right: 5px; color: var(--green); }
.console-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 13px; margin-top: 13px; }
.console-chart, .console-list, .console-table, .console-services, .console-settings { min-height: 245px; padding: 21px; border: 1px solid var(--border); border-radius: 15px; background: rgba(255, 255, 255, .02); }
.console-chart > span, .console-list > span, .console-table > span, .console-services > span, .console-settings > span { color: #dcd7e4; font-size: 12px; font-weight: 650; }
.console-chart > div { height: 140px; display: flex; align-items: end; justify-content: space-around; gap: 9px; margin-top: 20px; border-bottom: 1px solid var(--border); background: repeating-linear-gradient(to top, transparent 0, transparent 34px, rgba(255,255,255,.035) 35px); }
.console-chart > div i { width: 9%; height: var(--h); border-radius: 6px 6px 0 0; background: linear-gradient(#a78bfa, #6d28d9); box-shadow: 0 -6px 24px rgba(124, 58, 237, .16); }
.console-chart > small { display: block; margin-top: 10px; color: #655f6d; font-size: 8px; text-align: center; word-spacing: 10px; }
.console-list p { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 10px; margin-top: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #c7c1ce; font-size: 11px; }
.console-list p b { color: #8f8997; }
.console-list em { border-radius: 99px; padding: 5px 7px; color: #86efac; background: rgba(34,197,94,.08); font-size: 8px; font-style: normal; }
.console-list em.pending { color: #fcd34d; background: rgba(245,158,11,.08); }
.console-note { display: flex; align-items: center; gap: 9px; margin-top: 18px; color: #807a88; font-size: 11px; line-height: 1.5; }
.console-note i { color: var(--violet); }
.console-table { min-height: 280px; }
.console-table-row { display: grid; grid-template-columns: 1.15fr 1fr .75fr .7fr; gap: 12px; padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.06); color: #c9c3d0; font-size: 11px; }
.console-table-row.header { margin-top: 15px; border-radius: 8px; color: #777180; background: rgba(255,255,255,.025); font-size: 9px; text-transform: uppercase; }
.console-table-row em { color: #86efac; font-size: 9px; font-style: normal; }
.console-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; min-height: 280px; }
.console-service-card { display: flex; flex-direction: column; padding: 17px; border: 1px solid var(--border); border-radius: 13px; background: rgba(255,255,255,.02); }
.console-service-card i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: var(--lavender); background: rgba(124,58,237,.14); }
.console-service-card b { margin-top: 24px; font-size: 12px; }
.console-service-card small { margin-top: 7px; color: var(--muted); font-size: 10px; }
.console-service-card strong { margin-top: auto; padding-top: 20px; font-size: 14px; }
.console-settings { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.settings-logo { display: grid; place-items: center; border: 1px dashed rgba(139,92,246,.32); border-radius: 13px; background: rgba(124,58,237,.055); color: var(--lavender); font-size: 40px; }
.settings-fields { display: grid; align-content: center; gap: 12px; }
.settings-field { padding: 12px; border: 1px solid var(--border); border-radius: 9px; color: var(--muted); font-size: 10px; }
.settings-colors { display: flex; gap: 10px; }
.settings-colors i { width: 42px; height: 42px; border: 5px solid rgba(255,255,255,.06); border-radius: 50%; background: var(--violet); }
.settings-colors i:last-child { background: var(--green); }

.personalization-section { padding: 110px 0; background: linear-gradient(180deg, transparent, rgba(124,58,237,.045), transparent); }
.personalization-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 6vw, 96px); align-items: center; }
.personalization-copy > p:not(.section-kicker) { margin-top: 16px; color: var(--muted); line-height: 1.75; }
.personalization-copy ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.personalization-copy li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 12px; border: 1px solid transparent; border-radius: 13px; transition: .2s; }
.personalization-copy li:hover { border-color: var(--border); background: rgba(255,255,255,.018); }
.personalization-copy li > i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--lavender); background: rgba(124,58,237,.12); }
.personalization-copy li span { display: flex; flex-direction: column; gap: 5px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.personalization-copy li b { color: #e7e2ec; font-size: 13px; }
.brand-lab { min-height: 520px; display: grid; grid-template-columns: 220px 1fr; overflow: hidden; border: 1px solid rgba(139,92,246,.28); border-radius: 24px; background: #0e0c14; box-shadow: var(--shadow); transition: --brand-primary .3s, --brand-secondary .3s; }
.brand-controls { padding: 24px 18px; border-right: 1px solid var(--border); background: rgba(255,255,255,.018); }
.brand-controls > div:first-child { display: grid; grid-template-columns: 45px 1fr; gap: 10px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.upload-demo { width: 45px; height: 45px; display: grid; place-items: center; border: 1px dashed rgba(255,255,255,.18); border-radius: 11px; color: var(--brand-primary); }
.brand-controls p { display: flex; flex-direction: column; gap: 4px; font-size: 11px; }
.brand-controls small { color: var(--muted); font-size: 8px; }
.brand-controls > div:first-child button { grid-column: 1 / -1; min-height: 35px; border: 1px solid var(--border); border-radius: 8px; color: #c9c2d0; background: transparent; font-size: 10px; }
.brand-controls > label { display: block; margin: 24px 0 13px; color: var(--muted); font-size: 10px; }
.palette-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.palette-option { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,.02); }
.palette-option.active { border-color: var(--brand-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 15%, transparent); }
.palette-option i { width: 19px; height: 19px; border-radius: 50%; background: var(--option-primary); }
.palette-option i:last-child { background: var(--option-secondary); }
.palette-option:nth-child(1) { --option-primary:#8b5cf6;--option-secondary:#22c55e; }.palette-option:nth-child(2) { --option-primary:#2563eb;--option-secondary:#14b8a6; }.palette-option:nth-child(3) { --option-primary:#db2777;--option-secondary:#f97316; }.palette-option:nth-child(4) { --option-primary:#d4a72c;--option-secondary:#f5e7a1; }
.booking-preview { padding: 29px; background: radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--brand-primary) 13%, transparent), transparent 35%); }
.booking-brand { display: flex; align-items: center; gap: 11px; }
.booking-brand > span { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 12px; color: white; background: var(--brand-primary); box-shadow: 0 12px 30px color-mix(in srgb, var(--brand-primary) 25%, transparent); }
.booking-brand p { display: flex; flex-direction: column; gap: 4px; font-size: 12px; }
.booking-brand small { color: var(--muted); font-size: 9px; }
.booking-steps { display: flex; gap: 5px; margin-top: 25px; padding: 5px; border: 1px solid var(--border); border-radius: 9px; background: rgba(255,255,255,.02); }
.booking-steps span { flex: 1; border-radius: 6px; padding: 8px 4px; color: #6f6978; font-size: 8px; text-align: center; }
.booking-steps .active { color: #fff; background: var(--brand-primary); }
.booking-label { margin-top: 25px; color: #dad5e1; font-size: 11px; font-weight: 650; }
.booking-preview article { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 11px; margin-top: 10px; padding: 13px; border: 1px solid var(--border); border-radius: 11px; background: rgba(255,255,255,.025); }
.booking-preview article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; color: var(--brand-primary); background: color-mix(in srgb, var(--brand-primary) 13%, transparent); }
.booking-preview article p { display: flex; flex-direction: column; gap: 4px; font-size: 10px; }
.booking-preview article small { color: var(--muted); font-size: 8px; }
.booking-preview article strong { font-size: 11px; }
.booking-preview > button { width: 100%; min-height: 43px; margin-top: 19px; border: 0; border-radius: 9px; color: #fff; background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); font-size: 11px; font-weight: 700; }

.audience-section { padding: 110px 0; border-top: 1px solid rgba(255,255,255,.05); }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.audience-grid article { min-height: 235px; padding: 24px; border: 1px solid var(--border); border-radius: 17px; background: rgba(18,16,25,.66); transition: transform .25s, border-color .25s; }
.audience-grid article:hover { transform: translateY(-5px); border-color: rgba(139,92,246,.38); }
.audience-grid i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--lavender); background: rgba(124,58,237,.13); }
.audience-grid h3 { margin-top: 35px; font: 600 16px/1.35 var(--display); }
.audience-grid p { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.65; }

.resources-section { padding: 110px 0; background: linear-gradient(180deg, rgba(255,255,255,.012), transparent); }
.resource-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-groups article { position: relative; overflow: hidden; padding: 27px; border: 1px solid var(--border); border-radius: 19px; background: rgba(18,16,25,.72); }
.resource-groups article::after { content:""; position:absolute; width:180px; height:180px; right:-100px; top:-100px; border-radius:50%; background:rgba(124,58,237,.06); }
.resource-groups article > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px; color: var(--lavender); background: rgba(124,58,237,.13); }
.resource-groups h3 { margin-top: 23px; font: 600 19px var(--display); }
.resource-groups ul { display: grid; gap: 11px; margin: 19px 0 0; padding: 18px 0 0; border-top: 1px solid var(--border); list-style: none; }
.resource-groups li { position: relative; padding-left: 18px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.resource-groups li::before { content:""; position:absolute; left:0; top:.48em; width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(34,197,94,.07); }

.manual-section { padding: 110px 0; background: radial-gradient(circle at 10% 20%, rgba(124,58,237,.08), transparent 28%); }
.manual-grid { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(520px, 1.28fr); gap: clamp(45px, 7vw, 110px); align-items: start; }
.manual-intro { position: sticky; top: 105px; }
.manual-intro > p:not(.section-kicker) { margin-top: 16px; color: var(--muted); line-height: 1.75; }
.manual-progress-card { display: flex; flex-direction: column; gap: 7px; margin: 27px 0 18px; padding: 19px; border: 1px solid rgba(139,92,246,.26); border-radius: 15px; background: rgba(124,58,237,.07); }
.manual-progress-card span { color: var(--lavender); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.manual-progress-card span i { margin-right: 7px; }
.manual-progress-card strong { font: 600 17px var(--display); }
.manual-progress-card small { color: var(--muted); font-size: 11px; }
.manual-accordion, .faq-list { display: grid; gap: 9px; }
.accordion-item { overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: rgba(18,16,25,.78); transition: border-color .2s, background .2s; }
.accordion-item.open { border-color: rgba(139,92,246,.4); background: linear-gradient(120deg, rgba(124,58,237,.1), rgba(18,16,25,.82)); }
.accordion-item > button { width: 100%; min-height: 76px; display: grid; grid-template-columns: 42px 1fr 28px; align-items: center; gap: 13px; border: 0; padding: 10px 16px; color: var(--text); background: transparent; text-align: left; }
.accordion-item > button > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: var(--lavender); background: rgba(124,58,237,.12); font-size: 11px; font-weight: 750; }
.accordion-item > button > div { display: flex; flex-direction: column; gap: 5px; }
.accordion-item > button b { font: 600 14px var(--display); }
.accordion-item > button small { color: var(--muted); font-size: 10px; }
.accordion-item > button > i { color: #777181; transition: transform .25s; }
.accordion-item.open > button > i { color: var(--lavender); transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.2,.75,.25,1); }
.accordion-item.open .accordion-panel { max-height: 320px; }
.accordion-panel p { padding: 0 70px 20px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.accordion-panel p button, .accordion-panel > button { margin-top: 10px; border: 0; padding: 10px 0; color: var(--lavender); background: transparent; font-weight: 650; min-height: 44px; }
.accordion-panel > button { margin: 0 70px 20px; }

.benefits-section { padding: 110px 0; border-top: 1px solid rgba(255, 255, 255, .05); background: linear-gradient(180deg, rgba(255, 255, 255, .015), transparent); }
.section-heading.centered { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-heading.centered .section-kicker { justify-content: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit-card { min-height: 270px; padding: 26px; border: 1px solid var(--border); border-radius: 20px; background: rgba(18, 16, 25, .72); transition: transform .2s, border-color .2s; }
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, .34); }
.benefit-card.featured { grid-row: span 2; min-height: 556px; background: linear-gradient(155deg, rgba(124, 58, 237, .15), rgba(18, 16, 25, .76)); }
.benefit-card > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: var(--lavender); background: rgba(124, 58, 237, .13); }
.benefit-card h3 { margin-top: 22px; font: 600 21px/1.3 var(--display); }
.benefit-card > p { margin-top: 11px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.benefit-card > small, .benefit-card > strong { display: inline-flex; gap: 8px; margin-top: 24px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px; color: #c7c1ce; background: rgba(255, 255, 255, .02); font-size: 11px; }
.benefit-card > small i, .benefit-card > strong em { color: var(--green); font-style: normal; }
.mini-calendar { margin-top: 42px; padding: 18px; border: 1px solid var(--border); border-radius: 15px; background: rgba(4, 3, 7, .45); }
.mini-calendar b { display: block; margin-bottom: 16px; color: #8e8798; font-size: 10px; letter-spacing: .12em; }
.mini-calendar span { display: block; height: 43px; margin-top: 8px; border: 1px dashed rgba(255, 255, 255, .08); border-radius: 8px; }
.mini-calendar span.busy { border-style: solid; border-color: rgba(139, 92, 246, .35); background: linear-gradient(90deg, rgba(124, 58, 237, .2), rgba(124, 58, 237, .05)); }

.proof-section { padding: 110px 0; }
.proof-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.proof-copy blockquote { max-width: 700px; margin-top: 28px; color: #d8d3df; font: 500 clamp(20px, 2vw, 28px)/1.55 var(--display); letter-spacing: -.02em; }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.quote-author > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--violet); font-weight: 700; }
.quote-author p { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.quote-author small { color: var(--muted); }
.proof-stats { display: grid; gap: 12px; }
.proof-stats > div { padding: 23px; border: 1px solid var(--border); border-radius: 17px; background: rgba(18, 16, 25, .72); }
.proof-stats strong { display: flex; align-items: center; gap: 10px; font: 600 16px var(--display); }
.proof-stats strong i { color: var(--violet); }
.proof-stats p { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.pricing-section { padding: 110px 0; background: linear-gradient(180deg, transparent, rgba(124, 58, 237, .055), transparent); }
.pricing-shell { display: grid; grid-template-columns: 1fr 430px; gap: 70px; align-items: center; padding: 54px; border: 1px solid var(--border); border-radius: 26px; background: rgba(14, 12, 20, .86); box-shadow: var(--shadow); }
.pricing-shell > div:first-child > p:not(.section-kicker) { max-width: 650px; margin-top: 14px; color: var(--muted); line-height: 1.7; }
.pricing-shell ul { display: flex; flex-wrap: wrap; gap: 17px; margin: 26px 0 0; padding: 0; list-style: none; color: #c6c0cd; font-size: 13px; }
.pricing-shell li i { margin-right: 7px; color: var(--green); }
.price-card { padding: 30px; border: 1px solid rgba(139, 92, 246, .45); border-radius: 20px; background: linear-gradient(155deg, rgba(124, 58, 237, .16), rgba(255, 255, 255, .02)); }
.price-card > span { color: var(--lavender); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.price-card > p { margin-top: 10px; color: var(--muted); font-size: 13px; }
.price-card > strong { display: block; margin-top: 24px; font: 600 24px var(--display); }
.price-card > small { display: block; margin-top: 7px; color: var(--muted); line-height: 1.5; }
.price-card .button { width: 100%; margin-top: 24px; }
.price-card > a { display: block; margin-top: 15px; color: #b8b1c0; font-size: 12px; text-align: center; }
.pricing-heading { margin-bottom: 44px !important; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 505px; padding: 31px; border: 1px solid var(--border); border-radius: 21px; background: rgba(18,16,25,.78); }
.plan-card.popular { border-color: rgba(139,92,246,.56); background: linear-gradient(155deg, rgba(124,58,237,.17), rgba(18,16,25,.84)); box-shadow: 0 24px 70px rgba(109,54,236,.12); transform: translateY(-9px); }
.popular-label { position: absolute; right: 17px; top: 17px; border-radius: 99px; padding: 7px 9px; color: #ddd1ff; background: rgba(124,58,237,.24); font-size: 8px; font-weight: 750; letter-spacing: .1em; }
.plan-card > span { color: var(--lavender); font-size: 10px; font-weight: 750; letter-spacing: .16em; }
.plan-card h3 { margin-top: 15px; font: 600 19px var(--display); }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-top: 25px; }
.plan-price strong { font: 650 clamp(28px,3vw,39px) var(--display); letter-spacing: -.04em; }
.plan-price small { color: var(--muted); font-size: 11px; }
.plan-card ul { display: grid; gap: 13px; margin: 28px 0 30px; padding: 24px 0 0; border-top: 1px solid var(--border); list-style: none; }
.plan-card li { color: #b7b1bf; font-size: 12px; line-height: 1.45; }
.plan-card li i { width: 20px; color: var(--green); }
.plan-card .button { width: 100%; margin-top: auto; }
.pricing-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 23px; color: var(--muted-2); font-size: 10px; text-align: center; }
.pricing-note i { color: var(--green); }

.faq-section { padding: 110px 0 130px; border-top: 1px solid rgba(255,255,255,.05); background: linear-gradient(180deg, transparent, rgba(124,58,237,.045)); }
.faq-grid { display: grid; grid-template-columns: minmax(310px,.65fr) minmax(520px,1.35fr); gap: clamp(45px,7vw,110px); align-items: start; }
.faq-intro { position: sticky; top: 105px; }
.faq-intro > p:not(.section-kicker) { margin: 15px 0 24px; color: var(--muted); line-height: 1.75; }
.faq-list .accordion-item > button { grid-template-columns: 42px 1fr 28px; }
.faq-list .accordion-panel p { padding-left: 70px; }

.final-cta { padding: 120px 0; text-align: center; }
.final-cta .container { position: relative; }
.final-cta img { position: absolute; left: 50%; top: -70px; width: 170px; opacity: .08; transform: translateX(-50%); }
.final-cta h2 { font-size: clamp(36px, 4vw, 58px); }
.final-cta > .container > p:not(.section-kicker) { margin-top: 12px; color: var(--muted); font-size: 17px; }
.final-cta > .container > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-footer { padding: 70px 0 24px; border-top: 1px solid var(--border); background: #07060a; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid img { width: 170px; }
.footer-grid p, .footer-grid a, .footer-grid button { color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-grid a, .footer-grid button { padding: 8px 0; margin: -8px 0; }
.footer-grid button { border: 0; background: transparent; }
.footer-grid a:hover, .footer-grid button:hover { color: var(--lavender); }
.footer-grid b { margin-bottom: 6px; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 11px; }

.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; align-items: center; justify-content: center; overflow-y: auto; padding: 22px; background: rgba(2, 1, 4, .78); backdrop-filter: blur(14px); }
.modal-overlay.open { display: flex; }
.modal-box { position: relative; width: min(100%, 450px); margin: auto; padding: 34px; border: 1px solid rgba(139, 92, 246, .35); border-radius: 22px; background: #121019; box-shadow: 0 34px 100px rgba(0, 0, 0, .64); animation: modal-in .2s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(15px) scale(.98); } }
.modal-x { position: absolute; right: 15px; top: 15px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 9px; color: var(--muted); background: rgba(255, 255, 255, .02); }
.modal-brand { width: 158px; margin-bottom: 26px; }
.modal-title { font: 600 27px var(--display); }
.modal-sub { margin-top: 8px; margin-bottom: 23px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.field-group { display: block; margin-bottom: 15px; color: #bbb5c4; font-size: 11px; font-weight: 600; }
.field-icon { position: relative; display: flex; align-items: center; margin-top: 7px; }
.field-icon > i:first-child { position: absolute; left: 13px; z-index: 1; color: #6f6978; }
.field-icon input { width: 100%; height: 48px; border: 1px solid var(--border); border-radius: 10px; padding: 0 42px; color: var(--text); background: #0d0b12; outline: 0; }
.field-icon input:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139, 92, 246, .12); }
.field-icon input::placeholder { color: #58535f; }
.toggle-pass { position: absolute; right: 7px; width: 34px; height: 34px; border: 0; color: var(--muted); background: transparent; }
.form-row-between { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 10px 0 18px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.checkbox-label input { accent-color: var(--violet); }
.link-button { border: 0; padding: 0; color: var(--lavender); background: transparent; font-size: 11px; }
.form-submit { width: 100%; }
.terms-check { margin-bottom: 18px; }
.form-error, .form-success { margin-top: 13px; padding: 11px 12px; border-radius: 9px; font-size: 12px; line-height: 1.5; }
.form-error { border: 1px solid rgba(239, 68, 68, .3); color: #fca5a5; background: rgba(239, 68, 68, .08); }
.form-success { border: 1px solid rgba(34, 197, 94, .3); color: #86efac; background: rgba(34, 197, 94, .08); }
.modal-footer-text { margin-top: 20px; color: var(--muted); font-size: 12px; text-align: center; }
.modal-footer-text button { border: 0; padding: 0; color: var(--lavender); background: transparent; }
.payment-note { margin-bottom: 18px; padding: 13px; border: 1px solid rgba(34, 197, 94, .2); border-radius: 10px; color: #aaa5b4; background: rgba(34, 197, 94, .055); font-size: 12px; line-height: 1.6; }
.payment-note i { color: var(--green); }
.escolha-titulo { color: var(--muted); font-size: 13px; line-height: 1.5; text-align: center; }
.escolha-lista { display: grid; gap: 8px; margin: 16px 0; }
.empresa-opt { width: 100%; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); background: rgba(255, 255, 255, .02); text-align: left; }
.empresa-opt-logo { width: 40px; height: 40px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: var(--violet); }
.empresa-opt-logo img { width: 100%; height: 100%; object-fit: cover; }
.empresa-opt-txt { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.empresa-opt-txt strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.empresa-opt-txt small { color: var(--muted); font-size: 10px; }
.toast-container { position: fixed; right: 22px; bottom: 22px; z-index: 2000; display: grid; gap: 8px; }
.toast { max-width: 360px; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid var(--border); border-radius: 11px; color: var(--text); background: #17141f; box-shadow: var(--shadow); opacity: 0; transform: translateX(16px); transition: .25s; font-size: 12px; }
.toast.show { opacity: 1; transform: translateX(0); }
.toast-success { border-left: 3px solid var(--green); }
.toast-error { border-left: 3px solid var(--red); }
.toast-warning { border-left: 3px solid var(--amber); }
.toast-info { border-left: 3px solid var(--violet); }

@media (max-width: 1260px) {
  .nav-shell { grid-template-columns: 190px 1fr 200px; }
  .desktop-nav { gap: 22px; }
  .hero-grid { grid-template-columns: minmax(400px, .8fr) minmax(580px, 1.2fr); gap: 40px; }
  .hero h1 { font-size: clamp(50px, 5.2vw, 70px); }
  .guided-grid { grid-template-columns: 260px 1fr; }
  .help-card { grid-column: 1 / -1; min-height: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
  .help-card > p:nth-of-type(1) { margin: 0; }
  .help-card h3 { margin: 0; }
  .help-card > p:nth-of-type(2) { grid-column: 2; margin: 0; }
  .help-card button { grid-column: 3; grid-row: 1 / span 2; margin: 0; }
  .help-card small { display: none; }
  .owner-console { grid-template-columns: 205px 1fr; }
  .console-stage { padding: 30px; }
  .brand-lab { grid-template-columns: 190px 1fr; }
}

@media (max-width: 1050px) {
  .desktop-nav, .nav-actions { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; place-items: center; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; text-align: center; justify-self: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1 { max-width: none; font-size: clamp(52px, 8vw, 78px); }
  .hero-description { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .product-scene { width: min(100%, 820px); margin-inline: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card.featured { grid-row: span 1; min-height: 320px; }
  .mini-calendar { display: none; }
  .pricing-shell { grid-template-columns: 1fr 380px; gap: 40px; padding: 40px; }
  .dashboard-heading, .resources-heading { grid-template-columns: 1fr; gap: 16px; }
  .owner-console { grid-template-columns: 1fr; min-height: 0; }
  .console-nav { flex-direction: row; overflow-x: auto; padding: 14px; border-right: 0; border-bottom: 1px solid var(--border); }
  .console-brand { display: none; }
  .console-tab { min-width: max-content; }
  .personalization-grid { grid-template-columns: 1fr; }
  .personalization-copy { max-width: 720px; }
  .brand-lab { max-width: 820px; width: 100%; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-groups { grid-template-columns: repeat(2, 1fr); }
  .manual-grid, .faq-grid { grid-template-columns: 1fr; }
  .manual-intro, .faq-intro { position: static; max-width: 720px; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .plan-card.popular { transform: none; }
  .plan-card:last-child { grid-column: 1 / -1; min-height: 430px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header { padding-top: 10px; }
  .nav-shell { height: 58px; padding: 0 12px 0 16px; }
  .brand { width: 145px; }
  .mobile-nav { width: min(calc(100% - 30px), var(--container)); }
  .hero { min-height: 0; padding: 40px 0 70px; }
  .hero h1 { font-size: clamp(43px, 11vw, 66px); }
  .product-scene { min-height: 520px; }
  .dashboard-card { min-height: 490px; grid-template-columns: 105px 1fr; }
  .dash-sidebar { padding-inline: 8px; }
  .dash-menu span { padding-inline: 7px; font-size: 8px; }
  .dash-top { grid-template-columns: 1fr 115px; }
  .dash-top .metric:last-child { display: none; }
  .phone-card { right: -4px; width: 195px; min-height: 390px; }
  .guided-shell { padding: 24px; }
  .guided-heading { align-items: flex-start; flex-direction: column; }
  .guided-grid { grid-template-columns: 1fr; }
  .tour-steps { grid-template-columns: repeat(3, 1fr); }
  .tour-step { grid-template-columns: 1fr; }
  .tour-step small { display: none; }
  .help-card { grid-column: auto; grid-template-columns: auto 1fr; }
  .help-card button { grid-column: 2; grid-row: auto; justify-self: start; }
  .proof-grid, .pricing-shell { grid-template-columns: 1fr; }
  .pricing-shell { padding: 32px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
  .owner-dashboard-section, .personalization-section, .audience-section, .resources-section, .manual-section, .faq-section { padding: 84px 0; }
  .console-stage { padding: 24px 20px; }
  .console-kpis { grid-template-columns: 1fr 1fr; }
  .console-kpis article:last-child { grid-column: 1 / -1; }
  .console-grid { grid-template-columns: 1fr; }
  .console-services { grid-template-columns: 1fr 1fr; }
  .console-service-card:last-child { grid-column: 1 / -1; }
  .console-settings { grid-template-columns: 1fr; }
  .settings-logo { min-height: 120px; }
  .brand-lab { grid-template-columns: 175px 1fr; }
  .booking-preview { padding: 22px; }
  .plan-card { min-height: 470px; }
}

@media (max-width: 620px) {
  .hero-copy .eyebrow { font-size: 12px; }
  .hero h1 { letter-spacing: -.06em; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 10px 14px; font-size: 12px; }
  .product-scene { min-height: 450px; margin-top: 10px; }
  .dashboard-card { min-height: 430px; grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-content { padding: 16px 12px; }
  .dash-top { grid-template-columns: 1fr 100px; }
  .metric { min-height: 64px; }
  .appointment { grid-template-columns: 32px 23px 1fr auto; }
  .appointment time { margin-left: -39px; }
  .appointment > b { display: none; }
  .appointment em { font-size: 6px; }
  .appointment.empty { grid-template-columns: 32px 1fr auto; }
  .phone-card { right: -9px; bottom: -38px; width: 160px; min-height: 330px; padding-inline: 9px; border-width: 4px; border-radius: 27px; }
  .phone-event { grid-template-columns: 18px 1fr; }
  .phone-event > span { width: 18px; height: 18px; }
  .phone-event em { display: none; }
  .phone-nav { height: 34px; }
  .guided-section { padding-bottom: 78px; }
  .guided-shell { padding: 18px; border-radius: 20px; }
  .guided-heading h2 { font-size: 28px; }
  .tour-steps { display: flex; overflow-x: auto; padding-bottom: 5px; }
  .tour-step { min-width: 190px; grid-template-columns: 34px 1fr; padding: 11px; }
  .tour-step > span { width: 32px; height: 32px; }
  .tour-stage { padding: 17px; }
  .demo-row { grid-template-columns: 1fr 45px 23px; }
  .demo-row b { display: none; }
  .tour-stage-actions { align-items: stretch; flex-direction: column; }
  .help-card { display: flex; }
  .benefits-section, .proof-section, .pricing-section { padding: 78px 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card, .benefit-card.featured { min-height: 0; }
  .pricing-shell { padding: 24px 18px; }
  .pricing-shell ul { flex-direction: column; }
  .final-cta { padding: 90px 0; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .modal-overlay { padding: 10px; }
  .modal-box { padding: 28px 20px; border-radius: 18px; }
  .console-topbar { flex-direction: column; }
  .console-kpis { grid-template-columns: 1fr; }
  .console-kpis article:last-child { grid-column: auto; }
  .console-chart { min-height: 220px; }
  .console-chart > div { height: 115px; }
  .console-list p { grid-template-columns: 38px 1fr; }
  .console-list em { grid-column: 2; justify-self: start; }
  .console-table { overflow-x: auto; }
  .console-table-row { min-width: 520px; }
  .console-services { grid-template-columns: 1fr; }
  .console-service-card:last-child { grid-column: auto; }
  .brand-lab { grid-template-columns: 1fr; }
  .brand-controls { border-right: 0; border-bottom: 1px solid var(--border); }
  .palette-options { grid-template-columns: repeat(4, 1fr); }
  .booking-preview { padding: 19px 14px; }
  .audience-grid, .resource-groups, .plan-grid { grid-template-columns: 1fr; }
  .audience-grid article { min-height: 210px; }
  .plan-card, .plan-card:last-child { grid-column: auto; min-height: 0; }
  .popular-label { position: static; align-self: flex-start; margin-bottom: 16px; }
  .accordion-item > button { grid-template-columns: 34px 1fr 22px; padding-inline: 12px; }
  .accordion-item > button > span { width: 34px; height: 34px; }
  .accordion-panel p { padding: 0 16px 18px 59px; }
  .accordion-panel > button { margin: 0 16px 18px 59px; }
  .faq-list .accordion-panel p { padding-left: 59px; }
}

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