/* ================================================
   WEBORA PREMIUM — Dark Edition
   ================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark palette */
    --bg:          #07070b;
    --bg-card:     #0e0e14;
    --bg-elevated: #141419;
    --bg-input:    #0a0a10;

    /* Borders */
    --border:      rgba(255,255,255,.06);
    --border-2:    rgba(255,255,255,.12);
    --border-3:    rgba(255,255,255,.18);

    /* Text */
    --text:        #edecf4;
    --text-2:      #8b8b9e;
    --text-3:      #4a4a58;

    /* Accent */
    --accent:      #6366f1;
    --accent-2:    #818cf8;
    --accent-3:    #a5b4fc;
    --accent-glow: rgba(99,102,241,.22);
    --gradient:    linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-text: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);

    /* Fonts */
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Radii */
    --r-xs:  6px;
    --r-sm:  10px;
    --r-md:  14px;
    --r-lg:  20px;
    --r-xl:  28px;
    --r-2xl: 36px;

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(0,0,0,.4);
    --shadow-md:   0 4px 20px rgba(0,0,0,.5);
    --shadow-lg:   0 12px 48px rgba(0,0,0,.6);
    --shadow-glow: 0 0 40px var(--accent-glow);

    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent-2);
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.625rem;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.025em;
    color: var(--text);
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: .9375rem;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99,102,241,.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.1), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99,102,241,.5);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
    background: rgba(255,255,255,.05);
    color: var(--text);
    border: 1px solid var(--border-2);
}

.btn-ghost:hover {
    background: rgba(255,255,255,.09);
    border-color: var(--border-3);
    transform: translateY(-1px);
}

.btn-header {
    background: var(--gradient);
    color: #fff;
    padding: 9px 22px;
    font-size: .875rem;
    box-shadow: 0 2px 12px rgba(99,102,241,.3);
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(99,102,241,.45);
}

.btn-cta {
    background: #fff;
    color: #07070b;
    font-weight: 600;
    padding: 16px 36px;
    font-size: 1rem;
    box-shadow: 0 4px 24px rgba(255,255,255,.15);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(255,255,255,.25);
}

.btn-full { width: 100%; }

/* ================================================
   HEADER
   ================================================ */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(7,7,11,.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    background: rgba(7,7,11,.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.125rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--gradient);
    color: #fff;
    border-radius: var(--r-xs);
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: -.02em;
    box-shadow: 0 2px 12px rgba(99,102,241,.4);
}

.logo-text {
    color: var(--text);
    letter-spacing: -.01em;
}

.logo-dot { color: var(--accent-2); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    font-size: .875rem;
    font-weight: 450;
    color: var(--text-2);
    transition: color var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width var(--transition);
}

.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--text); }
.main-nav a.active::after { width: 100%; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4.5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4.5px); }

/* ================================================
   HERO
   ================================================ */

.hero {
    position: relative;
    padding: 148px 0 96px;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.orb-1 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(99,102,241,.18) 0%, transparent 65%);
    top: -160px;
    right: -80px;
}

.orb-2 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(139,92,246,.14) 0%, transparent 65%);
    bottom: -60px;
    left: -120px;
}

.orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 65%);
    top: 40%;
    left: 45%;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 80%);
}

/* Hero layout */
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content,
.hero-visual,
.hm-browser {
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-3);
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.25);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 22px;
}

.hero-accent {
    display: inline;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-desc {
    font-size: 1.0625rem;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.stat {
    padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-2);
    flex-shrink: 0;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 600;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 3px;
}

.stat-label {
    font-size: .8rem;
    color: var(--text-3);
    letter-spacing: .01em;
}

/* ================================================
   HERO MOCKUP
   ================================================ */

.hero-visual {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.hero-mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-left: auto;
}

.mockup-glow {
    position: absolute;
    inset: 7% 5% 3%;
    background:
        linear-gradient(135deg, rgba(99,102,241,.13), rgba(20,184,166,.08) 48%, rgba(168,85,247,.1));
    filter: blur(42px);
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

.hm-browser {
    background: #0d0d14;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    box-shadow:
        0 24px 64px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,255,255,.07),
        0 0 60px rgba(99,102,241,.1);
    transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
    transform-origin: left center;
    position: relative;
    z-index: 1;
}

.hm-chrome {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    background: #050508;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.hm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hm-url {
    margin-left: 10px;
    font-size: 8px;
    color: #4a4a5a;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 4px;
    padding: 3px 10px;
    flex: 1;
    max-width: 200px;
    font-family: var(--font-sans);
}

.hm-body {
    background: #f8fafc;
    padding: 12px 14px 16px;
}

/* Floating phone */
.hm-phone {
    position: absolute;
    bottom: -12px;
    right: -18px;
    width: 122px;
    background:
        linear-gradient(145deg, #2c2d36 0%, #050507 38%, #191a20 100%);
    border-radius: 27px;
    padding: 5px;
    box-shadow:
        0 18px 36px rgba(0,0,0,.38),
        0 4px 14px rgba(20,20,28,.38),
        inset 0 0 0 1px rgba(255,255,255,.18),
        inset 0 0 0 2px rgba(0,0,0,.42),
        0 0 26px rgba(99,102,241,.14);
    transform: rotate(3deg);
    z-index: 10;
}

.hm-phone::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -9px;
    height: 15px;
    background: rgba(8,8,12,.45);
    filter: blur(12px);
    border-radius: 999px;
    z-index: -1;
}

.hm-side {
    position: absolute;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.05));
}

.hm-side--left {
    left: -2px;
    top: 38px;
    height: 30px;
}

.hm-side--right {
    right: -2px;
    top: 52px;
    height: 25px;
}

.hm-di {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 9px;
    background: #000;
    border-radius: 10px;
    z-index: 20;
}

.hm-ph-notch { display: none; }

.hm-ph-screen {
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0) 24%),
        #0c0c14;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
    font-family: var(--font-sans);
}

.ios-status {
    min-height: 24px;
    padding: 8px 13px 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f8fafc;
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
}

.ios-icons {
    display: flex;
    align-items: end;
    gap: 3px;
}

.ios-icons span:nth-child(1) {
    width: 10px;
    height: 7px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(248,250,252,.45) 35%, #f8fafc 35%);
}

.ios-icons span:nth-child(2) {
    width: 8px;
    height: 7px;
    border-radius: 2px;
    border: 1px solid rgba(248,250,252,.65);
}

.ios-icons span:nth-child(3) {
    width: 2px;
    height: 4px;
    border-radius: 2px;
    background: rgba(248,250,252,.5);
}

.hm-app-head {
    padding: 4px 10px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hm-app-head span,
.hm-label {
    display: block;
    color: rgba(237,236,244,.48);
    font-size: 5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hm-app-head strong {
    display: block;
    margin-top: 2px;
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.hm-app-head i {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,#6366f1,#8b5cf6);
    color: #fff;
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
}

.hm-app-card {
    margin: 0 8px 7px;
    padding: 9px;
    border-radius: 13px;
    background:
        linear-gradient(145deg, rgba(129,140,248,.2), rgba(99,102,241,.07)),
        rgba(255,255,255,.05);
    border: 1px solid rgba(129,140,248,.18);
}

.hm-total {
    display: flex;
    align-items: end;
    gap: 5px;
    margin: 4px 0 8px;
}

.hm-total strong {
    color: #fff;
    font-size: 22px;
    line-height: .9;
}

.hm-total span {
    color: rgba(237,236,244,.58);
    font-size: 5.5px;
    padding-bottom: 2px;
}

.hm-bars {
    height: 20px;
    display: flex;
    align-items: end;
    gap: 4px;
}

.hm-bars i {
    flex: 1;
    border-radius: 3px 3px 1px 1px;
    background: rgba(129,140,248,.32);
}

.hm-bars i:nth-child(1) { height: 38%; }
.hm-bars i:nth-child(2) { height: 62%; }
.hm-bars i:nth-child(3) { height: 48%; }
.hm-bars i:nth-child(4) { height: 84%; }
.hm-bars i:nth-child(5) {
    height: 100%;
    background: linear-gradient(180deg,#a5b4fc,#6366f1);
}

.hm-project-list {
    display: grid;
    gap: 5px;
    margin: 0 8px 6px;
}

.hm-project-row {
    min-height: 32px;
    display: grid;
    grid-template-columns: 6px 1fr auto;
    gap: 7px;
    align-items: center;
    padding: 7px;
    border-radius: 10px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.06);
}

.hm-project-row > span {
    width: 6px;
    height: 22px;
    border-radius: 999px;
    background: #818cf8;
}

.hm-project-row:nth-child(2) > span { background: #22c55e; }

.hm-project-row strong,
.hm-project-row small {
    display: block;
}

.hm-project-row strong {
    color: #fff;
    font-size: 6.5px;
    line-height: 1.1;
}

.hm-project-row small {
    color: rgba(237,236,244,.42);
    font-size: 5px;
    margin-top: 2px;
}

.hm-project-row em {
    color: #a5b4fc;
    font-size: 6px;
    font-style: normal;
    font-weight: 800;
}

.hm-tabbar {
    margin-top: auto;
    padding: 7px 10px 5px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.05);
}

.hm-tabbar span {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: rgba(237,236,244,.12);
}

.hm-tabbar .active {
    background: #6366f1;
}

.hm-home {
    width: 34px;
    height: 3px;
    margin: 0 auto 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
}





/* Hero mockup responsive */
@media (max-width: 1024px) {
    .hero-mockup-wrap { max-width: 480px; margin: 0 auto; }
    .hm-browser { transform: none; }
}

@media (max-width: 768px) {
    .hero .container { width: 100%; }
    .hero-visual { width: 100%; }
    .hero-content {
        width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
        min-width: 0;
    }
    .hero-title,
    .hero-desc,
    .hero-actions,
    .hero-stats {
        max-width: calc(100vw - 60px);
    }
    .hero-desc {
        display: block;
        width: auto !important;
        max-width: 17rem !important;
        overflow-wrap: break-word;
    }
    .hero-mockup-wrap { max-width: calc(100vw - 40px); padding: 0; }
    .hm-browser { transform: none; box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06); }
    .hm-phone { right: 2px; bottom: -12px; width: 104px; }
}

/* ================================================
   CLIENTS BAR
   ================================================ */

.clients-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.clients-label-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.clients-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-3);
}

