
:root {
    --bg: #050816;
    --bg-2: #07101f;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-soft: rgba(15, 23, 42, 0.55);
    --border: rgba(148, 163, 184, 0.18);
    --text: #ffffff;
    --muted: #cbd5e1;
    --muted-2: #94a3b8;
    --blue: #3b82f6;
    --purple: #7c3aed;
    --violet: #8b5cf6;
    --pink: #ec4899;
    --green: #10b981;
    --orange: #f97316;
    --teal: #0891b2;
    --ink: #0f172a;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 76% 18%, rgba(124, 58, 237, 0.24), transparent 34rem),
        radial-gradient(circle at 12% 10%, rgba(59, 130, 246, 0.16), transparent 30rem),
        linear-gradient(180deg, #050816 0%, #07101f 48%, #050816 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    align-items: center;
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-height: 90px;
    padding: 0.75rem clamp(1rem, 5vw, 4rem);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    text-decoration: none;
}

.logo img {
    display: block;
        height: 108px;
    object-fit: contain;
}

.logo-text,
.logo-title,
.logo-subtitle,
.logo-tagline {
    display: none !important;
}

.nav-links {
    align-items: center;
    display: flex;
    flex: 1;
    gap: clamp(0.8rem, 2vw, 1.65rem);
    justify-content: center;
}

.nav-links a {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 800;
    opacity: 0.92;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
    color: #a78bfa;
    opacity: 1;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-solid-green,
.btn-solid-blue {
    align-items: center;
    border-radius: 12px;
    display: inline-flex;
    font-weight: 900;
    gap: 0.6rem;
    justify-content: center;
    line-height: 1.1;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.35);
    color: #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-solid-green:hover,
.btn-solid-blue:hover {
    transform: translateY(-2px);
}

.nav-btn {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 0.85rem 1.2rem;
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.38);
    border: 1.5px solid rgba(196, 181, 253, 0.8);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(124, 58, 237, 0.18);
    box-shadow: 0 18px 45px rgba(124, 58, 237, 0.2);
}

.btn-large {
    font-size: 1rem;
    min-height: 58px;
    padding: 1rem 1.45rem;
}

/* ===== HERO ===== */
.hero {
    background:
        radial-gradient(circle at 78% 44%, rgba(124, 58, 237, 0.24), transparent 31rem),
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.12), transparent 32rem),
        linear-gradient(180deg, #050816 0%, #07101f 100%);
    overflow: hidden;
    padding: 2.35rem clamp(1rem, 5vw, 4.5rem) 2.3rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 6rem;
    right: 8%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 67%);
    filter: blur(70px);
    opacity: 0.9;
    pointer-events: none;
}

.hero-container {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 1fr);
    margin: 0 auto;
    max-width: 1360px;
    position: relative;
    z-index: 1;
}

.badge,
.section-kicker {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 999px;
    box-shadow: inset 0 0 18px rgba(124, 58, 237, 0.08);
    color: #818cf8;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1.35rem;
    padding: 0.62rem 1.1rem;
}

.section-kicker {
    color: #c084fc;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-text h1 {
    color: #ffffff;
    font-size: clamp(2.65rem, 5.2vw, 4.9rem);
    font-weight: 900;
    line-height: 1.04;
    margin-bottom: 1.4rem;
    max-width: 780px;
    text-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
}

.highlight {
    background: linear-gradient(90deg, #60a5fa, #8b5cf6, #ec4899);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    display: inline-block;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    color: #dbeafe;
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    margin-bottom: 1.55rem;
    max-width: 640px;
}

.hero-features {
    display: grid;
    gap: 0.7rem;
    list-style: none;
    margin-bottom: 2rem;
}

.hero-features li,
.card-features li,
.cta-middle li {
    align-items: flex-start;
    display: flex;
    gap: 0.8rem;
}

.hero-features li {
    color: #ffffff;
    font-size: 1.03rem;
}

.hero-features i {
    align-items: center;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border-radius: 50%;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.72rem;
    height: 20px;
    justify-content: center;
    margin-top: 0.22rem;
    width: 20px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-note {
    align-items: center;
    color: #cbd5e1;
    display: flex;
    font-size: 0.94rem;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.hero-note i {
    color: #8b5cf6;
}

/* ===== MOCKUPS ===== */
.hero-visual {
    min-width: 0;
    position: relative;
}

.hero-visual::before {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25), transparent 70%);
    content: "";
    filter: blur(70px);
    height: 520px;
    left: 5%;
    position: absolute;
    top: 7%;
    width: 520px;
    z-index: 0;
}

.mockup-wrapper {
    height: min(500px, 72vw);
    max-height: 500px;
    min-height: 360px;
    position: relative;
    z-index: 1;
}

.laptop-mockup {
    background: #020617;
    border: 1px solid rgba(196, 181, 253, 0.55);
    border-radius: 18px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.58),
        0 0 55px rgba(124, 58, 237, 0.2);
    height: 76%;
    left: 0;
    padding: 12px;
    position: absolute;
    top: 6%;
    transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
    width: 86%;
}

