:root {
    --wine: #791f3d;
    --wine-dark: #4d1028;
    --wine-deep: #280815;
    --rose: #b75b78;
    --blush: #f3dfe3;
    --cream: #fbf7f2;
    --paper: #fffdf9;
    --gold: #b78a4b;
    --ink: #24191d;
    --muted: #77686e;
    --line: rgba(77, 16, 40, .12);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(56, 16, 31, .12);
    --radius-lg: 32px;
    --radius-md: 20px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; color: var(--white); background: var(--wine); border-radius: 0 0 8px 8px; transition: top .2s; }
.skip-link:focus { top: 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: 18px 0; transition: background .25s, box-shadow .25s, padding .25s; }
.site-header.scrolled { padding: 10px 0; background: rgba(255, 253, 249, .92); box-shadow: 0 10px 40px rgba(54, 20, 32, .08); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; color: var(--white); background: var(--wine); border-radius: 50% 50% 50% 12px; font-family: Georgia, serif; font-size: 15px; font-weight: 700; letter-spacing: -.5px; box-shadow: 0 8px 22px rgba(121, 31, 61, .2); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { color: var(--wine-dark); font-family: Georgia, serif; font-size: 20px; letter-spacing: -.3px; }
.brand-copy small { margin-top: 5px; color: var(--rose); font-size: 8px; font-weight: 700; letter-spacing: 2.2px; }
.main-nav { display: flex; align-items: center; gap: 24px; color: #5f4f55; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 10px 0; }
.main-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; content: ""; background: var(--wine); transform: scaleX(0); transition: transform .2s; }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 20px; color: var(--white); background: var(--wine); border-radius: 999px; box-shadow: 0 8px 20px rgba(121, 31, 61, .18); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--wine); transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: 900px; padding: 155px 0 50px; overflow: hidden; background: linear-gradient(135deg, #fffdf9 0%, #fbf5f1 52%, #f5e6e8 100%); }
.hero::before { position: absolute; top: -20%; left: 56%; width: 760px; height: 760px; content: ""; border: 1px solid rgba(121, 31, 61, .08); border-radius: 50%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { top: 40px; right: -90px; width: 390px; height: 390px; background: radial-gradient(circle, rgba(183, 91, 120, .18), transparent 68%); }
.hero-glow-two { bottom: 20px; left: -120px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(183, 138, 75, .10), transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; min-height: 640px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--wine); font-size: 11px; font-weight: 700; letter-spacing: 2.3px; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .workflow-content h2, .results-card h2, .cta-inner h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -2.5px; line-height: 1.08; }
.hero h1 { max-width: 650px; color: var(--wine-dark); font-size: clamp(56px, 6vw, 82px); }
h1 em, h2 em { color: var(--rose); font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
.hero-lead { max-width: 570px; margin: 27px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--wine); box-shadow: 0 14px 30px rgba(121, 31, 61, .2); }
.button-primary:hover { background: var(--wine-dark); box-shadow: 0 18px 38px rgba(121, 31, 61, .25); }
.button-secondary { color: var(--wine); background: rgba(255,255,255,.65); border-color: var(--line); }
.play-icon { display: grid; place-items: center; width: 24px; height: 24px; padding-left: 2px; color: var(--wine); background: var(--blush); border-radius: 50%; font-size: 8px; }
.hero-trust { display: flex; gap: 0; margin-top: 48px; }
.hero-trust > div { display: grid; grid-template-columns: auto auto; align-items: baseline; min-width: 132px; padding-right: 25px; margin-right: 25px; border-right: 1px solid var(--line); }
.hero-trust > div:last-child { margin: 0; padding: 0; border: 0; }
.hero-trust strong { color: var(--wine-dark); font-family: Georgia, serif; font-size: 27px; line-height: 1; }
.hero-trust span { color: var(--rose); font-size: 16px; }
.hero-trust small { grid-column: 1 / -1; margin-top: 5px; color: var(--muted); font-size: 10px; white-space: nowrap; }

.product-stage { position: relative; min-height: 560px; perspective: 1200px; }
.stage-orbit { position: absolute; border: 1px solid rgba(121, 31, 61, .1); border-radius: 50%; }
.orbit-one { inset: 20px 0 0 70px; }
.orbit-two { top: 87px; right: 60px; width: 430px; height: 430px; }
.dashboard-card { position: absolute; z-index: 2; top: 54px; left: 6px; width: 620px; overflow: hidden; background: #fff; border: 7px solid rgba(255,255,255,.8); border-radius: 22px; box-shadow: 0 35px 90px rgba(76, 19, 40, .22); transform: rotateY(-5deg) rotateX(2deg); }
.dashboard-topbar { display: flex; align-items: center; gap: 14px; height: 55px; padding: 0 16px; border-bottom: 1px solid #f0e9eb; }
.mini-brand { display: flex; align-items: center; gap: 6px; width: 112px; color: var(--wine); font-family: Georgia, serif; font-size: 12px; }
.mini-brand span { display: grid; place-items: center; width: 25px; height: 25px; color: #fff; background: var(--wine); border-radius: 50% 50% 50% 6px; font-size: 8px; }
.topbar-search { flex: 1; max-width: 200px; padding: 7px 12px; color: #b2a4a9; background: #faf7f7; border-radius: 20px; font-size: 8px; }
.avatar { display: grid; place-items: center; width: 27px; height: 27px; margin-left: auto; color: var(--wine); background: var(--blush); border-radius: 50%; font-size: 7px; font-weight: 700; }
.dashboard-body { display: flex; min-height: 365px; background: #faf8f7; }
.dashboard-sidebar { width: 54px; padding-top: 18px; background: var(--wine-dark); }
.dashboard-sidebar i { display: block; width: 14px; height: 14px; margin: 0 auto 20px; border: 1px solid rgba(255,255,255,.45); border-radius: 4px; }
.dashboard-sidebar i.active { background: #fff; border-color: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.1); }
.dashboard-main { flex: 1; padding: 22px; }
.dashboard-heading { display: flex; align-items: flex-end; justify-content: space-between; }
.dashboard-heading div { display: flex; flex-direction: column; }
.dashboard-heading small { color: #a18d94; font-size: 8px; }
.dashboard-heading strong { color: var(--wine-dark); font-family: Georgia, serif; font-size: 18px; }
.dashboard-heading > span { padding: 5px 10px; color: var(--wine); background: #f2e3e7; border-radius: 10px; font-size: 7px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 17px; }
.metric-row article { position: relative; display: grid; grid-template-columns: 31px 1fr; padding: 12px; background: #fff; border: 1px solid #f1eaec; border-radius: 12px; }
.metric-icon { grid-row: 1 / 4; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; font-size: 10px; }
.metric-icon.rose { color: #9f3456; background: #f5e3e8; }
.metric-icon.gold { color: #9a712c; background: #f6eedc; }
.metric-icon.green { color: #307966; background: #e1f1ec; }
.metric-row small { color: #9e8e93; font-size: 7px; }
.metric-row strong { color: #4d2935; font-size: 13px; line-height: 1.25; }
.metric-row em { color: #5d9b86; font-size: 6px; font-style: normal; }
.dashboard-lower { display: grid; grid-template-columns: 1.35fr 1fr; gap: 10px; margin-top: 10px; }
.chart-card, .appointments-card { min-height: 170px; padding: 13px; background: #fff; border: 1px solid #f1eaec; border-radius: 12px; }
.card-label { display: flex; align-items: center; justify-content: space-between; color: #4d2935; font-size: 8px; }
.bar-chart { display: flex; align-items: flex-end; justify-content: space-around; height: 95px; padding: 15px 8px 0; border-bottom: 1px solid #eee8ea; }
.bar-chart i { width: 12px; height: var(--bar); background: #ead9de; border-radius: 4px 4px 0 0; }
.bar-chart i.hot { background: linear-gradient(#b75b78, #791f3d); }
.chart-days { display: flex; justify-content: space-around; padding-top: 7px; color: #a29297; font-size: 6px; }
.live-dot { width: 6px; height: 6px; background: #5ea68c; border-radius: 50%; box-shadow: 0 0 0 3px #e5f4ee; }
.appointment { display: flex; gap: 8px; margin-top: 10px; padding: 8px; background: #fbf8f8; border-radius: 8px; }
.appointment.active { background: #f6e9ec; }
.appointment time { color: var(--wine); font-size: 7px; font-weight: 700; }
.appointment span { display: flex; flex-direction: column; min-width: 0; }
.appointment b { overflow: hidden; color: #57313e; font-size: 7px; white-space: nowrap; text-overflow: ellipsis; }
.appointment small { color: #a08d94; font-size: 6px; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.9); border-radius: 14px; box-shadow: 0 18px 40px rgba(74, 21, 41, .15); backdrop-filter: blur(10px); animation: float 4s ease-in-out infinite; }
.floating-booking { right: -9px; bottom: 86px; }
.float-icon { display: grid; place-items: center; width: 30px; height: 30px; color: #fff; background: #59927f; border-radius: 50%; font-size: 11px; }
.floating-card div { display: flex; flex-direction: column; }
.floating-card small { color: #a08e94; font-size: 8px; }
.floating-card strong { color: var(--wine-dark); font-size: 10px; }
.floating-rating { bottom: 28px; left: 15px; flex-direction: column; align-items: flex-start; gap: 2px; animation-delay: -2s; }
.floating-rating .stars { color: var(--gold); font-size: 10px; letter-spacing: 2px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-note { position: relative; display: flex; align-items: center; justify-content: center; gap: 26px; padding-top: 46px; color: #907b83; font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; }
.hero-note i { width: 4px; height: 4px; background: var(--rose); border-radius: 50%; }

.section { padding: 115px 0; }
.intro-section { background: #fffdf9; }
.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 110px; }
.section-heading h2, .workflow-content h2, .results-card h2, .cta-inner h2 { color: var(--wine-dark); font-size: clamp(42px, 5vw, 62px); }
.intro-copy { padding-bottom: 8px; }
.intro-copy p, .section-heading > p:last-child { color: var(--muted); font-size: 17px; line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--wine); font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(121,31,61,.3); }

.features-section { padding-top: 30px; background: linear-gradient(180deg, #fffdf9, #f8f1ee); }
.centered { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { max-width: 650px; margin: 24px auto 0; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 330px; padding: 35px; overflow: hidden; background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(121,31,61,.22); box-shadow: var(--shadow); }
.feature-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 400px; padding: 50px; background: var(--wine-dark); border: 0; }
.feature-number { position: absolute; top: 24px; right: 28px; color: rgba(121,31,61,.35); font-family: Georgia, serif; font-size: 13px; }
.featured .feature-number { color: rgba(255,255,255,.4); }
.feature-content { align-self: center; max-width: 440px; }
.feature-kicker { margin: 0 0 13px; color: #dfa8b8; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.feature-card h3 { max-width: 430px; margin: 22px 0 12px; color: var(--wine-dark); font-family: Georgia, serif; font-size: 29px; font-weight: 400; line-height: 1.2; }
.feature-card p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; }
.featured h3 { margin-top: 0; color: #fff; font-size: 39px; }
.featured .feature-content > p:not(.feature-kicker) { color: #d9c3cb; }
.feature-content a { display: inline-flex; gap: 12px; margin-top: 24px; color: #fff; font-size: 12px; font-weight: 700; }
.calendar-visual { align-self: center; padding: 23px; color: #4d2935; background: #fff; border-radius: 17px; box-shadow: 0 28px 50px rgba(10,0,4,.24); transform: rotate(2deg); }
.calendar-head { display: flex; justify-content: space-between; font-family: Georgia, serif; font-size: 14px; }
.calendar-head span { color: #a48992; }
.calendar-days, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; }
.calendar-days { margin-top: 16px; color: #aa979e; font-size: 7px; }
.calendar-grid i { display: grid; place-items: center; width: 26px; height: 26px; margin: 4px auto; color: #69545b; border-radius: 50%; font-size: 8px; font-style: normal; }
.calendar-grid i.selected { color: #fff; background: var(--wine); box-shadow: 0 5px 12px rgba(121,31,61,.25); }
.calendar-event { display: flex; gap: 14px; margin-top: 12px; padding: 12px; background: #f5e9ec; border-left: 3px solid var(--wine); border-radius: 8px; }
.calendar-event time { color: var(--wine); font-size: 9px; font-weight: 700; }
.calendar-event span { display: flex; flex-direction: column; }
.calendar-event b { font-size: 9px; }
.calendar-event small { color: #977f87; font-size: 7px; }
.feature-symbol { position: relative; width: 90px; height: 90px; margin-top: 15px; background: #f6e9ec; border-radius: 26px; }
.customers i { position: absolute; width: 26px; height: 26px; background: #c78599; border: 6px solid #f3dfe4; border-radius: 50%; }
.customers i::after { position: absolute; top: 21px; left: -8px; width: 30px; height: 18px; content: ""; background: #d9a6b5; border-radius: 20px 20px 6px 6px; }
.customers i:first-child { top: 26px; left: 13px; transform: scale(.8); }
.customers i:nth-child(2) { top: 16px; left: 33px; z-index: 2; }
.customers i:nth-child(3) { top: 26px; right: 10px; transform: scale(.8); }
.treatment { display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--wine) 0 70%, #ead8dd 70% 100%); }
.treatment::after { position: absolute; inset: 9px; content: ""; background: #fff; border-radius: 50%; }
.treatment span { z-index: 1; color: var(--wine); font-family: Georgia, serif; font-size: 18px; }
.report { display: flex; align-items: flex-end; justify-content: center; gap: 7px; padding: 18px; }
.report i { width: 9px; height: 35%; background: #d9a4b4; border-radius: 4px 4px 0 0; }
.report i:nth-child(2) { height: 70%; background: var(--wine); }
.report i:nth-child(3) { height: 52%; }
.report i:nth-child(4) { height: 85%; background: var(--rose); }
.inventory { display: flex; align-items: flex-end; justify-content: center; gap: 4px; padding: 18px; }
.inventory i { width: 17px; height: 48px; background: linear-gradient(#fff 0 18%, #c47c92 18%); border: 1px solid #be7189; border-radius: 5px 5px 3px 3px; }
.inventory i:nth-child(2) { height: 58px; background: linear-gradient(#fff 0 18%, var(--wine) 18%); }
.team { display: flex; align-items: center; justify-content: center; }
.team i { display: grid; place-items: center; width: 38px; height: 38px; margin-left: -8px; color: #fff; background: var(--rose); border: 3px solid #f6e9ec; border-radius: 50%; font-size: 8px; font-style: normal; font-weight: 700; }
.team i:first-child { margin-left: 0; background: var(--wine); }
.team i:last-child { background: var(--gold); }

.pricing-section { position: relative; background: #fffdf9; }
.pricing-section::before { position: absolute; top: 200px; left: 0; width: 100%; height: 390px; content: ""; background: linear-gradient(180deg, rgba(243,223,227,.22), transparent); pointer-events: none; }
.pricing-section .container { position: relative; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.pricing-card { --plan-color: var(--wine); position: relative; display: flex; flex-direction: column; min-width: 0; padding: 28px 24px 24px; overflow: hidden; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-top: 4px solid var(--plan-color); border-radius: 18px; box-shadow: 0 16px 42px rgba(56,16,31,.07); transition: transform .25s, box-shadow .25s; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 28px 65px rgba(56,16,31,.13); }
.plan-basic { --plan-color: #2796c5; }
.plan-plus { --plan-color: #29a763; }
.plan-pro { --plan-color: #d65c7d; }
.plan-max { --plan-color: #9a56cd; }
.pricing-card.popular { z-index: 2; background: linear-gradient(180deg, #f3fbf6 0, #fff 33%); border-color: rgba(41,167,99,.35); box-shadow: 0 24px 65px rgba(31,122,73,.14); }
.popular-label { position: absolute; top: 0; right: 0; padding: 5px 13px; color: #fff; background: var(--plan-color); border-radius: 0 0 0 12px; font-size: 8px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pricing-card-head { min-height: 142px; }
.plan-index { color: #a28e95; font-family: Georgia, serif; font-size: 11px; letter-spacing: 2px; }
.pricing-card h3 { margin: 4px 0 8px; color: var(--plan-color); font-family: Georgia, serif; font-size: 31px; font-weight: 400; }
.pricing-card-head p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.plan-price { min-height: 90px; padding: 17px 0 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-price strong { display: flex; align-items: flex-start; color: var(--wine-dark); font-family: Georgia, serif; font-weight: 400; line-height: 1; }
.plan-price strong span { font-size: 31px; letter-spacing: -1px; }
.plan-price sup { padding-top: 3px; margin-left: 3px; color: var(--plan-color); font-family: "Avenir Next", "Segoe UI", Arial, sans-serif; font-size: 11px; font-weight: 700; }
.plan-price small { display: block; margin-top: 7px; color: #9a878e; font-size: 9px; }
.plan-price.custom-price strong { display: block; color: var(--plan-color); font-size: 29px; }
.plan-count { align-self: flex-start; margin: 18px 0 16px; padding: 7px 10px; color: var(--plan-color); background: color-mix(in srgb, var(--plan-color) 10%, white); border: 1px solid color-mix(in srgb, var(--plan-color) 22%, white); border-radius: 999px; font-size: 9px; font-weight: 700; }
.plan-count span { margin-right: 5px; }
.pricing-card ul { flex: 1; padding: 0; margin: 0 0 23px; list-style: none; }
.pricing-card li { position: relative; padding: 8px 0 8px 21px; color: #625158; border-bottom: 1px dashed rgba(77,16,40,.08); font-size: 11px; line-height: 1.45; }
.pricing-card li::before { position: absolute; top: 9px; left: 0; display: grid; place-items: center; width: 14px; height: 14px; content: "✓"; color: var(--plan-color); background: color-mix(in srgb, var(--plan-color) 10%, white); border-radius: 50%; font-size: 8px; font-weight: 700; }
.plan-button { display: flex; align-items: center; justify-content: space-between; min-height: 43px; padding: 0 15px; color: var(--plan-color); background: color-mix(in srgb, var(--plan-color) 7%, white); border: 1px solid color-mix(in srgb, var(--plan-color) 20%, white); border-radius: 10px; font-size: 11px; font-weight: 700; transition: color .2s, background .2s; }
.plan-button:hover { color: #fff; background: var(--plan-color); }
.pricing-terms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 24px; padding: 24px 28px; background: var(--wine-dark); border-radius: 16px; }
.pricing-terms article { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 3px 25px; border-right: 1px solid rgba(255,255,255,.12); }
.pricing-terms article:first-child { padding-left: 0; }
.pricing-terms article:last-child { padding-right: 0; border: 0; }
.pricing-terms article > span { display: grid; place-items: center; width: 31px; height: 31px; color: #edbbc9; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-family: Georgia, serif; font-size: 9px; }
.pricing-terms article div { display: flex; flex-direction: column; }
.pricing-terms strong { color: #fff; font-family: Georgia, serif; font-size: 14px; font-weight: 400; }
.pricing-terms small { margin-top: 2px; color: #cbb2bb; font-size: 9px; }
.pricing-note { max-width: 900px; margin: 18px auto 0; color: #948087; font-size: 9px; line-height: 1.7; text-align: center; }

.workflow-section { position: relative; overflow: hidden; color: #fff; background: var(--wine-deep); }
.workflow-section::after { position: absolute; top: -280px; right: -220px; width: 700px; height: 700px; content: ""; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.02), 0 0 0 180px rgba(255,255,255,.015); }
.workflow-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 120px; }
.workflow-visual { position: relative; min-height: 660px; }
.phone-frame { position: absolute; top: 10px; right: 5px; width: 315px; height: 620px; padding: 16px 18px; overflow: hidden; color: var(--ink); background: #fdf9f7; border: 8px solid #422231; border-radius: 45px; box-shadow: 0 40px 90px rgba(0,0,0,.35); transform: rotate(-4deg); }
.phone-speaker { position: absolute; top: 0; left: 50%; width: 110px; height: 24px; background: #422231; border-radius: 0 0 16px 16px; transform: translateX(-50%); }
.phone-status { display: flex; justify-content: space-between; padding: 2px 7px; font-size: 8px; font-weight: 700; }
.phone-greeting { display: flex; flex-direction: column; margin: 28px 4px 15px; }
.phone-greeting small { color: #9a868d; font-size: 9px; }
.phone-greeting strong { color: var(--wine-dark); font-family: Georgia, serif; font-size: 21px; }
.phone-date-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.phone-date-row > span { display: flex; flex-direction: column; align-items: center; padding: 7px; color: #a08f95; background: #fff; border-radius: 10px; font-size: 7px; }
.phone-date-row small { font-size: 12px; font-weight: 700; }
.phone-date-row .active { color: #fff; background: var(--wine); box-shadow: 0 8px 16px rgba(121,31,61,.2); }
.phone-appointment { display: grid; grid-template-columns: 48px 1fr; gap: 10px; margin-top: 20px; padding: 15px 10px; color: #fff; background: var(--wine); border-radius: 14px; }
.phone-appointment time { padding-top: 18px; font-size: 11px; font-weight: 700; }
.phone-appointment div { display: flex; flex-direction: column; }
.phone-appointment small { color: #ebbecb; font-size: 6px; font-weight: 700; letter-spacing: .8px; }
.phone-appointment b { margin: 4px 0; font-family: Georgia, serif; font-size: 12px; }
.phone-appointment span { color: #dec8cf; font-size: 7px; }
.phone-appointment.light { margin-top: 10px; color: var(--wine-dark); background: #f1e2e6; }
.phone-appointment.light small { color: var(--rose); }
.phone-appointment.light span { color: #9d858e; }
.phone-nav { position: absolute; right: 20px; bottom: 15px; left: 20px; display: flex; align-items: center; justify-content: space-around; height: 50px; color: #9e8b91; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(52,19,31,.1); }
.phone-nav i { font-style: normal; }
.phone-nav i.active { display: grid; place-items: center; width: 36px; height: 36px; color: #fff; background: var(--wine); border-radius: 50%; font-size: 20px; }
.pulse-card { position: absolute; z-index: 2; bottom: 85px; left: 0; display: flex; align-items: center; gap: 12px; padding: 15px 18px; color: var(--ink); background: #fff; border-radius: 15px; box-shadow: 0 25px 50px rgba(0,0,0,.25); animation: float 4s ease-in-out infinite; }
.pulse-card > span { display: grid; place-items: center; width: 34px; height: 34px; color: var(--wine); background: var(--blush); border-radius: 10px; }
.pulse-card div { display: flex; flex-direction: column; }
.pulse-card small { color: #948087; font-size: 8px; }
.pulse-card b { color: var(--wine); font-family: Georgia, serif; font-size: 19px; }
.eyebrow.light { color: #dda7b7; }
.workflow-content h2 { color: #fff; }
.workflow-content h2 em, .cta-inner h2 em { color: #dda7b7; }
.workflow-steps { margin-top: 45px; }
.workflow-steps article { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 0 0 26px; margin-bottom: 25px; color: #9c7c88; border-bottom: 1px solid rgba(255,255,255,.09); transition: color .25s; cursor: default; }
.workflow-steps article.active, .workflow-steps article:hover { color: #fff; }
.workflow-steps article > span { padding-top: 4px; color: #c98ba0; font-family: Georgia, serif; font-size: 13px; }
.workflow-steps h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 21px; font-weight: 400; }
.workflow-steps p { max-width: 510px; margin: 0; color: #ac929b; font-size: 13px; }

.results-section { background: #f8f1ee; }
.results-card { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding: 75px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.results-card > div:first-child > p:last-child { max-width: 490px; color: var(--muted); }
.result-list article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.result-list article:last-child { border: 0; }
.result-list article > span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--wine); background: var(--blush); border-radius: 50%; font-family: Georgia, serif; font-size: 11px; }
.result-list article div { display: flex; flex-direction: column; }
.result-list strong { color: var(--wine-dark); font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.result-list small { margin-top: 4px; color: var(--muted); font-size: 12px; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.faq-grid .section-heading > p:last-child { max-width: 430px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { display: flex; align-items: center; justify-content: space-between; gap: 25px; width: 100%; padding: 22px 0; color: var(--wine-dark); background: none; border: 0; text-align: left; cursor: pointer; }
.accordion-item button span { font-family: Georgia, serif; font-size: 19px; }
.accordion-item button i { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.accordion-item button i::before, .accordion-item button i::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; content: ""; background: var(--wine); transform: translate(-50%,-50%); transition: transform .2s; }
.accordion-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item.open button i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.accordion-panel > p { min-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 14px; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.open .accordion-panel > p { padding-bottom: 24px; }

.cta-section { position: relative; padding: 105px 0; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%); }
.cta-section::before { position: absolute; inset: 20px; content: ""; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; }
.cta-decoration { position: absolute; top: 50%; right: -60px; color: rgba(255,255,255,.035); font-family: Georgia, serif; font-size: 310px; font-weight: 700; line-height: 1; transform: translateY(-50%); }
.cta-inner { position: relative; z-index: 1; max-width: 850px; text-align: center; }
.cta-inner .eyebrow { justify-content: center; }
.cta-inner h2 { color: #fff; font-size: clamp(46px, 6vw, 72px); }
.cta-inner > p:not(.eyebrow) { max-width: 600px; margin: 25px auto 0; color: #ddc6ce; }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.button-light { color: var(--wine); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.35); }

.custom-web-section { position: relative; padding: 115px 0 90px; overflow: hidden; background: linear-gradient(145deg, #fffdf9 0%, #f9eef0 55%, #f6ebdd 100%); }
.custom-web-glow { position: absolute; top: -270px; right: -170px; width: 620px; height: 620px; border: 1px solid rgba(121,31,61,.1); border-radius: 50%; box-shadow: 0 0 0 85px rgba(121,31,61,.02), 0 0 0 170px rgba(183,138,75,.018); }
.custom-web-card { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 60px; padding: 65px; background: rgba(255,255,255,.82); border: 1px solid rgba(121,31,61,.13); border-radius: 32px; box-shadow: 0 32px 80px rgba(56,16,31,.13); backdrop-filter: blur(14px); }
.custom-web-content h2 { margin: 0; color: var(--wine-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 62px); font-weight: 400; letter-spacing: -2.4px; line-height: 1.08; }
.custom-web-lead { max-width: 600px; margin: 23px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.custom-web-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin-top: 27px; }
.custom-web-benefits article { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.custom-web-benefits article > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--wine); background: var(--blush); border-radius: 9px; font-family: Georgia, serif; font-size: 9px; }
.custom-web-benefits article div { display: flex; flex-direction: column; }
.custom-web-benefits strong { color: var(--wine-dark); font-family: Georgia, serif; font-size: 14px; font-weight: 400; }
.custom-web-benefits small { margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.55; }
.custom-web-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 20px; margin-top: 30px; }
.custom-web-actions > small { color: #9c878e; font-size: 9px; }
.custom-web-visual { position: relative; min-height: 510px; perspective: 1100px; }
.web-browser { position: absolute; top: 45px; right: 0; width: 96%; overflow: hidden; background: #fff; border: 7px solid #fff; border-radius: 19px; box-shadow: 0 30px 70px rgba(58,19,34,.23); transform: rotateY(-5deg) rotateZ(1deg); }
.web-browser-bar { display: flex; align-items: center; gap: 6px; height: 32px; padding: 0 11px; background: #f4edef; }
.web-browser-bar i { width: 7px; height: 7px; background: #dccbd1; border-radius: 50%; }
.web-browser-bar i:first-child { background: #ce7892; }
.web-browser-bar span { margin: 0 auto; padding: 3px 42px; color: #a18e95; background: #fff; border-radius: 12px; font-size: 5px; }
.web-browser-page { min-height: 350px; background: #faf6f0; }
.web-demo-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; color: #624942; font-size: 6px; }
.web-demo-nav b { font-family: Georgia, serif; font-size: 11px; letter-spacing: 2px; }
.web-demo-hero { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 220px; padding: 28px 34px; overflow: hidden; background: linear-gradient(90deg, rgba(54,27,33,.88), rgba(54,27,33,.12)), radial-gradient(circle at 82% 30%, #d9aaa0, #b97973 30%, #70494a 62%, #382329 100%); }
.web-demo-hero small { color: #edc8a3; font-size: 5px; font-weight: 700; letter-spacing: 2px; }
.web-demo-hero strong { z-index: 1; margin: 10px 0 16px; color: #fff; font-family: Georgia, serif; font-size: 22px; font-weight: 400; line-height: 1.2; }
.web-demo-hero > span { z-index: 1; padding: 7px 12px; color: #5c3937; background: #f1d4b5; border-radius: 20px; font-size: 6px; font-weight: 700; }
.web-demo-hero > i { position: absolute; top: 22px; right: 33px; width: 120px; height: 175px; background: linear-gradient(145deg, rgba(255,255,255,.4), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.26); border-radius: 55% 55% 44% 44%; transform: rotate(7deg); }
.web-demo-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
.web-demo-services > span { display: flex; flex-direction: column; gap: 3px; padding: 9px; color: #5e4844; background: #fff; border-radius: 8px; }
.web-demo-services small { color: #ad746b; font-size: 5px; }
.web-demo-services b { font-family: Georgia, serif; font-size: 7px; font-weight: 400; }
.web-phone { position: absolute; z-index: 3; right: -12px; bottom: 12px; display: flex; flex-direction: column; align-items: center; width: 144px; height: 287px; padding: 20px 10px 12px; overflow: hidden; color: #5c403e; background: #faf6f0; border: 6px solid #302128; border-radius: 25px; box-shadow: 0 28px 60px rgba(42,18,27,.3); transform: rotate(4deg); }
.web-phone > i { position: absolute; top: -1px; left: 50%; width: 60px; height: 13px; background: #302128; border-radius: 0 0 10px 10px; transform: translateX(-50%); }
.web-phone > small { font-family: Georgia, serif; font-size: 6px; letter-spacing: 2px; }
.web-phone > div { width: 106px; height: 117px; margin: 10px 0; background: radial-gradient(circle at 55% 25%, #e9c5b7, #bc8179 40%, #6d4948 100%); border-radius: 52% 52% 12px 12px; }
.web-phone > strong { text-align: center; font-family: Georgia, serif; font-size: 10px; font-weight: 400; line-height: 1.3; }
.web-phone > span { margin-top: 10px; padding: 5px 10px; color: #fff; background: #98615d; border-radius: 14px; font-size: 5px; }
.web-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 7px; padding: 9px 12px; color: var(--wine-dark); background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); font-size: 9px; font-weight: 700; animation: float 4s ease-in-out infinite; }
.web-badge > span { display: grid; place-items: center; width: 23px; height: 23px; color: #fff; background: var(--wine); border-radius: 7px; font-size: 8px; }
.brand-badge { top: 5px; left: -8px; }
.booking-badge { bottom: 30px; left: 4px; animation-delay: -2s; }
.booking-badge > span { background: #4d9577; }
.custom-web-note { max-width: 770px; margin: 20px auto 0; color: #948088; text-align: center; font-size: 9px; line-height: 1.6; }

.site-footer { padding: 65px 0 25px; background: #fffdf9; }
.footer-top { display: grid; grid-template-columns: .8fr 1.2fr 1fr; align-items: center; gap: 50px; padding-bottom: 45px; }
.footer-top > p { max-width: 400px; color: var(--muted); font-size: 13px; }
.footer-top nav { display: flex; justify-content: flex-end; gap: 24px; color: #725f66; font-size: 12px; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: #a28f96; border-top: 1px solid var(--line); font-size: 10px; letter-spacing: .4px; }
.back-to-top { position: fixed; z-index: 40; right: 22px; bottom: 22px; display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--wine); border: 0; border-radius: 50%; box-shadow: 0 10px 25px rgba(121,31,61,.25); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s; cursor: pointer; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1101px) {
    .hero h1 { font-size: clamp(42px, 3.9vw, 48px); }
}

@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; padding-bottom: 30px; }
    .hero-content { max-width: 720px; text-align: center; margin-inline: auto; }
    .hero .eyebrow, .hero-actions, .hero-trust { justify-content: center; }
    .hero-lead { margin-inline: auto; }
    .product-stage { width: min(680px, 100%); margin-inline: auto; }
    .dashboard-card { left: 50%; transform: translateX(-50%); }
    .workflow-grid { gap: 55px; }
    .results-card { gap: 50px; padding: 55px; }
    .faq-grid { gap: 60px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .main-nav { gap: 16px; font-size: 13px; }
    .custom-web-card { grid-template-columns: 1fr; gap: 42px; padding: 52px; }
    .custom-web-content { text-align: center; }
    .custom-web-content .eyebrow, .custom-web-actions { justify-content: center; }
    .custom-web-lead { margin-inline: auto; }
    .custom-web-visual { width: min(590px, 100%); margin-inline: auto; }
}

@media (max-width: 820px) {
    .site-header { padding: 12px 0; background: rgba(255,253,249,.94); backdrop-filter: blur(15px); }
    .menu-toggle { display: block; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 68px 16px auto; display: flex; flex-direction: column; align-items: stretch; gap: 3px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .2s; }
    .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav a { padding: 10px 12px !important; }
    .main-nav > a::after { display: none; }
    .nav-cta { text-align: center; margin-top: 5px; }
    .section { padding: 85px 0; }
    .intro-grid, .workflow-grid, .results-card, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .feature-card.featured { grid-template-columns: 1fr; gap: 40px; }
    .workflow-visual { order: 2; width: min(440px, 100%); margin-inline: auto; }
    .workflow-content { order: 1; }
    .footer-top { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-top > p { margin: 0 auto; }
    .footer-top nav { justify-content: center; }
    .pricing-terms { grid-template-columns: 1fr; }
    .pricing-terms article, .pricing-terms article:first-child, .pricing-terms article:last-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .pricing-terms article:last-child { border-bottom: 0; }
    .custom-web-card { padding: 40px 32px; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand-copy strong { font-size: 17px; }
    .brand-mark { width: 40px; height: 40px; }
    .hero { min-height: 0; padding-top: 125px; }
    .hero h1 { font-size: 42px; letter-spacing: -2px; }
    .hero-lead { font-size: 16px; }
    .hero-actions, .cta-actions, .custom-web-actions { flex-direction: column; }
    .button { width: 100%; }
    .hero-trust { justify-content: space-around; width: 100%; }
    .hero-trust > div { min-width: 0; padding-right: 13px; margin-right: 13px; }
    .hero-trust strong { font-size: 22px; }
    .hero-trust small { font-size: 8px; }
    .product-stage { min-height: 360px; margin-top: 10px; }
    .dashboard-card { top: 25px; width: 510px; transform: translateX(-50%) scale(.67); transform-origin: top center; }
    .floating-booking { right: -4px; bottom: 51px; }
    .floating-rating { bottom: 2px; left: 3px; }
    .hero-note { flex-direction: column; gap: 9px; padding-top: 12px; text-align: center; }
    .hero-note i { display: none; }
    .section-heading h2, .workflow-content h2, .results-card h2 { font-size: 40px; letter-spacing: -1.7px; }
    .intro-grid { gap: 25px; }
    .feature-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-head { min-height: 0; padding-bottom: 22px; }
    .custom-web-section { padding: 80px 0 65px; }
    .custom-web-card { padding: 30px 22px; border-radius: 22px; }
    .custom-web-content h2 { font-size: 40px; letter-spacing: -1.7px; }
    .custom-web-benefits { grid-template-columns: 1fr; }
    .custom-web-visual { min-height: 390px; }
    .web-browser { top: 24px; left: 50%; width: 500px; transform: translateX(-50%) scale(.72); transform-origin: top center; }
    .web-phone { right: -2px; bottom: 5px; transform: rotate(4deg) scale(.84); transform-origin: bottom right; }
    .web-badge { font-size: 8px; }
    .brand-badge { left: 0; }
    .booking-badge { bottom: 18px; left: 0; }
    .feature-card, .feature-card.featured { grid-column: auto; min-height: 0; padding: 30px; }
    .featured h3 { font-size: 33px; }
    .calendar-visual { padding: 16px; transform: none; }
    .calendar-grid i { width: 23px; height: 23px; }
    .workflow-visual { min-height: 600px; }
    .phone-frame { right: 50%; transform: translateX(50%) rotate(-3deg) scale(.9); transform-origin: top center; }
    .pulse-card { bottom: 60px; left: 2px; }
    .results-card { padding: 30px 24px; border-radius: 22px; }
    .faq-grid { gap: 30px; }
    .cta-section { padding: 80px 0; }
    .cta-section::before { inset: 10px; }
    .cta-inner h2 { font-size: 44px; }
    .footer-top nav { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 6px; text-align: center; }
}

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