.clients-overflow {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: marquee 22s linear infinite;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.client-logo {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: -.01em;
    white-space: nowrap;
    transition: color var(--transition);
    flex-shrink: 0;
}

.client-logo:hover { color: var(--text-2); }

/* ================================================
   SERVICES
   ================================================ */

.services {
    padding: 112px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(99,102,241,.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(99,102,241,.12), var(--shadow-glow);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
    background: linear-gradient(145deg, #131320, #0e0e1e);
    border-color: rgba(99,102,241,.3);
    box-shadow: 0 0 40px rgba(99,102,241,.12), 0 0 0 1px rgba(99,102,241,.15);
}

.service-card.featured:hover {
    border-color: rgba(99,102,241,.5);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 60px rgba(99,102,241,.2);
}

.service-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 65%);
    pointer-events: none;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.2);
    border-radius: var(--r-sm);
    color: var(--accent-2);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.service-card.featured .service-icon {
    background: rgba(99,102,241,.15);
    border-color: rgba(99,102,241,.3);
    color: var(--accent-3);
}

.service-card h3 {
    font-size: 1.175rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -.015em;
    color: var(--text);
}

.service-card > p {
    font-size: .9375rem;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    flex: 1;
}

.service-list li {
    font-size: .875rem;
    color: var(--text-2);
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .7;
}

.service-card.featured .service-list li { color: rgba(255,255,255,.65); }
.service-card.featured .service-list li::before { background: var(--accent-3); opacity: .9; }

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    color: var(--text-3);
    transition: all var(--transition);
    margin-top: auto;
    align-self: flex-start;
}

.service-card:hover .service-arrow {
    border-color: var(--accent);
    color: var(--accent-2);
    background: rgba(99,102,241,.1);
}

/* ================================================
   ABOUT
   ================================================ */

.about {
    padding: 112px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,.06) 0%, transparent 65%);
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
}

.about-left .section-tag { margin-bottom: 16px; }
.about-left .section-title { text-align: left; margin-bottom: 24px; }

.about-text {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.value-item:last-child { border-bottom: none; }

.value-item:hover .value-num {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-num {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-3);
    line-height: 1;
    flex-shrink: 0;
    padding-top: 3px;
    transition: color var(--transition);
    min-width: 36px;
}

.value-item h4 {
    font-size: .9375rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -.01em;
    color: var(--text);
}

.value-item p {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* ================================================
   PORTFOLIO
   ================================================ */

.portfolio {
    padding: 112px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    box-shadow: inset 0 0 0 1px rgba(99,102,241,.0);
    transition: box-shadow var(--transition);
    pointer-events: none;
    z-index: 5;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(99,102,241,.1);
    border-color: rgba(99,102,241,.2);
}

.portfolio-item:hover::after {
    box-shadow: inset 0 0 0 1px rgba(99,102,241,.1);
}

.portfolio-item.large {
    grid-column: 1 / -1;
}

.portfolio-preview {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.portfolio-item.large .portfolio-preview {
    height: 420px;
}

.portfolio-preview.pm-preview--phone {
    height: 440px;
    align-items: center;
    justify-content: center;
    padding: 30px 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01) 45%, rgba(99,102,241,.08)),
        #0b0b11;
}

.pm-phone {
    width: 240px;
    background: #111;
    border-radius: 36px;
    padding: 7px;
    box-shadow:
        0 30px 70px rgba(0,0,0,.7),
        inset 0 0 0 1px rgba(255,255,255,.15),
        0 0 0 3px #1a1a20,
        0 0 50px rgba(99,102,241,.1);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.pm-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 22px;
    background: #000;
    border-radius: 12px;
    z-index: 20;
}

.pm-phone-screen {
    border-radius: 30px;
    overflow: hidden;
    font-family: var(--font-sans);
    position: relative;
    background: #0f172a;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 4px;
    font-size: 12px;
    font-weight: 600;
    color: #f8fafc;
    position: relative;
    z-index: 10;
}

.pm-phone-status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pm-phone-status svg {
    width: 14px;
    height: 10px;
}

.pm-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 18px 10px;
}

.pm-phone-eyebrow {
    display: block;
    font-size: 11px;
    color: #475569;
    margin-bottom: 2px;
}

.pm-phone-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #f8fafc;
}

.pm-phone-sub {
    display: block;
    font-size: 12px;
    margin-top: 2px;
}

.pm-phone-timer {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12px;
    color: #f59e0b;
    font-weight: 700;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.filter-btn {
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-3);
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: 100px;
    padding: 8px 22px;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: .01em;
}

.filter-btn:hover {
    color: var(--text-2);
    border-color: var(--border-3);
    background: rgba(255,255,255,.03);
}

.filter-btn.active {
    color: #fff;
    background: var(--gradient);
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(99,102,241,.35);
}

.portfolio-item.portfolio-item--hidden {
    display: none;
}

.portfolio-item.portfolio-item--fade-out {
    opacity: 0 !important;
    transform: scale(.96) !important;
    transition: opacity .3s ease, transform .3s ease !important;
    pointer-events: none;
}

.portfolio-item.portfolio-item--fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .4s ease, transform .4s ease !important;
}

.portfolio-info {
    padding: 24px 28px 28px;
    border-top: 1px solid var(--border);
}

.portfolio-cat {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-2);
    margin-bottom: 8px;
    display: block;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -.015em;
    color: var(--text);
}