.laptop-mockup::after {
    background: linear-gradient(90deg, #111827, #4b5563, #111827);
    border-radius: 0 0 20px 20px;
    bottom: -22px;
    content: "";
    height: 22px;
    left: 8%;
    opacity: 0.95;
    position: absolute;
    width: 84%;
}

.mockup-screen {
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.83), rgba(2, 6, 23, 0.42)),
        radial-gradient(circle at 78% 30%, rgba(236, 72, 153, 0.14), transparent 16rem),
        #0f172a;
    border-radius: 9px;
    height: 100%;
    overflow: hidden;
    padding: 1.5rem;
}

.screen-topbar {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.screen-topbar span {
    background: #475569;
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

.mockup-title {
    color: #ffffff;
    display: block;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0.4rem 0 1.6rem;
}

.mockup-title::after {
    content: "Look & Feel Your Best";
    color: #ffffff;
    display: block;
    font-size: clamp(2rem, 4.8vw, 3rem);
    font-weight: 800;
    line-height: 1.02;
    margin-top: 1.8rem;
    max-width: 320px;
}

.screen-hero-line {
    background: #ec4899;
    border-radius: 8px;
    height: 34px;
    margin-top: 1rem;
    width: 120px;
}

.screen-hero-line::after {
    color: #ffffff;
    content: "Book Appointment";
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    padding-top: 0.55rem;
    text-align: center;
}

.screen-grid {
    bottom: 1.4rem;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
    left: 1.4rem;
    position: absolute;
    right: 1.4rem;
}

.screen-grid span {
    align-items: center;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 0.68rem;
    font-weight: 800;
    gap: 0.35rem;
    height: 82px;
    justify-content: center;
    line-height: 1.2;
    padding: 0.8rem;
    text-align: center;
}

.screen-grid span::before {
    color: #f0abfc;
    font-family: "Font Awesome 6 Free";
    font-size: 1.25rem;
    font-weight: 900;
}

.screen-grid span:nth-child(1)::before { content: "\f0c4"; }
.screen-grid span:nth-child(1)::after { content: "Hair Services"; }
.screen-grid span:nth-child(2)::before { content: "\f1fc"; }
.screen-grid span:nth-child(2)::after { content: "Nail Services"; }
.screen-grid span:nth-child(3)::before { content: "\f004"; }
.screen-grid span:nth-child(3)::after { content: "Beauty Services"; }

.phone-mockup {
    background: #020617;
    border: 1px solid rgba(196, 181, 253, 0.55);
    border-radius: 28px;
    bottom: 1%;
    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(124, 58, 237, 0.32);
    height: 72%;
    padding: 8px;
    position: absolute;
    right: 0;
    width: min(32%, 190px);
    z-index: 3;
}

.phone-screen {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.95));
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    justify-content: center;
    padding: 1rem 0.85rem;
    position: relative;
}

.phone-notch {
    background: #111827;
    border-radius: 999px;
    height: 5px;
    left: 50%;
    position: absolute;
    top: 12px;
    transform: translateX(-50%);
    width: 44px;
}

.chat-bubble,
.chat-reply {
    border-radius: 12px;
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.25;
    max-width: 100%;
    padding: 0.65rem;
}

.chat-bubble {
    align-self: flex-start;
    background: #ffffff;
    color: #111827;
}

.chat-reply {
    align-self: flex-end;
    background: #172033;
    color: #ffffff;
}

/* ===== SERVICES STRIP ===== */
.value-props-grid {
    background: rgba(15, 23, 42, 0.56);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 2rem auto 0;
    max-width: 1360px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.prop-card {
    align-items: center;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    gap: 1.2rem;
    min-height: 126px;
    padding: 1.4rem 2rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.prop-card:last-child {
    border-right: 0;
}

.prop-card:hover {
    background: rgba(124, 58, 237, 0.09);
    transform: translateY(-4px);
}

.prop-card i {
    color: #818cf8;
    font-size: 2.25rem;
}

.prop-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.25;
}

.prop-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.35;
    margin-top: 0.1rem;
}