.portfolio-info p {
    font-size: .9375rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ================================================
   MOCKUP COMPONENT SYSTEM
   ================================================ */

/* Browser Frame */
.pm-browser {
    width: 92%;
    max-width: 700px;
    background: #0d0d14;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,255,255,.07),
        0 0 60px rgba(99,102,241,.08);
    font-family: var(--font-sans);
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.pm-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #050508;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.pm-dots {
    display: flex;
    gap: 5px;
}

.pm-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.pm-dots i:nth-child(1) { background: #ff5f57; }
.pm-dots i:nth-child(2) { background: #febc2e; }
.pm-dots i:nth-child(3) { background: #28c840; }

.pm-url {
    font-size: 9px;
    color: #4a4a5a;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 4px;
    padding: 3px 12px;
    margin-left: 8px;
    letter-spacing: .02em;
}

/* Mockup Body - Dark Theme */
.pm-body {
    background: var(--pm-glow, #07070b);
    padding: 18px 20px;
    position: relative;
    flex: 1;
    overflow: hidden;
}

.pm-body.pm-dark {
    background: #0a0a10;
}

.pm-body::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pm-accent, rgba(99,102,241,.12)) 0%, transparent 65%);
    pointer-events: none;
    opacity: .5;
}

/* Split layout for consulting card */
.pm-body--split {
    display: flex;
    padding: 0 !important;
}

.pm-body--split::after {
    display: none;
}

.pm-split {
    flex: 1;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pm-split--left {
    border-right: 1px solid rgba(255,255,255,.05);
}

/* Mockup Navigation */
.pm-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.pm-nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-logo {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.pm-brand-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.pm-badge {
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--pm-badge-bg, rgba(99,102,241,.1));
    border: 1px solid var(--pm-badge-border, rgba(99,102,241,.25));
    color: var(--pm-badge-color, #818cf8);
}

.pm-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
}

.pm-nav-date {
    font-size: 8px;
    color: #4a4a58;
}

.pm-btn-sm {
    font-size: 8px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Metrics */
.pm-metrics {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.pm-metrics-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pm-metric {
    background: #13131f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 14px;
}

.pm-metric-label {
    display: block;
    font-size: 8px;
    color: #4a4a58;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.pm-metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #f0f4ff;
    line-height: 1;
    margin-bottom: 4px;
}

.pm-metric-trend,
.pm-metric-sub {
    display: block;
    font-size: 8px;
    color: #4a4a58;
}

.pm-metric-trend--up {
    color: #22c55e;
}

/* Chart & Details Row */
.pm-details-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
}

.pm-chart-col {
    background: #13131f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    padding: 14px;
}

.pm-chart-title {
    font-size: 9px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.pm-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.pm-bar {
    flex: 1;
    background: rgba(59,130,246,.18);
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: background .3s ease;
}

.pm-bar span {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    color: #4a5568;
}

.pm-bar--active {
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
    box-shadow: 0 0 8px rgba(59,130,246,.35);
}

.pm-bar--dim {
    background: rgba(59,130,246,.07);
}

/* Table */
.pm-table-col {
    background: #13131f;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    overflow: hidden;
}

.pm-table-header {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    font-size: 7px;
    font-weight: 600;
    color: #4a5568;
    padding: 10px 14px;
    background: #0f151d;
    border-bottom: 1px solid rgba(255,255,255,.05);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.pm-table-row {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    font-size: 9px;
    color: #94a3b8;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    align-items: center;
}

.pm-table-row:last-child {
    border-bottom: none;
}

.pm-status {
    font-size: 7px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
}

.pm-status--success {
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.18);
    color: #22c55e;
}

.pm-status--info {
    background: rgba(59,130,246,.12);
    border: 1px solid rgba(59,130,246,.18);
    color: #60a5fa;
}

.pm-saha-pro {
    background:
        radial-gradient(circle at 82% 20%, rgba(59,130,246,.16), transparent 34%),
        linear-gradient(160deg, #07111f, #080a10 58%);
}

.pm-saha-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.pm-saha-summary span {
    display: block;
    color: #64748b;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 4px;
}

.pm-saha-summary strong {
    display: block;
    color: #f8fafc;
    font-size: 18px;
    letter-spacing: -.02em;
}

.pm-saha-pulse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(34,197,94,.18);
    background: rgba(34,197,94,.08);
    color: #86efac;
    font-size: 8px;
    font-weight: 700;
}

.pm-saha-pulse i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34,197,94,.75);
}

.pm-saha-pro .pm-metric,
.pm-saha-pro .pm-chart-col,
.pm-saha-pro .pm-table-col {
    background: rgba(15,23,42,.72);
    border-color: rgba(148,163,184,.1);
}

.pm-saha-pro .pm-table-header {
    background: rgba(2,6,23,.45);
}

.pm-details-row--ops {
    grid-template-columns: 1.05fr 1.45fr;
}

.pm-medpoint-pro {
    background:
        radial-gradient(circle at 78% 18%, rgba(16,185,129,.18), transparent 32%),
        linear-gradient(160deg, #061210, #07100f 52%, #050807);
}

.pm-medpoint-pro .pm-nav {
    margin-bottom: 12px;
}

.pm-med-nav {
    color: rgba(220,252,231,.55);
    font-size: 8px;
    font-weight: 600;
}

.pm-med-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items: stretch;
}

.pm-med-copy {
    padding: 4px 0 0;
}

.pm-med-copy > span {
    color: #34d399;
    display: block;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pm-med-copy h4 {
    color: #f0fdf4;
    font-size: 21px;
    line-height: 1.08;
    letter-spacing: -.03em;
    max-width: 310px;
    margin-bottom: 8px;
}

.pm-med-copy p {
    color: rgba(220,252,231,.58);
    font-size: 10px;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 13px;
}

.pm-med-trust {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: center;
    gap: 6px 8px;
    max-width: 270px;
}

.pm-med-trust strong {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.pm-med-trust span {
    color: rgba(220,252,231,.52);
    font-size: 8px;
}

.pm-med-panel {
    border-radius: 16px;
    padding: 11px;
    background: rgba(240,253,244,.075);
    border: 1px solid rgba(187,247,208,.12);
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.pm-med-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}

.pm-med-panel-head span {
    color: rgba(220,252,231,.52);
    font-size: 8px;
    font-weight: 700;
}

.pm-med-panel-head strong {
    color: #86efac;
    font-size: 14px;
}

.pm-med-doctor {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    background: rgba(3,7,18,.35);
    border: 1px solid rgba(255,255,255,.06);
    margin-bottom: 9px;
}

.pm-med-doctor i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,#d1fae5,#10b981);
    color: #064e3b;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.pm-med-doctor strong,
.pm-med-doctor span {
    display: block;
}

.pm-med-doctor strong {
    color: #f0fdf4;
    font-size: 10px;
    margin-bottom: 3px;
}

.pm-med-doctor span {
    color: #34d399;
    font-size: 8px;
}

.pm-med-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-bottom: 9px;
}

.pm-med-slots span {
    text-align: center;
    border-radius: 9px;
    padding: 6px 0;
    color: rgba(220,252,231,.58);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.06);
    font-size: 8px;
    font-weight: 700;
}

.pm-med-slots .active {
    background: #10b981;
    color: #052e25;
}

.pm-med-cta {
    border-radius: 10px;
    padding: 8px;
    background: linear-gradient(135deg,#34d399,#10b981);
    color: #052e25;
    text-align: center;
    font-size: 9px;
    font-weight: 900;
}

.pm-med-services {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.pm-med-services div {
    border-radius: 12px;
    padding: 11px 12px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.07);
}

.pm-med-services span,
.pm-med-services strong {
    display: block;
}

.pm-med-services span {
    color: rgba(220,252,231,.5);
    font-size: 8px;
    margin-bottom: 5px;
}

.pm-med-services strong {
    color: #f0fdf4;
    font-size: 10px;
}

/* Split Layout Content (Consulting card) */
.pm-eyebrow {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pm-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.pm-subtext {
    font-size: 9px;
    color: #4a4a58;
    line-height: 1.65;
    margin-bottom: 18px;
}

.pm-cta-sm {
    display: inline-block;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 7px 16px;
    border-radius: 3px;
    margin-bottom: 22px;
}

.pm-stats-inline {
    display: flex;
    gap: 10px;
}

.pm-stat-block {
    flex: 1;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    padding: 12px 10px;
    text-align: center;
    background: #130e1a;
}

.pm-stat-num {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.pm-stat-label {
    display: block;
    font-size: 7px;
    color: #4a4a58;
    margin-top: 3px;
}

/* Review & Expertise Cards */
.pm-review-card {
    background: #131320;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 11px;
    padding: 14px 15px;
    margin-bottom: 12px;
}

.pm-stars {
    font-size: 9px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.pm-review-text {
    font-size: 9px;
    color: #8b8b9e;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 10px;
}

.pm-review-author {
    font-size: 7px;
    color: #4a4a58;
    font-weight: 600;
}

.pm-expertise-card {
    background: #131320;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 11px;
    padding: 14px 15px;
}

.pm-expertise-title {
    font-size: 9px;
    font-weight: 700;
    color: #edecf4;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.pm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pm-tag {
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.2);
    font-size: 8px;
    padding: 4px 9px;
    border-radius: 4px;
    color: #a5b4fc;
}

/* Search Bar */
.pm-search-bar {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 8px 13px;
    font-size: 8px;
    color: #4a4a58;
    margin-bottom: 16px;
}

/* Course Grid */
.pm-courses {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.pm-courses-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pm-course-card {
    background: #100d1e;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    overflow: hidden;
}

.pm-course-card--featured {
    border-color: rgba(139,92,246,.2);
    box-shadow: 0 0 14px rgba(124,58,237,.12);
}

.pm-course-img {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-course-body {
    padding: 10px 10px 12px;
}

.pm-course-name {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pm-course-meta {
    display: block;
    font-size: 7px;
    color: #4a4a58;
    margin-bottom: 7px;
}

.pm-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pm-course-rating {
    font-size: 7px;
    color: #f59e0b;
}

.pm-course-price {
    font-size: 9px;
    font-weight: 700;
}

.pm-footer-stats {
    display: flex;
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.pm-footer-stat {
    font-size: 8px;
    color: #4a4a58;
}

.pm-footer-stat strong {
    font-size: 9px;
    font-weight: 700;
}

/* Tags Row (MedPoint) */
.pm-tags-row {
    display: flex;
    gap: 7px;
    margin-bottom: 14px;
    overflow: hidden;
}

.pm-filter-tag {
    font-size: 8px;
    padding: 5px 12px;
    border-radius: 100px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--pm-glow, #0d1f1c);
    color: #4a6560;
    border: 1px solid rgba(var(--pm-accent-rgb, 16,185,129), .15);
}

.pm-filter-tag--active {
    background: linear-gradient(135deg, var(--pm-accent), var(--pm-accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Doctor Cards */
.pm-doctor-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.pm-doctor-card {
    background: #0c1a17;
    border: 1px solid rgba(16,185,129,.12);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-doctor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pm-doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pm-doctor-name {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 2px;
}

.pm-doctor-spec {
    display: block;
    font-size: 8px;
    margin-bottom: 4px;
}

.pm-doctor-detail {
    display: block;
    font-size: 7px;
    color: #4a6560;
}

.pm-doctor-badge {
    font-size: 7px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
    border: 1px solid;
}

.pm-stats-row {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(16,185,129,.1);
}

.pm-stat-item {
    flex: 1;
    text-align: center;
}

.pm-stat-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.pm-stat-desc {
    display: block;
    font-size: 7px;
    color: #4a6560;
    margin-top: 3px;
}

/* ================================================
   PHONE MOCKUP SYSTEM
   ================================================ */

.pm-phone {
    width: 188px;
    aspect-ratio: 390 / 844;
    background:
        linear-gradient(145deg, #30313a 0%, #070709 36%, #1b1c22 100%);
    border-radius: 31px;
    padding: 5px;
    box-shadow:
        0 24px 54px rgba(0,0,0,.5),
        0 8px 18px rgba(0,0,0,.35),
        inset 0 0 0 1px rgba(255,255,255,.18),
        inset 0 0 0 2px rgba(0,0,0,.42),
        0 0 28px rgba(99,102,241,.09);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    transform: rotate(-1.5deg);
}

.pm-phone::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -13px;
    height: 18px;
    border-radius: 999px;
    background: rgba(0,0,0,.46);
    filter: blur(13px);
    z-index: -1;
}

.pm-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 17px;
    background: #000;
    border-radius: 12px;
    z-index: 20;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.pm-phone-screen {
    border-radius: 27px;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: var(--font-sans);
    position: relative;
    background: #0f172a;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
/* hide scrollbar */
.pm-phone-screen::-webkit-scrollbar { display: none; }
.pm-phone-screen { -ms-overflow-style: none; scrollbar-width: none; }

.pm-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px;
    padding: 12px 17px 5px;
    font-size: 7.5px;
    font-weight: 800;
    color: #f8fafc;
    position: relative;
    z-index: 10;
}

.pm-phone-status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.pm-phone-status > span,
.pm-phone-status-icons {
    min-width: 44px;
}

.pm-phone-status-icons {
    justify-content: flex-end;
}

.pm-phone-status svg {
    max-width: 12px;
    height: auto;
}

.pm-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px 9px;
    gap: 8px;
}

.pm-phone-eyebrow {
    display: block;
    font-size: 6.5px;
    color: rgba(248,250,252,.54);
    margin-bottom: 1px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pm-phone-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    color: #f8fafc;
    line-height: 1.15;
}

.pm-phone-sub {
    display: block;
    font-size: 7.5px;
    margin-top: 2px;
    color: rgba(226,232,240,.62);
}

.pm-phone-timer {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 5px 8px;
    font-size: 7px;
    color: #f59e0b;
    font-weight: 700;
    white-space: nowrap;
}

.pm-app-booking .pm-phone-screen {
    background:
        linear-gradient(180deg, rgba(59,130,246,.16), rgba(15,23,42,0) 34%),
        #0f172a;
}

.pm-app-fitness .pm-phone-screen {
    background:
        linear-gradient(180deg, rgba(245,158,11,.14), rgba(15,15,15,0) 30%),
        #0b0b0c;
}

.pm-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(37,99,235,.38);
    flex: 0 0 auto;
}

.pm-phone .pm-avatar {
    width: 25px;
    height: 25px;
    display: grid;
    font-size: 7px;
}

.pm-service-card {
    margin: 0 13px 10px;
    padding: 10px 11px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.09);
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #f8fafc;
}

.pm-service-card strong,
.pm-service-card small,
.pm-service-card span,
.pm-service-label {
    display: block;
}

.pm-service-card strong {
    font-size: 10px;
    line-height: 1.2;
    margin: 2px 0 3px;
}

.pm-service-card small {
    font-size: 7px;
    color: rgba(226,232,240,.58);
}

.pm-service-card > span {
    font-size: 10px;
    font-weight: 800;
    color: #93c5fd;
}

.pm-service-label {
    font-size: 5.5px;
    color: rgba(226,232,240,.48);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em;
}

/* Date picker */
.pm-phone-dates {
    display: flex;
    gap: 6px;
    padding: 0 13px 11px;
    overflow: hidden;
}

.pm-date {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 6px 0;
    border-radius: 11px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
}

.pm-date--active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(59,130,246,.4);
}

.pm-date-day {
    display: block;
    font-size: 6px;
    color: #94a3b8;
    margin-bottom: 1px;
}

.pm-date--active .pm-date-day {
    color: rgba(255,255,255,.7);
}

.pm-date-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
}

.pm-date--active .pm-date-num {
    color: #fff;
}

/* Time slots */
.pm-phone-slots {
    padding: 0 13px 10px;
}

.pm-slot-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.pm-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pm-slot {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    text-align: center;
    padding: 10px 4px;
    font-size: 14px;
    color: #94a3b8;
}

.pm-slot--active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(59,130,246,.3);
}

.pm-slot--disabled {
    background: #131c27;
    border-color: rgba(255,255,255,.04);
    color: #334155;
    text-decoration: line-through;
}

.pm-slot-title {
    display: block;
    font-size: 7.5px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.pm-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.pm-slot {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    text-align: center;
    padding: 6px 3px;
    font-size: 7.5px;
    color: #94a3b8;
}

.pm-slot--active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(59,130,246,.3);
}

.pm-slot--disabled {
    background: #131c27;
    border-color: rgba(255,255,255,.04);
    color: #334155;
    text-decoration: line-through;
}

/* Phone CTA Button */
.pm-phone-cta {
    margin: 0 13px 9px;
    border-radius: 12px;
    text-align: center;
    padding: 10px;
    font-size: 8.5px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg,#60a5fa,#2563eb);
    box-shadow: 0 4px 16px rgba(59,130,246,.35);
    letter-spacing: 0;
}

.pm-checkout-row {
    margin: auto 13px 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(226,232,240,.65);
    font-size: 7px;
}

.pm-checkout-row strong {
    color: #f8fafc;
    font-size: 10px;
}

/* Phone Tab Bar */
.pm-phone-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 8px 9px 6px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(5,5,8,.26);
    margin-top: auto;
}

.pm-tab {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 6px;
    color: #334155;
    background: none;
    border: none;
    padding: 0;
    cursor: default;
}

.pm-tab--active {
    color: #3b82f6;
}

.pm-tab--muted svg {
    opacity: .4;
}

.pm-tab svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.pm-home-indicator {
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    margin: 0 auto 5px;
    flex: 0 0 auto;
}

.pm-workout-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 0 13px 8px;
}

.pm-workout-hero div {
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    padding: 9px 8px;
}

.pm-workout-hero span {
    display: block;
    color: rgba(255,255,255,.5);
    font-size: 6px;
    margin-bottom: 2px;
}

.pm-workout-hero strong {
    display: block;
    color: #fff;
    font-size: 10.5px;
}

/* Progress Ring (FitCore) */
.pm-phone-progress {
    text-align: center;
    padding: 3px 0 9px;
    position: relative;
}

.pm-progress-ring {
    width: 110px;
    height: 110px;
    display: inline-block;
}

.pm-progress-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -58%);
    text-align: center;
}

.pm-progress-pct {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.pm-progress-label {
    display: block;
    font-size: 10px;
    color: #555;
}

.pm-phone-mini-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    font-family: var(--font-sans);
    margin-bottom: 12px;
}

.pm-phone-mini-stats strong {
    font-size: 16px;
    font-weight: 700;
}

.pm-progress-ring {
    width: 76px;
    height: 76px;
    display: inline-block;
}

.pm-progress-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-57%, -62%);
    text-align: center;
}

.pm-progress-pct {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.pm-progress-label {
    display: block;
    font-size: 5px;
    color: #555;
}

.pm-phone-mini-stats {
    display: flex;
    justify-content: center;
    gap: 11px;
    font-size: 6px;
    font-family: var(--font-sans);
    margin-bottom: 7px;
}

.pm-phone-mini-stats strong {
    font-size: 10px;
    font-weight: 700;
}

/* Exercise List */
.pm-exercise-list {
    padding: 0 13px 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-exercise {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 8px 9px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pm-exercise--active {
    background: #f59e0b;
}

.pm-exercise-check {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #fff;
    flex-shrink: 0;
}

.pm-exercise--done {
    color: #fff;
}

.pm-exercise-name {
    font-size: 8.5px;
    font-weight: 600;
    display: block;
}

.pm-exercise-meta {
    font-size: 6.5px;
    display: block;
}

.pm-exercise-status {
    margin-left: auto;
    font-size: 6.5px;
    white-space: nowrap;
}

/* ================================================
   MOCKUP REFINEMENTS
   ================================================ */

.hm-url,
.pm-url,
.ios-status,
.pm-phone-status {
    display: none !important;
}

.hm-chrome::after,
.pm-chrome::after {
    content: "";
    display: block;
    height: 12px;
    width: 128px;
    margin-left: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.06);
}

.hm-browser {
    transform: none !important;
}

.hm-phone {
    right: -10px;
    bottom: -8px;
    width: 130px;
    transform: none !important;
}

.hm-safe-top {
    height: 18px;
}

.hm-app-head {
    padding: 26px 11px 8px;
}

.hm-app-card {
    margin: 0 9px 8px;
}

.hm-project-list {
    margin: 0 9px 8px;
}

.pm-phone {
    width: 194px;
    border-radius: 34px;
    padding: 6px;
    transform: none !important;
    box-shadow:
        0 26px 50px rgba(0,0,0,.36),
        0 6px 18px rgba(0,0,0,.22),
        inset 0 0 0 1px rgba(255,255,255,.16),
        inset 0 0 0 2px rgba(0,0,0,.42);
}

.pm-phone::before {
    left: 22px;
    right: 22px;
    bottom: -11px;
    height: 16px;
    background: rgba(0,0,0,.34);
}

.pm-phone-notch {
    width: 66px;
    height: 18px;
    top: 12px;
    border-radius: 999px;
}

.pm-phone-screen {
    border-radius: 28px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}

.pm-phone-header {
    padding: 40px 14px 10px !important;
}

.pm-phone-title {
    font-size: 13px;
    line-height: 1.08;
}

.pm-phone-sub {
    font-size: 7px;
}

.pm-phone-timer {
    padding: 5px 8px;
    font-size: 7px;
}

.pm-phone .pm-avatar {
    width: 26px;
    height: 26px;
}

.pm-phone-dates {
    gap: 7px;
    padding: 0 14px 12px;
}

.pm-date {
    flex: 1 1 0;
    min-width: 0;
    padding: 7px 0;
}

.pm-phone-slots {
    padding: 0 14px 10px;
}

.pm-slot-title {
    font-size: 7.5px;
    margin-bottom: 9px;
}

.pm-slots-grid {
    gap: 6px;
}

.pm-slot {
    font-size: 7.5px;
    padding: 7px 3px;
}

.pm-service-card,
.pm-workout-hero,
.pm-exercise-list {
    margin-left: 14px;
    margin-right: 14px;
}

.pm-service-card {
    margin-bottom: 11px;
}

.pm-checkout-row,
.pm-phone-cta {
    margin-left: 14px;
    margin-right: 14px;
}

.pm-phone-cta {
    padding: 10px;
    font-size: 8.5px;
}

.pm-phone-tabbar {
    padding: 8px 10px 6px;
}

.pm-tab {
    gap: 2px;
    font-size: 6px;
}

.pm-tab svg {
    width: 12px;
    height: 12px;
}

.pm-progress-ring {
    width: 74px;
    height: 74px;
}

.pm-workout-hero div {
    padding: 9px 8px;
}

.pm-exercise {
    padding: 9px;
}

.pm-exercise-name {
    font-size: 8px;
}

.pm-exercise-meta,
.pm-exercise-status {
    font-size: 6px;
}

.pm-consulting-pro {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    grid-template-rows: auto 1fr;
    gap: 8px 14px;
    padding: 14px 18px !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(248,113,113,.12), transparent 32%),
        linear-gradient(160deg, #120910, #090a0f 62%);
}

.pm-consulting-nav {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.pm-consulting-nav strong {
    color: #1f2937;
    font-size: 10px;
    letter-spacing: -.02em;
}

.pm-consulting-nav strong span {
    color: #e11d48;
}

.pm-consulting-nav div {
    display: flex;
    gap: 11px;
    color: #9ca3af;
    font-size: 6px;
    font-weight: 700;
}

.pm-consulting-copy {
    padding: 3px 2px 0;
}

.pm-consulting-copy .pm-headline {
    max-width: 260px;
    margin-bottom: 7px;
    font-size: 23px;
    line-height: 1;
}

.pm-consulting-copy .pm-subtext {
    max-width: 260px;
    margin-bottom: 9px;
    color: #9f9faf;
    font-size: 8px;
    line-height: 1.45;
}

.pm-consulting-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.pm-consulting-kpis div {
    border-radius: 10px;
    padding: 8px 9px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
}

.pm-consulting-kpis strong,
.pm-consulting-kpis span {
    display: block;
}

.pm-consulting-kpis strong {
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.pm-consulting-kpis span {
    font-size: 6px;
    color: #8f8fa0;
    line-height: 1.32;
}

.pm-consulting-aside {
    display: grid;
    gap: 6px;
}

.pm-consulting-quote,
.pm-consulting-list,
.pm-consulting-cta {
    border-radius: 14px;
}

.pm-consulting-quote,
.pm-consulting-list {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    padding: 9px 10px;
}

.pm-consulting-quote strong,
.pm-consulting-quote p,
.pm-consulting-quote span {
    display: block;
}

.pm-consulting-quote strong {
    color: #fff;
    font-size: 8.5px;
    line-height: 1.25;
    margin-bottom: 5px;
}

.pm-consulting-quote p {
    color: #b3b3c1;
    font-size: 6.5px;
    line-height: 1.35;
    margin-bottom: 5px;
}

.pm-consulting-quote span {
    color: #74748a;
    font-size: 5.8px;
    font-weight: 700;
}

.pm-consulting-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.pm-consulting-list span {
    color: #fca5a5;
    font-size: 6px;
    font-weight: 700;
}

.pm-consulting-cta {
    padding: 7px 10px;
    background: linear-gradient(135deg, #fb7185, #e11d48);
    color: #fff;
    font-size: 6.7px;
    font-weight: 800;
    text-align: center;
}

.pm-academy-pro {
    background:
        radial-gradient(circle at 78% 16%, rgba(168,85,247,.18), transparent 28%),
        linear-gradient(160deg, #0f0b1d, #0a0a10 58%);
}

.pm-academy-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    margin-bottom: 14px;
}

.pm-academy-copy span {
    display: block;
    color: #c4b5fd;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.pm-academy-copy h4 {
    color: #fff;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.03em;
    max-width: 300px;
    margin-bottom: 9px;
}

.pm-academy-copy p {
    color: #a3a3b8;
    font-size: 10px;
    line-height: 1.6;
    max-width: 300px;
}

.pm-academy-highlight {
    align-self: start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.pm-academy-highlight span,
.pm-academy-highlight strong,
.pm-academy-highlight small {
    display: block;
}

.pm-academy-highlight span {
    color: #a78bfa;
    font-size: 8px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pm-academy-highlight strong {
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
}

.pm-academy-highlight small {
    color: #8f8fa6;
    font-size: 8px;
    line-height: 1.5;
}

.pm-academy-tracks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.pm-academy-track {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
}

.pm-academy-track strong,
.pm-academy-track span,
.pm-academy-track em {
    display: block;
}

.pm-academy-track strong {
    color: #fff;
    font-size: 10px;
    margin-bottom: 6px;
}

.pm-academy-track span {
    color: #9f9fb5;
    font-size: 8px;
    line-height: 1.45;
    min-height: 24px;
}

.pm-academy-track em {
    margin-top: 10px;
    color: #c4b5fd;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
}

.pm-academy-stats {
    display: flex;
    gap: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.pm-academy-stats span {
    color: #8f8fa5;
    font-size: 8px;
}

.pm-academy-stats strong {
    color: #fff;
    font-size: 10px;
    margin-right: 4px;
}

/* --------------------------------
   Pro Mockup Layer
   -------------------------------- */

.hm-phone--pro {
    width: 158px;
    right: 18px;
    bottom: -18px;
    padding: 0;
    background: transparent;
    border-radius: 34px;
    box-shadow: none;
    transform: none !important;
}

.hm-phone--pro::before {
    content: "";
    position: absolute;
    inset: 20px -24px -18px -30px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 38% 42%, rgba(99,102,241,.24), transparent 52%),
        linear-gradient(135deg, rgba(129,140,248,.11), rgba(14,14,20,0) 58%);
    filter: blur(16px);
    opacity: .9;
    z-index: -1;
}

.hm-phone--pro .hm-side,
.hm-phone--pro .hm-di {
    display: none;
}

.hm-pro-device {
    position: relative;
    aspect-ratio: 9 / 19.45;
    border-radius: 35px;
    padding: 5px;
    background:
        linear-gradient(145deg, #424651 0%, #151821 20%, #030407 50%, #242833 100%);
    box-shadow:
        0 28px 56px rgba(0,0,0,.48),
        0 8px 18px rgba(99,102,241,.12),
        inset 0 0 0 1px rgba(255,255,255,.2),
        inset 0 0 0 2px rgba(0,0,0,.5);
}

.hm-pro-device::before,
.hm-pro-device::after {
    content: "";
    position: absolute;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.06));
    opacity: .75;
}

.hm-pro-device::before {
    left: -1px;
    top: 62px;
    height: 42px;
}

.hm-pro-device::after {
    right: -1px;
    top: 92px;
    height: 48px;
}

.hm-pro-island {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 13px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 68% 50%, rgba(40,45,58,.72) 0 2px, transparent 2.5px),
        #020204;
    box-shadow: 0 0 0 1px rgba(255,255,255,.035), 0 3px 9px rgba(0,0,0,.42);
    z-index: 5;
}

.hm-pro-screen {
    background:
        radial-gradient(circle at 50% 0%, rgba(129,140,248,.2), transparent 34%),
        linear-gradient(180deg, rgba(7,7,11,.08), rgba(7,7,11,.72) 74%),
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,0) 18%),
        #090a12;
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.075);
}

.hm-pro-screen::before,
.hm-pro-screen::after {
    position: absolute;
    top: 15px;
    z-index: 4;
    color: rgba(255,255,255,.9);
    font-size: 6.5px;
    font-weight: 700;
    line-height: 1;
}

.hm-pro-screen::before {
    content: "9:41";
    left: 15px;
}

.hm-pro-screen::after {
    content: "";
    right: 15px;
    width: 20px;
    height: 7px;
    border-radius: 2px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.86) 0 5px, transparent 5px 7px, rgba(255,255,255,.86) 7px 12px, transparent 12px 14px, rgba(255,255,255,.86) 14px 20px);
    opacity: .78;
}

.hm-pro-safe {
    height: 39px;
}

.hm-pro-head {
    padding: 0 12px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hm-pro-head span {
    display: block;
    color: rgba(236,239,255,.6);
    font-size: 4.4px;
    letter-spacing: .1em;
    font-weight: 700;
    text-transform: uppercase;
}

.hm-pro-head strong {
    display: block;
    color: #fff;
    font-size: 9.7px;
    line-height: 1.05;
    margin-top: 3px;
    letter-spacing: -.025em;
}

.hm-pro-chip {
    border: 1px solid rgba(129,140,248,.35);
    background: rgba(129,140,248,.1);
    border-radius: 999px;
    min-width: 34px;
    padding: 3px 6px;
    color: #fff;
    font-size: 5.3px;
    font-weight: 700;
    font-family: inherit;
}

.hm-pro-highlight {
    margin: 0 10px 8px;
    border-radius: 16px;
    padding: 10px 10px 11px;
    background:
        radial-gradient(circle at 92% 0%, rgba(139,92,246,.34), transparent 40%),
        linear-gradient(145deg, rgba(99,102,241,.22), rgba(14,14,20,.78)),
        rgba(255,255,255,.045);
    border: 1px solid rgba(129,140,248,.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hm-pro-highlight small,
.hm-pro-highlight strong,
.hm-pro-highlight p {
    display: block;
}

.hm-pro-highlight small {
    color: rgba(236,239,255,.6);
    font-size: 4.5px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
}

.hm-pro-highlight strong {
    color: #fff;
    font-size: 11.8px;
    line-height: 1.08;
    margin: 5px 0 4px;
    letter-spacing: -.03em;
}

.hm-pro-highlight p {
    color: rgba(236,239,255,.55);
    font-size: 4.6px;
    line-height: 1.45;
}

.hm-pro-list {
    margin: 0 10px 8px;
    display: grid;
    gap: 5px;
}

.hm-pro-list article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    align-items: center;
    min-height: 31px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(99,102,241,.08), rgba(255,255,255,.035)),
        rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.065);
    padding: 7px 8px;
}

.hm-pro-list strong,
.hm-pro-list span,
.hm-pro-list em {
    display: block;
}

.hm-pro-list strong {
    color: #fff;
    font-size: 5.75px;
    line-height: 1.1;
    letter-spacing: -.015em;
}

.hm-pro-list span {
    color: rgba(236,239,255,.44);
    font-size: 4.35px;
    margin-top: 2px;
    line-height: 1.2;
}

.hm-pro-list em {
    color: #a5b4fc;
    font-style: normal;
    font-weight: 650;
    font-size: 4.7px;
}

.hm-pro-footer {
    margin-top: auto;
    padding: 8px 11px 7px;
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex;
    justify-content: center;
    gap: 5px;
}

.hm-pro-footer span {
    width: 15px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
}

.hm-pro-footer .active {
    background: #a5b4fc;
}

.hm-phone--pro .hm-home {
    width: 42px;
    height: 3px;
    margin: 0 auto 7px;
    background: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
    .hm-phone--pro {
        width: 116px;
        right: 4px;
        bottom: -12px;
    }

    .hm-phone--pro::before {
        inset: 18px -12px -12px -18px;
        filter: blur(12px);
    }

    .hm-pro-device {
        border-radius: 28px;
        padding: 4px;
    }

    .hm-pro-island {
        top: 10px;
        width: 34px;
        height: 10px;
    }

    .hm-pro-screen {
        border-radius: 24px;
    }

    .hm-pro-screen::before,
    .hm-pro-screen::after {
        display: none;
    }

    .hm-pro-safe {
        height: 27px;
    }

    .hm-pro-head {
        padding: 0 8px 6px;
        align-items: flex-start;
    }

    .hm-pro-head span {
        font-size: 3.5px;
        letter-spacing: .08em;
    }

    .hm-pro-head strong {
        font-size: 7.3px;
        line-height: 1.05;
        margin-top: 2px;
    }

    .hm-pro-chip {
        min-width: 25px;
        padding: 2px 4px;
        font-size: 4px;
        line-height: 1.1;
    }

    .hm-pro-highlight {
        margin: 0 7px 6px;
        border-radius: 12px;
        padding: 7px;
    }

    .hm-pro-highlight small {
        font-size: 3.6px;
    }

    .hm-pro-highlight strong {
        font-size: 8.6px;
        margin: 3px 0 2px;
    }

    .hm-pro-highlight p {
        font-size: 3.7px;
        line-height: 1.35;
    }

    .hm-pro-list {
        margin: 0 7px 6px;
        gap: 4px;
    }

    .hm-pro-list article {
        min-height: 24px;
        padding: 5px 6px;
        border-radius: 9px;
    }

    .hm-pro-list strong {
        font-size: 4.8px;
    }

    .hm-pro-list span,
    .hm-pro-list em {
        font-size: 3.6px;
    }
}

.pm-phone--clean {
    width: 204px;
    transform: none !important;
    border-radius: 34px;
    padding: 6px;
    box-shadow:
        0 24px 48px rgba(0,0,0,.36),
        inset 0 0 0 1px rgba(255,255,255,.16),
        inset 0 0 0 2px rgba(0,0,0,.4);
}

.pm-phone--clean .pm-phone-notch {
    width: 72px;
    height: 18px;
    top: 12px;
    border-radius: 999px;
}

.pm-phone--clean .pm-phone-screen {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}

.pm-phone--clean .pm-phone-screen::before,
.pm-phone--clean .pm-phone-screen::after {
    content: "";
    position: absolute;
    top: 14px;
    z-index: 22;
    pointer-events: none;
}

.pm-phone--clean .pm-phone-screen::before {
    content: "9:41";
    left: 17px;
    color: rgba(255,255,255,.88);
    font-size: 6.6px;
    font-weight: 750;
    line-height: 1;
}

.pm-phone--clean .pm-phone-screen::after {
    right: 16px;
    width: 20px;
    height: 7px;
    border-radius: 2px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.86) 0 5px, transparent 5px 7px, rgba(255,255,255,.86) 7px 12px, transparent 12px 14px, rgba(255,255,255,.86) 14px 20px);
    opacity: .75;
}

.ios-app {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}

.ios-scroll {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 14px 8px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    mask-image: linear-gradient(180deg, transparent 0, #000 34px, #000 calc(100% - 18px), transparent 100%);
}

.ios-scroll::-webkit-scrollbar {
    display: none;
}

.ios-scroll::after {
    content: "";
    position: absolute;
    top: 62px;
    right: 4px;
    width: 2px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255,255,255,.26);
    opacity: .42;
    pointer-events: none;
    animation: iosThumbDrift 7s ease-in-out infinite;
}

.pm-phone--clean:hover .ios-scroll > * {
    transform: translateY(-3px);
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

@supports (animation-timeline: view()) {
    .pm-phone--clean .ios-scroll > * {
        animation: iosContentPeek linear both;
        animation-timeline: view();
        animation-range: entry 18% cover 62%;
    }
}

.ios-safe {
    height: 40px;
    flex: 0 0 auto;
}

.ios-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
    gap: 10px;
}

.ios-top small,
.ios-top h4 {
    display: block;
}

.ios-top small {
    color: rgba(235,241,255,.58);
    font-size: 6.2px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    margin-bottom: 2px;
}

.ios-top h4 {
    color: #fff;
    font-size: 12.5px;
    line-height: 1.1;
}

.ios-top button {
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    min-width: 42px;
    padding: 5px 9px;
    color: #fff;
    font-size: 6.2px;
    font-weight: 800;
    font-family: inherit;
}