/* ===== DARK PRICING ===== */
.pricing-section {
    background:
        radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.12), transparent 26rem),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.14), transparent 28rem),
        linear-gradient(180deg, #07101f 0%, #050816 100%);
    color: #ffffff;
    padding: clamp(4rem, 6vw, 5rem) clamp(1rem, 5vw, 4.5rem);
}

.section-header {
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    max-width: 760px;
    text-align: center;
}

.section-header h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: #cbd5e1;
    font-size: 1.05rem;
}

.pricing-grid {
    align-items: stretch;
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1120px;
}

.price-card {
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 20px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 28px 70px rgba(124, 58, 237, 0.16);
    transform: translateY(-6px);
}

.price-card.featured {
    border: 2px solid #10b981;
    box-shadow: 0 24px 70px rgba(16, 185, 129, 0.14);
}

.ribbon {
    background: #10b981;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.73rem;
    font-weight: 900;
    left: 50%;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    position: absolute;
    text-transform: uppercase;
    top: -16px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.card-icon {
    align-items: center;
    border-radius: 50%;
    display: flex;
    font-size: 1.35rem;
    height: 52px;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 52px;
}

.blue-icon,
.purple-icon {
    background: rgba(139, 92, 246, 0.14);
    color: #a78bfa;
}

.green-icon {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
}

.price-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price {
    color: #ffffff;
    font-size: clamp(2.35rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
    margin: 0.7rem 0 0.4rem;
}

.setup-type,
.card-desc {
    color: #cbd5e1;
}

.setup-type {
    font-size: 0.92rem;
    margin-bottom: 1rem;
    min-height: 48px;
}

.card-desc {
    font-size: 0.97rem;
    margin-bottom: 1.25rem;
    min-height: 54px;
}

hr {
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    margin: 0 0 1.4rem;
}

.card-features {
    display: grid;
    flex: 1;
    gap: 0.8rem;
    list-style: none;
    margin-bottom: 1.8rem;
}

.card-features li {
    color: #e2e8f0;
    font-size: 0.95rem;
}

.text-blue,
.text-green,
.text-blue-dark {
    color: #a78bfa;
    margin-top: 0.22rem;
}

.text-green { color: #34d399; }
.text-blue-dark { color: #c084fc; }

.btn-outline {
    background: transparent;
    border: 1px solid #a78bfa;
    color: #ffffff;
}

.btn-outline:hover {
    background: #8b5cf6;
    color: #ffffff;
}

.btn-solid-green {
    background: #10b981;
    color: #ffffff;
}

.btn-solid-blue {
    background: #8b5cf6;
    color: #ffffff;
}

/* ===== DARK PROCESS ===== */
.how-it-works {
    background:
        radial-gradient(circle at 20% 40%, rgba(59, 130, 246, 0.11), transparent 28rem),
        linear-gradient(180deg, #050816 0%, #07101f 100%);
    color: #ffffff;
    padding: 3rem clamp(1rem, 5vw, 4.5rem);
}

.process-row {
    align-items: center;
    background: rgba(15, 23, 42, 0.58);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1.3fr 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    margin: 0 auto;
    max-width: 1250px;
    padding: 2rem;
}

.process-intro h2 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.process-intro p {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    max-width: 260px;
}

.process-step {
    text-align: center;
}

.process-icon {
    align-items: center;
    border-radius: 50%;
    color: white;
    display: inline-flex;
    font-size: 1.4rem;
    height: 58px;
    justify-content: center;
    margin-bottom: 0.8rem;
    width: 58px;
}

.process-icon.blue { background: #0ea5e9; }
.process-icon.purple { background: #7c3aed; }
.process-icon.green { background: #10b981; }
.process-icon.orange { background: #f97316; }
.process-icon.teal { background: #0891b2; }

.process-step h3 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.process-step p {
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
}

.process-arrow {
    color: #94a3b8;
    font-size: 1.2rem;
}

/* ===== DARK FOOTER / ABOUT ===== */
.footer-cta {
    background:
        radial-gradient(circle at 14% 20%, rgba(124, 58, 237, 0.16), transparent 24rem),
        radial-gradient(circle at 82% 12%, rgba(59, 130, 246, 0.10), transparent 24rem),
        #050816;
    color: #e2e8f0;
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4.5rem) 2rem;
}

.cta-top-grid,
.footer-bottom {
    margin: 0 auto;
    max-width: 1180px;
}

.cta-top-grid {
    align-items: flex-start;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.35fr 0.9fr 1fr;
}

.about-profile {
    align-items: flex-start;
    display: grid;
    gap: 2rem;
    grid-template-columns: 185px minmax(0, 1fr);
}

.profile-card-wrap {
    text-align: center;
}

.profile-card {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-radius: 24px;
    box-shadow:
        0 0 38px rgba(124, 58, 237, 0.22),
        0 22px 50px rgba(15, 23, 42, 0.28);
    padding: 4px;
}

.profile-card img {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    display: block;
    height: 165px;
    object-fit: cover;
    object-position: center top;
    width: 165px;
}

.profile-card-wrap h4 {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.2;
    margin-top: 0.85rem;
}

.profile-card-wrap p {
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0.2rem;
}

.about-copy {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 2rem;
}

.about-copy h2 {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: clamp(2.2rem, 3.3vw, 3.4rem);
    font-weight: 900;
    gap: 0.75rem;
    line-height: 1.02;
    margin-bottom: 1.1rem;
    max-width: 430px;
}

.about-copy h2 i,
.cta-middle i,
.cta-left i,
.cta-right i {
    color: #c084fc;
}

.about-copy p,
.cta-left p,
.cta-right p {
    color: #cbd5e1;
}

.about-copy p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 1.2rem;
}

.credentials span {
    color: #e9d5ff;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.3;
}

.cta-middle ul {
    display: grid;
    gap: 0.9rem;
    list-style: none;
    padding-top: 0.2rem;
}

.cta-left h2,
.cta-right h2 {
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.cta-right .btn-large {
    width: min(100%, 420px);
}

.cta-subnotes {
    color: #cbd5e1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.footer-divider {
    border-top-color: rgba(226, 232, 240, 0.18);
    margin: 2.5rem auto 1.5rem;
    max-width: 1180px;
}

.footer-bottom {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
}

.footer-bottom a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer-bottom small {
    color: #94a3b8;
}

/* ===== BOOKING MODAL ===== */
body.modal-open { overflow: hidden; }

.booking-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 1rem;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.2s ease;
    z-index: 2000;
}

.booking-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.booking-backdrop {
    background: rgba(15, 23, 42, 0.72);
    inset: 0;
    position: absolute;
}

.booking-dialog {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
    color: #0f172a;
    display: grid;
    gap: 2rem;
    grid-template-columns: 0.85fr 1.15fr;
    max-height: min(760px, calc(100vh - 2rem));
    max-width: 900px;
    overflow: auto;
    padding: clamp(1.25rem, 4vw, 2rem);
    position: relative;
    width: min(100%, 900px);
}

.booking-close {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    color: #0f172a;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 40px;
}

.booking-copy h2 {
    color: #0f172a;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 0.85rem;
}

.booking-copy p,
.booking-note {
    color: #64748b;
}

.booking-form {
    display: grid;
    gap: 1rem;
}

.booking-form label {
    color: #0f172a;
    display: grid;
    font-size: 0.9rem;
    font-weight: 800;
    gap: 0.4rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #0f172a;
    font: inherit;
    min-height: 46px;
    padding: 0.75rem 0.85rem;
    width: 100%;
}

.booking-form textarea {
    min-height: 110px;
    resize: vertical;
}

.booking-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.booking-form .btn-large {
    width: 100%;
}

.booking-note {
    align-items: center;
    display: flex;
    font-size: 0.9rem;
    gap: 0.5rem;
}

/* ===== AI WIDGET ===== */
.ai-widget {
    bottom: 1.4rem;
    position: fixed;
    right: 1.4rem;
    z-index: 3000;
}

.ai-widget-toggle {
    align-items: center;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.35);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 900;
    gap: 0.6rem;
    min-height: 52px;
    padding: 0.9rem 1.2rem;
}

.ai-chat-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    bottom: 4.6rem;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
    color: #0f172a;
    display: none;
    max-width: calc(100vw - 2rem);
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 380px;
}

.ai-widget.is-open .ai-chat-panel {
    display: block;
}

.ai-chat-header {
    align-items: center;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.ai-chat-header strong,
.ai-chat-header span {
    display: block;
}

.ai-chat-header span {
    font-size: 0.78rem;
    opacity: 0.9;
}

.ai-chat-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.ai-chat-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 360px;
    min-height: 270px;
    overflow-y: auto;
    padding: 1rem;
}

.ai-message {
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 85%;
    padding: 0.75rem 0.85rem;
}

.ai-message.bot {
    align-self: flex-start;
    background: #f1f5f9;
    color: #0f172a;
}

.ai-message.user {
    align-self: flex-end;
    background: #ede9fe;
    color: #4c1d95;
    font-weight: 800;
}

.ai-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-quick-actions button {
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    color: #6d28d9;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.45rem 0.65rem;
}

.ai-chat-form {
    border-top: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0.8rem;
}

.ai-chat-form input {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    font: inherit;
    min-height: 42px;
    padding: 0 0.85rem;
}

.ai-chat-form button {
    align-items: center;
    background: #7c3aed;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin-left: 0.5rem;
    width: 42px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .cta-top-grid {
        grid-template-columns: 1fr;
    }

    .about-profile {
        grid-template-columns: 170px 1fr;
        max-width: 760px;
    }

    .cta-middle,
    .cta-right {
        max-width: 760px;
    }
}

@media (max-width: 1050px) {
    .navbar {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
    }

    .hero-container,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        margin-left: auto;
        margin-right: auto;
        max-width: 540px;
        text-align: left;
    }

    .hero-visual {
        margin: 0 auto;
        max-width: 720px;
        width: 100%;
    }

    .value-props-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prop-card:nth-child(2) {
        border-right: 0;
    }

    .process-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-intro p {
        margin: 0 auto;
    }

    .process-arrow {
        display: none;
    }

    .footer-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 0;
        padding: 0.7rem 0.9rem 0.5rem;
        text-align: center;
    }

    .logo {
        justify-content: center;
        width: 100%;
        margin-bottom: 0.55rem;
    }

    .logo img {
        height: 76px;
        max-width: 92vw;
    }

    .nav-links {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.45rem 0.8rem;
        padding: 0.5rem 0;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    .nav-btn {
        order: 1;
        width: min(100%, 320px);
        margin-bottom: 0.75rem;
    }

    .hero {
        padding: 1.75rem 1rem 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1,
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-large,
    .btn-secondary {
        width: 100%;
    }

    .mockup-wrapper {
        height: 320px;
        min-height: 320px;
    }

    .laptop-mockup {
        height: 66%;
        width: 92%;
    }

    .phone-mockup {
        height: 68%;
        width: 142px;
    }

    .screen-grid span {
        display: none;
    }

    .value-props-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .prop-card,
    .prop-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .prop-card:last-child {
        border-bottom: 0;
    }

    .price-card {
        padding: 1.5rem;
    }

    .setup-type,
    .card-desc {
        min-height: 0;
    }

    .booking-dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 1rem);
        padding: 1.25rem;
    }

    .booking-row {
        grid-template-columns: 1fr;
    }

    .about-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-card-wrap {
        justify-self: center;
    }

    .about-copy {
        border-left: 0;
        padding-left: 0;
    }

    .about-copy h2 {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .credentials {
        align-items: center;
    }

    .ai-widget {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
        width: auto;
    }

    .ai-widget-toggle {
        justify-content: center;
        width: 100%;
        min-height: 54px;
        padding: 0.9rem 1rem;
    }

    .ai-chat-panel {
        bottom: 4.4rem;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
    }

    .ai-chat-body {
        max-height: calc(100vh - 18rem);
    }

    .ai-chat-form {
        grid-template-columns: 1fr auto;
        padding: 0.85rem;
    }

    .ai-chat-form input {
        min-height: 46px;
    }
}

@media (max-width: 420px) {
    .ai-widget {
        bottom: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

    .ai-chat-panel {
        bottom: 5.2rem;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
    }

    .ai-chat-header span {
        font-size: 0.72rem;
    }

    .ai-chat-body {
        max-height: calc(100vh - 16rem);
    }

    .hero-text h1 {
        font-size: 2.15rem;
    }

    .badge,
    .section-kicker {
        align-items: center;
        border-radius: 12px;
        line-height: 1.3;
    }

    .mockup-wrapper {
        height: 300px;
        min-height: 300px;
    }

    .phone-mockup {
        right: -0.3rem;
        width: 126px;
    }
}


/* ===== Fix laptop mockup button overlap ===== */
.mockup-screen {
    position: relative;
}

.mockup-title::after {
    margin-top: 1.1rem;
    max-width: 360px;
}

.screen-hero-line {
    background: #ec4899;
    border-radius: 8px;
    height: 34px;
    margin-top: 1rem;
    position: relative;
    width: 120px;
    z-index: 3;
}

.screen-grid {
    bottom: 1.1rem;
    left: 1.4rem;
    right: 1.4rem;
    z-index: 1;
}

.screen-grid span {
    padding-top: 1rem;
}

@media (max-width: 1050px) {
    .screen-hero-line {
        margin-top: 0.8rem;
    }

    .screen-grid {
        bottom: 1rem;
    }
}

@media (max-width: 720px) {
    .screen-hero-line {
        height: 30px;
        margin-top: 0.7rem;
        width: 110px;
    }

    .screen-hero-line::after {
        font-size: 0.62rem;
        padding-top: 0.5rem;
    }
}


/* ===== Strong laptop mockup cleanup: no overlap, no gray base ===== */
.mockup-screen {
    position: relative !important;
    padding: 1.45rem !important;
}

.laptop-mockup::after {
    display: none !important;
}

.mockup-title {
    margin-bottom: 0 !important;
}

.mockup-title::after {
    font-size: clamp(1.75rem, 4vw, 2.65rem) !important;
    line-height: 1.02 !important;
    margin-top: 1rem !important;
    max-width: 340px !important;
}

.screen-hero-line {
    position: absolute !important;
    left: 1.45rem !important;
    top: 56% !important;
    z-index: 5 !important;
    margin: 0 !important;
    width: 128px !important;
    height: 36px !important;
    background: #ec4899 !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.22) !important;
}

.screen-hero-line::after {
    color: #ffffff !important;
    content: "Book Appointment" !important;
    display: block !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    line-height: 36px !important;
    padding: 0 !important;
    text-align: center !important;
}

.screen-grid {
    bottom: 1.2rem !important;
    left: 1.45rem !important;
    right: 1.45rem !important;
    z-index: 2 !important;
}

.screen-grid span {
    height: 78px !important;
    padding-top: 1rem !important;
}

@media (max-width: 1050px) {
    .screen-hero-line {
        top: 54% !important;
    }
}

@media (max-width: 720px) {
    .screen-hero-line {
        top: 52% !important;
        width: 112px !important;
        height: 32px !important;
    }

    .screen-hero-line::after {
        font-size: 0.58rem !important;
        line-height: 32px !important;
    }
}


/* ===== Mobile mockup fix: hide overlapping laptop button/cards ===== */
@media (max-width: 720px) {
    .hero-visual {
        margin-top: 1.5rem;
    }

    .mockup-wrapper {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }

    .laptop-mockup {
        height: 72% !important;
        left: 0 !important;
        top: 4% !important;
        width: 78% !important;
        transform: none !important;
    }

    .mockup-screen {
        padding: 1rem !important;
    }

    .mockup-title {
        font-size: 1.25rem !important;
        margin-bottom: 0 !important;
    }

    .mockup-title::after {
        font-size: 1.9rem !important;
        line-height: 1.05 !important;
        margin-top: 1rem !important;
        max-width: 240px !important;
    }

    /* Hide the small laptop CTA on mobile so it does not overlap */
    .screen-hero-line {
        display: none !important;
    }

    .screen-grid {
        bottom: 1rem !important;
        display: grid !important;
        gap: 0.65rem !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        left: 1rem !important;
        right: 1rem !important;
    }

    .screen-grid span {
        height: 58px !important;
        font-size: 0.62rem !important;
        padding: 0.45rem !important;
    }

    .screen-grid span:nth-child(3) {
        display: none !important;
    }

    .screen-grid span::before {
        font-size: 1rem !important;
    }

    .phone-mockup {
        bottom: 0 !important;
        height: 76% !important;
        right: 0 !important;
        width: 34% !important;
        min-width: 132px !important;
    }

    .phone-screen {
        padding: 0.9rem 0.65rem !important;
    }

    .chat-bubble,
    .chat-reply {
        font-size: 0.62rem !important;
        padding: 0.55rem !important;
    }
}

@media (max-width: 420px) {
    .mockup-wrapper {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    .laptop-mockup {
        width: 76% !important;
    }

    .mockup-title::after {
        font-size: 1.55rem !important;
        max-width: 190px !important;
    }

    .screen-grid {
        grid-template-columns: 1fr !important;
    }

    .screen-grid span:nth-child(2),
    .screen-grid span:nth-child(3) {
        display: none !important;
    }

    .phone-mockup {
        min-width: 118px !important;
        width: 38% !important;
    }
}