.ios-app--booking {
    background:
        radial-gradient(circle at 50% 0%, rgba(96,165,250,.24), transparent 34%),
        linear-gradient(180deg, rgba(59,130,246,.18), rgba(15,23,42,0) 28%),
        #0f172a;
}

.ios-card {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.09);
}

.ios-service {
    padding: 10px;
    margin-bottom: 8px;
}

.ios-service span,
.ios-service strong,
.ios-service p {
    display: block;
}

.ios-service span {
    color: rgba(219,234,254,.78);
    font-size: 6.2px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    margin-bottom: 4px;
}

.ios-service strong {
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.ios-service p {
    color: rgba(235,241,255,.6);
    font-size: 6.2px;
}

.ios-section {
    margin-bottom: 8px;
}

.ios-section p {
    color: rgba(226,232,240,.72);
    font-size: 6.2px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.ios-day-grid,
.ios-time-grid {
    display: grid;
    gap: 6px;
}

.ios-day-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ios-time-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ios-day-grid button,
.ios-time-grid button {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    background: rgba(255,255,255,.06);
    color: #dbe4f8;
    font-size: 6.3px;
    line-height: 1.2;
    padding: 6px 3px;
    font-family: inherit;
    text-align: center;
}

.ios-day-grid button strong {
    display: block;
    margin-top: 1px;
    font-size: 8.7px;
}

.ios-day-grid button.active,
.ios-time-grid button.active {
    background: linear-gradient(135deg,#60a5fa,#2563eb);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
}

.ios-time-grid button.muted {
    opacity: .42;
    text-decoration: line-through;
}

.ios-summary {
    margin-top: 2px;
    padding: 8px 0 10px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.ios-summary div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ios-summary span {
    color: rgba(235,241,255,.62);
    font-size: 6px;
}

.ios-summary strong {
    color: #fff;
    font-size: 10px;
}

.ios-summary button {
    width: 100%;
    border: none;
    border-radius: 11px;
    padding: 9px;
    background: linear-gradient(135deg,#60a5fa,#2563eb);
    color: #fff;
    font-size: 7.4px;
    font-weight: 800;
    font-family: inherit;
}

.ios-staff article {
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 12px;
    padding: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
}

.ios-staff span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#60a5fa,#2563eb);
    color: #fff;
    font-size: 6px;
    font-weight: 800;
    flex: 0 0 auto;
}

.ios-staff strong,
.ios-staff em {
    display: block;
}

.ios-staff strong {
    color: #fff;
    font-size: 7px;
    line-height: 1.15;
}

.ios-staff em {
    color: rgba(235,241,255,.56);
    font-size: 5.5px;
    font-style: normal;
    margin-top: 1px;
}

.ios-app--fitness {
    background:
        radial-gradient(circle at 50% 0%, rgba(251,146,60,.28), transparent 32%),
        linear-gradient(180deg, rgba(249,115,22,.2), rgba(11,11,12,0) 29%),
        #0b0b0c;
}

.ios-app--fitness .ios-safe {
    height: 43px;
}

.ios-app--fitness .ios-top h4 {
    font-size: 11.4px;
    max-width: 86px;
}

.ios-metric-grid {
    margin-bottom: 9px;
    padding: 9px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ios-metric-grid div span,
.ios-metric-grid div strong {
    display: block;
}

.ios-metric-grid div span {
    color: rgba(255,255,255,.56);
    font-size: 6px;
    margin-bottom: 2px;
}

.ios-metric-grid div strong {
    color: #fff;
    font-size: 10px;
}

.ios-ring {
    width: 76px;
    height: 76px;
    margin: 0 auto 9px;
    border-radius: 50%;
    background:
        conic-gradient(#f97316 0 68%, rgba(255,255,255,.12) 68% 100%);
    padding: 7px;
}

.ios-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #121216;
    border: 1px solid rgba(255,255,255,.1);
    display: grid;
    place-items: center;
    text-align: center;
}

.ios-ring-inner strong,
.ios-ring-inner span {
    display: block;
}

.ios-ring-inner strong {
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

.ios-ring-inner span {
    color: rgba(255,255,255,.55);
    font-size: 5.5px;
    margin-top: 1px;
}

.ios-workout-list {
    display: grid;
    gap: 5px;
    margin-bottom: 8px;
}

.ios-workout-list article {
    border-radius: 10px;
    padding: 7px 9px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}

.ios-workout-list article strong,
.ios-workout-list article span {
    display: block;
}

.ios-workout-list article strong {
    font-size: 8px;
    color: #fff;
    margin-bottom: 2px;
}

.ios-workout-list article span {
    font-size: 6px;
    color: rgba(255,255,255,.52);
}

.ios-workout-list .done strong {
    color: #d1d5db;
}

.ios-workout-list .active {
    background: linear-gradient(135deg,#f59e0b,#f97316);
    border-color: transparent;
}

.ios-workout-list .active strong,
.ios-workout-list .active span {
    color: #251607;
}

.ios-summary--fit button {
    background: linear-gradient(135deg,#f97316,#fb923c);
}

.ios-summary--fit div strong {
    color: #fed7aa;
}

.ios-tabbar {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 7px 24px 6px;
    display: flex;
    justify-content: space-between;
    flex: 0 0 auto;
    background: rgba(5,8,14,.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -8px 18px rgba(0,0,0,.16);
}

.ios-tabbar span {
    width: 11px;
    height: 11px;
    border-radius: 4px;
    background: rgba(255,255,255,.16);
}

.ios-tabbar .active {
    background: #60a5fa;
}

.ios-app--fitness .ios-tabbar .active {
    background: #fb923c;
}

.ios-app--fitness .ios-summary {
    padding-bottom: 9px;
}

@keyframes iosContentPeek {
    from { transform: translateY(3px); }
    to { transform: translateY(-6px); }
}

@keyframes iosThumbDrift {
    0%, 100% {
        transform: translateY(0);
        opacity: .24;
    }
    45% {
        transform: translateY(14px);
        opacity: .5;
    }
}

.pm-consulting-pro {
    background:
        radial-gradient(circle at 12% 16%, rgba(190,24,93,.16), transparent 34%),
        linear-gradient(152deg, #fcf4ef, #f8ebe2 54%, #f0e1d7) !important;
}

.pm-consulting-pro .pm-headline,
.pm-consulting-pro .pm-subtext,
.pm-consulting-pro .pm-consulting-kpis strong,
.pm-consulting-pro .pm-consulting-quote strong,
.pm-consulting-pro .pm-consulting-cta {
    color: #1f2937 !important;
}

.pm-consulting-pro .pm-subtext,
.pm-consulting-pro .pm-consulting-kpis span,
.pm-consulting-pro .pm-consulting-quote p,
.pm-consulting-pro .pm-consulting-quote span,
.pm-consulting-pro .pm-consulting-list span {
    color: #6b7280 !important;
}

.pm-consulting-pro .pm-consulting-kpis div,
.pm-consulting-pro .pm-consulting-quote,
.pm-consulting-pro .pm-consulting-list span {
    background: rgba(255,255,255,.76);
    border-color: rgba(148,163,184,.24);
}

@media (max-width: 768px) {
    .pm-consulting-pro {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px !important;
    }

    .pm-consulting-nav div {
        display: none;
    }

    .pm-consulting-copy .pm-headline {
        max-width: 220px;
        font-size: 21px;
        line-height: 1.04;
    }

    .pm-consulting-copy .pm-subtext {
        max-width: 230px;
        margin-bottom: 10px;
    }

    .pm-consulting-kpis {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .pm-consulting-kpis div {
        padding: 8px 7px;
    }

    .pm-consulting-aside {
        grid-template-columns: 1fr;
    }

    .pm-consulting-list {
        display: none;
    }

    .pm-consulting-cta {
        padding: 8px 10px;
    }
}

.pm-academy-pro {
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
        radial-gradient(circle at 82% 14%, rgba(236,72,153,.32), transparent 31%),
        radial-gradient(circle at 12% 82%, rgba(99,102,241,.3), transparent 36%),
        linear-gradient(145deg, #130b2d, #251650 52%, #3b1e6d) !important;
    background-size: 26px 26px, 26px 26px, auto, auto, auto;
    padding: 16px 18px !important;
}

.pm-academy-pro .pm-nav {
    padding-bottom: 9px;
    margin-bottom: 11px;
    border-bottom-color: rgba(233,213,255,.14);
}

.pm-academy-pro .pm-badge {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(233,213,255,.26) !important;
    box-shadow: 0 8px 20px rgba(168,85,247,.18);
}

.pm-academy-pro .pm-academy-hero {
    grid-template-columns: 1.06fr .94fr;
    gap: 10px;
    margin-bottom: 10px;
}

.pm-academy-pro .pm-academy-copy h4 {
    font-size: 19px;
    line-height: 1.03;
    max-width: 250px;
    margin-bottom: 7px;
}

.pm-academy-pro .pm-academy-copy p {
    max-width: 250px;
    font-size: 8.2px;
    line-height: 1.45;
}

.pm-academy-pro .pm-academy-copy span {
    font-size: 6.4px;
    margin-bottom: 6px;
}

.pm-academy-pro .pm-academy-highlight {
    padding: 11px;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 18px 36px rgba(29,16,70,.18);
}

.pm-academy-pro .pm-academy-highlight span {
    font-size: 6.4px;
    margin-bottom: 4px;
}

.pm-academy-pro .pm-academy-highlight strong {
    font-size: 18px;
    margin-bottom: 4px;
}

.pm-academy-pro .pm-academy-highlight small {
    font-size: 6.5px;
    line-height: 1.35;
}

.pm-academy-pro .pm-academy-tracks {
    gap: 8px;
    margin-bottom: 10px;
}

.pm-academy-pro .pm-academy-track {
    padding: 10px;
    border-radius: 13px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.pm-academy-pro .pm-academy-track strong {
    font-size: 8.2px;
    margin-bottom: 4px;
}

.pm-academy-pro .pm-academy-track span {
    font-size: 6.3px;
    min-height: 20px;
}

.pm-academy-pro .pm-academy-track em {
    margin-top: 6px;
    font-size: 8px;
}

.pm-academy-pro .pm-academy-stats {
    gap: 12px;
    padding-top: 8px;
}

.pm-academy-pro .pm-academy-stats span {
    font-size: 6.6px;
}

.pm-academy-pro .pm-academy-stats strong {
    font-size: 8.5px;
}

.pm-academy-pro .pm-academy-copy span,
.pm-academy-pro .pm-academy-highlight span,
.pm-academy-pro .pm-academy-track span,
.pm-academy-pro .pm-academy-highlight small,
.pm-academy-pro .pm-academy-stats span {
    color: rgba(233,213,255,.78) !important;
}

.pm-academy-pro .pm-academy-copy h4,
.pm-academy-pro .pm-academy-highlight strong,
.pm-academy-pro .pm-academy-track strong,
.pm-academy-pro .pm-academy-track em,
.pm-academy-pro .pm-academy-stats strong,
.pm-academy-pro .pm-brand-name {
    color: #f8f5ff !important;
}

.pm-academy-pro .pm-academy-highlight,
.pm-academy-pro .pm-academy-track {
    background: rgba(255,255,255,.1);
    border-color: rgba(233,213,255,.28);
}

.pm-medpoint-pro {
    background:
        radial-gradient(circle at 78% 14%, rgba(16,185,129,.18), transparent 30%),
        radial-gradient(circle at 12% 82%, rgba(14,165,233,.12), transparent 34%),
        linear-gradient(160deg, #f8fffb, #edfdf5 56%, #dff7eb) !important;
    padding: 16px 18px !important;
}

.pm-medpoint-pro .pm-nav {
    padding-bottom: 9px;
    margin-bottom: 10px;
    border-bottom-color: rgba(6,95,70,.1);
}

.pm-medpoint-pro .pm-logo {
    border-radius: 9px;
    box-shadow: 0 10px 22px rgba(5,150,105,.18);
}

.pm-medpoint-pro .pm-btn-sm {
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(16,185,129,.2);
}

.pm-medpoint-pro .pm-med-hero {
    grid-template-columns: 1.04fr .96fr;
    gap: 12px;
}

.pm-medpoint-pro .pm-med-copy > span {
    font-size: 6.5px;
    margin-bottom: 6px;
}

.pm-medpoint-pro .pm-med-copy h4 {
    max-width: 255px;
    font-size: 19px;
    line-height: 1.03;
    margin-bottom: 7px;
}

.pm-medpoint-pro .pm-med-copy p {
    max-width: 245px;
    font-size: 8px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.pm-medpoint-pro .pm-med-trust {
    max-width: 240px;
    gap: 4px 7px;
}

.pm-medpoint-pro .pm-med-trust strong {
    font-size: 17px;
}

.pm-medpoint-pro .pm-med-trust span {
    font-size: 6.4px;
}

.pm-medpoint-pro .pm-med-panel {
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(6,95,70,.12), inset 0 1px 0 rgba(255,255,255,.65);
}

.pm-medpoint-pro .pm-med-panel-head {
    margin-bottom: 7px;
}

.pm-medpoint-pro .pm-med-panel-head span {
    font-size: 6.5px;
}

.pm-medpoint-pro .pm-med-panel-head strong {
    font-size: 13px;
}

.pm-medpoint-pro .pm-med-doctor {
    gap: 8px;
    padding: 7px;
    border-radius: 14px;
    margin-bottom: 7px;
}

.pm-medpoint-pro .pm-med-doctor i {
    width: 30px;
    height: 30px;
    font-size: 9px;
}

.pm-medpoint-pro .pm-med-doctor strong {
    font-size: 8.5px;
}

.pm-medpoint-pro .pm-med-doctor span {
    font-size: 6.4px;
}

.pm-medpoint-pro .pm-med-slots {
    gap: 6px;
    margin-bottom: 7px;
}

.pm-medpoint-pro .pm-med-slots span {
    padding: 5px 0;
    font-size: 6.5px;
}

.pm-medpoint-pro .pm-med-cta {
    padding: 7px;
    border-radius: 999px;
    font-size: 7.5px;
}

.pm-medpoint-pro .pm-brand-name,
.pm-medpoint-pro .pm-med-copy h4,
.pm-medpoint-pro .pm-med-trust strong,
.pm-medpoint-pro .pm-med-panel-head strong,
.pm-medpoint-pro .pm-med-doctor strong,
.pm-medpoint-pro .pm-med-services strong {
    color: #065f46 !important;
}

.pm-medpoint-pro .pm-med-copy span,
.pm-medpoint-pro .pm-med-copy p,
.pm-medpoint-pro .pm-med-trust span,
.pm-medpoint-pro .pm-med-panel-head span,
.pm-medpoint-pro .pm-med-doctor span,
.pm-medpoint-pro .pm-med-services span,
.pm-medpoint-pro .pm-med-nav {
    color: rgba(6,95,70,.66) !important;
}

.pm-medpoint-pro .pm-med-panel,
.pm-medpoint-pro .pm-med-doctor,
.pm-medpoint-pro .pm-med-slots span {
    background: rgba(255,255,255,.78);
    border-color: rgba(16,185,129,.22);
}

.pm-medpoint-pro .pm-med-slots .active {
    background: #10b981;
    color: #ecfdf5 !important;
}

/* ================================================
   PORTFOLIO RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .pm-metrics-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pm-details-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-preview { height: auto !important; min-height: 300px; padding: 16px; }
    .portfolio-item.large .portfolio-preview { height: auto !important; min-height: 400px; }
    .portfolio-preview.pm-preview--phone { height: auto !important; min-height: 360px; padding: 28px 16px; }
    .pm-body--split { flex-direction: column; }
    .pm-split--left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.05); }
    .pm-metrics-4 { grid-template-columns: repeat(2, 1fr); }
    .pm-courses-3 { grid-template-columns: 1fr; }
    .pm-details-row { grid-template-columns: 1fr; }
    .pm-browser { width: 100%; max-width: 100%; }
    .pm-phone { width: 168px; transform: none; margin-top: 0; margin-bottom: 0; }
    .pm-phone--clean { width: 186px; }
    .portfolio-filters { flex-wrap: wrap; }
    .filter-btn { font-size: .8rem; padding: 7px 18px; }
}

/* ================================================
   PROCESS
   ================================================ */

.process {
    padding: 112px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,.07) 0%, transparent 65%);
    pointer-events: none;
}

.process-steps {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(to bottom, var(--border), rgba(99,102,241,.3), var(--border));
}

.process-step {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
    transition: all var(--transition);
}

.step-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-3);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-2);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.process-step:hover .step-number {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(99,102,241,.4);
    font-size: .875rem;
}

.step-content {
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -.015em;
    color: var(--text);
    transition: color var(--transition);
}

.process-step:hover .step-content h3 { color: var(--accent-3); }

.step-content p {
    font-size: .9375rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials {
    padding: 112px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: rgba(99,102,241,.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--shadow-glow);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: .8;
    color: rgba(99,102,241,.15);
    margin-bottom: 16px;
    display: block;
    font-style: italic;
    letter-spacing: -.02em;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: .9375rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 40px; height: 40px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(99,102,241,.3);
}

.testimonial-author strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: .8125rem;
    color: var(--text-3);
}

/* ================================================
   CTA
   ================================================ */

.cta-section {
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, #12122a 0%, #0e0e1e 50%, #12122a 100%);
    border: 1px solid rgba(99,102,241,.25);
    border-radius: var(--r-2xl);
    padding: 88px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(99,102,241,.3) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner .section-tag {
    display: inline-flex;
    margin-bottom: 24px;
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 18px;
    position: relative;
}

.cta-inner p {
    font-size: 1.0625rem;
    color: var(--text-2);
    margin-bottom: 36px;
    line-height: 1.7;
    position: relative;
}

/* ================================================
   CONTACT
   ================================================ */

.contact {
    padding: 112px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 18px; }

.contact-info > p {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg);
    transition: all var(--transition);
}

.contact-channel:hover {
    border-color: rgba(99,102,241,.3);
    background: rgba(99,102,241,.05);
    transform: translateX(4px);
}

.channel-icon {
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.2);
    border-radius: var(--r-sm);
    color: var(--accent-2);
    flex-shrink: 0;
    transition: all var(--transition);
}

.contact-channel:hover .channel-icon {
    background: rgba(99,102,241,.15);
    border-color: rgba(99,102,241,.35);
}

.contact-channel strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-channel span {
    font-size: .8125rem;
    color: var(--text-2);
}

.channel-arrow {
    margin-left: auto;
    color: var(--text-3);
    flex-shrink: 0;
    transition: all var(--transition);
}

.contact-channel:hover .channel-arrow {
    color: var(--accent-2);
    transform: translateX(3px);
}

/* Form */
.contact-form-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 8px;
    letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--text);
    background: var(--bg-input);
    border: 1px solid var(--border-2);
    border-radius: var(--r-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(99,102,241,.5);
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 108px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b8b9e' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #0e0e14;
    color: var(--text);
}

/* ================================================
   FOOTER
   ================================================ */

.site-footer {
    background: #040407;
    color: var(--text);
    padding: 72px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(99,102,241,.07) 0%, transparent 65%);
    pointer-events: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.footer-brand { max-width: 300px; }

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
    font-size: .875rem;
    color: var(--text-3);
    line-height: 1.7;
}

.footer-links { display: flex; gap: 72px; }

.footer-col h4 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-3);
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    font-size: .875rem;
    color: var(--text-3);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--text-2); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: .8125rem;
    color: var(--text-3);
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8125rem;
    color: var(--text-3);
    transition: color var(--transition);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--bg-card);
}

.back-to-top:hover {
    color: var(--text-2);
    border-color: var(--border-2);
    background: var(--bg-elevated);
}

/* ================================================
   ANIMATIONS
   ================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 52px; }
    .hero-title { font-size: 2.875rem; }
    .hero-visual { order: 1; }
    .hero-mockup-wrap { max-width: 480px; margin: 0 auto; }

    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-layout { grid-template-columns: 1fr; gap: 52px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item.large { grid-column: 1; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; gap: 52px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .cta-inner { padding: 60px 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .main-nav {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(7,7,11,.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 28px;
        gap: 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,.5);
        z-index: 999;
    }

    .main-nav.open { display: flex; }
    .main-nav a { font-size: 1rem; color: var(--text-2); }

    .btn-header { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 120px 0 64px; }
    .hero-title { font-size: 2.25rem; }
    .hero-stats { gap: 0; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .stat { padding: 0 20px; }
    .stat:first-child { padding-left: 0; }

    .section-title { font-size: 2.125rem; }

    .services, .about, .portfolio, .process, .testimonials, .contact {
        padding: 80px 0;
    }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 24px; }

    .cta-inner { padding: 48px 28px; }
    .cta-inner h2 { font-size: 2rem; }

    .footer-links { gap: 40px; }

    .clients-label-wrap { padding: 0 20px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-desc { font-size: .98rem; line-height: 1.65; }
    .hero-stats { flex-direction: row; }
    .stat-divider { display: none; }
    .stat { padding: 0 16px 0 0; }
    .section-title { font-size: 1.875rem; }
    .process-step { gap: 20px; }
    .step-number { width: 46px; height: 46px; font-size: .875rem; }
    .process-steps::before { left: 22px; }
    .cta-inner h2 { font-size: 1.75rem; }
    .footer-links { flex-direction: column; gap: 32px; }
}
