/* ============================================================
   MEDIACLPRO THEME — MAIN CSS
   Premium Clinic Presence Studio
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* Colors — overridden by dynamic PHP vars from admin */
    --color-bg:           #0A0D14;
    --color-surface:      #111827;
    --color-surface-2:    #1a2235;
    --color-border:       rgba(248, 250, 252, 0.06);
    --color-border-light: rgba(248, 250, 252, 0.10);
    --color-text:         #F8FAFC;
    --color-muted:        #94A3B8;
    --color-muted-2:      #64748B;
    --color-accent:       #3B82F6;
    --color-accent-glow:  rgba(59, 130, 246, 0.15);
    --color-amber:        #F59E0B;
    --color-amber-glow:   rgba(245, 158, 11, 0.12);
    --color-success:      #22C55E;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing scale */
    --space-xs:   0.25rem;
    --space-sm:   0.5rem;
    --space-md:   1rem;
    --space-lg:   1.5rem;
    --space-xl:   2rem;
    --space-2xl:  3rem;
    --space-3xl:  4rem;
    --space-4xl:  6rem;
    --space-5xl:  8rem;

    /* Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;

    /* Transitions */
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:cubic-bezier(0.45, 0, 0.55, 1);
    --duration:   0.7s;
    --duration-fast: 0.3s;

    /* Container */
    --container:  1100px;
    --gutter:     1.5rem;

    /* Z-index layers */
    --z-base:     1;
    --z-card:     10;
    --z-sticky:   100;
    --z-float:    200;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: rgba(59, 130, 246, 0.3); color: var(--color-text); }

/* ============================================================
   LAYOUT
   ============================================================ */
.mclpro-main { overflow: hidden; }

.mclpro-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: var(--z-base);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.mclpro-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    max-width: 18ch;
}

.mclpro-section-headline,
.mclpro-reality-headline,
.mclpro-behavior-headline,
.mclpro-why-headline,
.mclpro-shift-headline,
.mclpro-cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.mclpro-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--color-muted);
    font-weight: 400;
    max-width: 42ch;
    line-height: 1.65;
}

.mclpro-section-sub,
.mclpro-behavior-sub,
.mclpro-why-sub,
.mclpro-cta-subline {
    font-size: 1rem;
    color: var(--color-muted);
    max-width: 48ch;
    line-height: 1.7;
}

/* ============================================================
   EYEBROW / LABELS
   ============================================================ */
.mclpro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: var(--space-xl);
}
.mclpro-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-amber);
    display: inline-block;
    box-shadow: 0 0 8px var(--color-amber);
}

.mclpro-section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted-2);
    margin-bottom: var(--space-xl);
}
.mclpro-label-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--color-accent);
}
.mclpro-label-line-amber {
    background: var(--color-amber);
}
.mclpro-label-amber {
    color: var(--color-amber);
}

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
.mclpro-section {
    padding: var(--space-5xl) 0;
    position: relative;
}
.mclpro-section-head {
    margin-bottom: var(--space-4xl);
}
.mclpro-section-head .mclpro-section-sub {
    margin-top: var(--space-lg);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.mclpro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    white-space: nowrap;
}

.mclpro-btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.3),
                0 4px 20px rgba(59,130,246,0.25);
}
.mclpro-btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.5),
                0 8px 30px rgba(59,130,246,0.35);
    transform: translateY(-1px);
}
.mclpro-btn-primary:active { transform: translateY(0); }

.mclpro-btn-ghost {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid var(--color-border-light);
}
.mclpro-btn-ghost:hover {
    color: var(--color-text);
    border-color: rgba(248,250,252,0.2);
    background: rgba(248,250,252,0.04);
}

.mclpro-btn-cta-primary {
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 0 0 1px rgba(59,130,246,0.3),
                0 8px 40px rgba(59,130,246,0.3);
}
.mclpro-btn-cta-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.5),
                0 12px 50px rgba(59,130,246,0.4);
}

.mclpro-btn-cta-ghost {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid var(--color-border-light);
    padding: 1rem 2rem;
    font-size: 1rem;
}
.mclpro-btn-cta-ghost:hover {
    color: var(--color-text);
    border-color: rgba(248,250,252,0.25);
}

.mclpro-btn-form-submit {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.mclpro-btn-form-submit:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.mclpro-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-4xl) 0 var(--space-4xl);
}

/* Ambient orbs */
.mclpro-hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.mclpro-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: orbFloat var(--duration, 0s) ease forwards;
}
.animations-enabled .mclpro-orb {
    animation: orbReveal 3s var(--ease-out) forwards;
}
.mclpro-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation-delay: 0.2s;
}
.mclpro-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    bottom: 0; left: -150px;
    animation-delay: 0.5s;
}
.mclpro-orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    top: 40%; left: 40%;
    animation-delay: 0.8s;
}
@keyframes orbReveal {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

/* Noise overlay */
.mclpro-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

/* Grid overlay */
.mclpro-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(248,250,252,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248,250,252,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Hero background image */
.mclpro-hero.has-bg {
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
}
.mclpro-hero.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,13,20,0.7) 0%, rgba(10,13,20,0.5) 50%, rgba(10,13,20,0.85) 100%);
}

/* Hero content */
.mclpro-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    padding-top: 100px;
}

.mclpro-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

/* Hero bottom */
.mclpro-hero-bottom {
    position: absolute;
    bottom: var(--space-2xl);
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.mclpro-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-muted-2);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mclpro-scroll-line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    position: relative;
    overflow: hidden;
}
.animations-enabled .mclpro-scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2.5s ease-in-out infinite 2s;
}
@keyframes shimmer {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* ============================================================
   SECTION 2 — DEMO / INSIGHT CARDS
   ============================================================ */
.mclpro-section-demo {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 40%, var(--color-bg) 100%);
}

.mclpro-section-head {
    max-width: 700px;
}

.mclpro-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-4xl);
}

.mclpro-insight-card {
    background: var(--color-bg);
    padding: var(--space-2xl);
    position: relative;
    transition: background var(--duration-fast) var(--ease-out);
    overflow: hidden;
}
.mclpro-insight-card:hover {
    background: var(--color-surface);
}
.mclpro-insight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-fast);
}
.mclpro-insight-card:hover::before { opacity: 1; }

.mclpro-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-border-light);
    line-height: 1;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.04em;
    transition: color var(--duration-fast);
}
.mclpro-insight-card:hover .mclpro-card-number {
    color: var(--color-accent);
}

.mclpro-card-insight {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}
.mclpro-card-sub {
    font-size: 0.8rem;
    color: var(--color-muted-2);
    line-height: 1.6;
}

.mclpro-card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out);
}
.mclpro-insight-card:hover .mclpro-card-accent-line { width: 100%; }

/* Screenshots strip */
.mclpro-screenshots {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-3xl);
}
.mclpro-screenshots-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted-2);
    margin-bottom: var(--space-xl);
}
.mclpro-screenshots-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}
.mclpro-screenshot-frame {
    background: var(--color-surface-2);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast);
}
.mclpro-screenshot-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mclpro-screenshot-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}
.mclpro-screenshot-bar span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-border-light);
}
.mclpro-screenshot-bar span:first-child { background: #ef4444; }
.mclpro-screenshot-bar span:nth-child(2) { background: var(--color-amber); }
.mclpro-screenshot-bar span:nth-child(3) { background: var(--color-success); }

/* ============================================================
   SECTION 3 — REALITY
   ============================================================ */
.mclpro-section-reality {
    background: var(--color-bg);
}

.mclpro-reality-headline-wrap {
    margin-bottom: var(--space-4xl);
    max-width: 700px;
}
.mclpro-reality-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
}

/* Abstract contrast UI */
.mclpro-reality-contrast {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-4xl);
    padding: var(--space-2xl) 0;
}

.mclpro-contrast-pane {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--duration-fast) var(--ease-out);
}
.mclpro-contrast-pane:hover { transform: translateY(-3px); }

.mclpro-contrast-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-muted-2);
    letter-spacing: 0.05em;
}
.mclpro-contrast-indicator {
    width: 8px; height: 8px;
    border-radius: 50%;
}
.mclpro-contrast-indicator-old  { background: #6b7280; }
.mclpro-contrast-indicator-new  { background: var(--color-accent); box-shadow: 0 0 8px var(--color-accent); }

.mclpro-contrast-ui {
    padding: var(--space-lg);
    min-height: 220px;
}

/* Old style UI abstraction */
.mclpro-ui-nav-old {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}
.mclpro-ui-nav-links { display: flex; gap: 8px; }
.mclpro-ui-hero-old {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
}
.mclpro-ui-hero-image-placeholder {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 4px;
    height: 80px;
    border: 1px solid var(--color-border);
}
.mclpro-ui-hero-text-old { display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.mclpro-ui-btn-old {
    height: 22px; width: 70px;
    background: #374151;
    border-radius: 3px;
    margin-top: 4px;
}
.mclpro-ui-content-old { display: flex; flex-direction: column; gap: 6px; }

/* UI line system */
.mclpro-ui-line {
    height: 6px;
    background: var(--color-border-light);
    border-radius: 3px;
    width: 100%;
}
.mclpro-ui-line-xs    { width: 30px; }
.mclpro-ui-line-short { width: 60%; }
.mclpro-ui-line-medium{ width: 80%; }
.mclpro-ui-line-large { width: 90%; height: 10px; }
.mclpro-ui-line-bright{
    background: rgba(248,250,252,0.15);
    height: 12px;
}
.mclpro-ui-line-large.mclpro-ui-line-bright { height: 16px; margin-bottom: 6px; }

/* New style UI abstraction */
.mclpro-contrast-ui-new { background: #0c1220; }
.mclpro-ui-nav-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 12px;
}
.mclpro-ui-logo-new {
    width: 80px; height: 10px;
    background: var(--color-accent);
    border-radius: 5px;
    opacity: 0.7;
}
.mclpro-ui-btn-nav-new {
    width: 60px; height: 22px;
    background: var(--color-accent);
    border-radius: 4px;
    opacity: 0.8;
}
.mclpro-ui-hero-new { margin-bottom: 12px; }
.mclpro-ui-hero-eyebrow-new {
    width: 90px; height: 5px;
    background: var(--color-amber);
    border-radius: 3px;
    margin-bottom: 10px;
    opacity: 0.7;
}
.mclpro-ui-hero-h-new { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.mclpro-ui-hero-cta-new {}
.mclpro-ui-btn-premium {
    width: 100px; height: 26px;
    background: linear-gradient(90deg, var(--color-accent), #2563eb);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}
.mclpro-ui-doctor-card-new {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 8px;
    padding: 10px;
}
.mclpro-ui-doctor-photo {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #1d4ed8);
    flex-shrink: 0;
}
.mclpro-ui-doctor-info { display: flex; flex-direction: column; gap: 5px; }

/* Contrast divider */
.mclpro-contrast-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-3xl);
}
.mclpro-contrast-vs {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-muted-2);
    width: 32px;
    text-align: center;
}

.mclpro-contrast-verdict {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-top: 1px solid var(--color-border);
}
.mclpro-contrast-verdict-old { color: #6b7280; }
.mclpro-contrast-verdict-new {
    color: var(--color-accent);
    background: var(--color-accent-glow);
}

/* Reality power lines */
.mclpro-reality-power { max-width: 600px; }
.mclpro-reality-subline {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
}
.mclpro-reality-supporting {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   SECTION 4 — BEHAVIOR / STATS
   ============================================================ */
.mclpro-section-behavior {
    background: linear-gradient(180deg, var(--color-bg) 0%, #090c12 100%);
}
.mclpro-behavior-head {
    margin-bottom: var(--space-4xl);
    max-width: 640px;
}
.mclpro-behavior-head .mclpro-behavior-sub { margin-top: var(--space-lg); }

.mclpro-stats-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-4xl);
    border-top: 1px solid var(--color-border);
}

.mclpro-stat-row {
    display: grid;
    grid-template-columns: 160px 1px 1fr;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--duration-fast);
}
.mclpro-stat-row:hover {
    background: rgba(248,250,252,0.015);
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
    margin-left: -var(--space-sm);
}

.mclpro-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1;
    padding-right: var(--space-xl);
}

.mclpro-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border-light);
    flex-shrink: 0;
}

.mclpro-stat-label {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 50ch;
}

/* WhatsApp callout */
.mclpro-whatsapp-callout {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.mclpro-wa-callout-icon {
    color: var(--color-accent);
    flex-shrink: 0;
}
.mclpro-wa-callout-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.mclpro-wa-callout-text strong {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
}
.mclpro-wa-callout-text span {
    color: var(--color-muted);
    font-size: 0.875rem;
}

/* ============================================================
   SECTION 5 — WHY IT WORKS
   ============================================================ */
.mclpro-section-why {
    background: var(--color-surface);
    position: relative;
}
.mclpro-section-why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}
.mclpro-section-why::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}

.mclpro-why-head { margin-bottom: var(--space-4xl); max-width: 600px; }
.mclpro-why-head .mclpro-why-sub { margin-top: var(--space-lg); }

.mclpro-why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mclpro-why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-2xl);
    align-items: start;
    padding: var(--space-2xl) 0;
    position: relative;
    transition: padding var(--duration-fast);
}
.mclpro-why-item-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--color-border);
}

.mclpro-why-item-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-muted-2);
    padding-top: 4px;
    transition: color var(--duration-fast);
}
.mclpro-why-item:hover .mclpro-why-item-number {
    color: var(--color-accent);
}

.mclpro-why-item-content {}
.mclpro-why-item-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}
.mclpro-why-item-body {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 55ch;
}

/* ============================================================
   SECTION 6 — THE SHIFT
   ============================================================ */
.mclpro-section-shift {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

.mclpro-shift-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.mclpro-shift-orb {
    position: absolute;
    width: 800px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(245,158,11,0.05) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}
.mclpro-shift-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,158,11,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,158,11,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.mclpro-shift-inner { position: relative; z-index: 2; }

.mclpro-shift-headline-wrap { margin-bottom: var(--space-2xl); max-width: 750px; }
.mclpro-shift-headline {
    font-size: clamp(2rem, 6vw, 4.5rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.mclpro-shift-body {
    max-width: 520px;
    margin-bottom: var(--space-3xl);
}
.mclpro-shift-body p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* City tags */
.mclpro-shift-cities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-4xl);
}
.mclpro-city-tag {
    padding: 0.35rem 0.85rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--color-muted-2);
    letter-spacing: 0.05em;
    transition: all var(--duration-fast);
}
.mclpro-city-tag:hover {
    border-color: var(--color-border-light);
    color: var(--color-muted);
}
.mclpro-city-tag-accent {
    border-color: rgba(245,158,11,0.3);
    color: var(--color-amber);
    background: var(--color-amber-glow);
}

.mclpro-shift-closing {
    border-left: 2px solid var(--color-amber);
    padding-left: var(--space-xl);
}
.mclpro-shift-closing-text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--color-text);
    max-width: 50ch;
    line-height: 1.5;
}

/* ============================================================
   SECTION 7 — FINAL CTA
   ============================================================ */
.mclpro-section-cta {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-surface);
}
.mclpro-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.mclpro-cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 60%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.mclpro-cta-inner { position: relative; z-index: 2; }

.mclpro-cta-headline-wrap {
    margin-bottom: var(--space-3xl);
    max-width: 700px;
}
.mclpro-cta-headline {
    margin-bottom: var(--space-lg);
}
.mclpro-cta-subline { font-size: 1rem; }

.mclpro-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-4xl);
}

/* Contact form */
.mclpro-cta-form-wrap {
    max-width: 480px;
    margin-bottom: var(--space-4xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--color-border);
}
.mclpro-cta-form-label {
    font-size: 0.75rem;
    color: var(--color-muted-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}
.mclpro-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.mclpro-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.mclpro-form-input {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text);
    width: 100%;
    transition: border-color var(--duration-fast);
    outline: none;
}
.mclpro-form-input::placeholder { color: var(--color-muted-2); }
.mclpro-form-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}
.mclpro-form-input-full { grid-column: 1 / -1; }

.mclpro-form-status {
    font-size: 0.85rem;
    color: var(--color-success);
    min-height: 1.2em;
}
.mclpro-form-status.error { color: #ef4444; }

.mclpro-form-success {
    padding: var(--space-lg) var(--space-xl);
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius-sm);
    color: var(--color-success);
    font-size: 0.9rem;
}

/* Studio label */
.mclpro-cta-studio {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted-2);
}
.mclpro-studio-line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.mclpro-floating-wa {
    position: fixed;
    bottom: 96px;
    right: var(--space-xl);
    width: 52px;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-float);
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast);
}
.mclpro-floating-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.mclpro-floating-wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.6);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    50%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* ============================================================
   STICKY MOBILE BOTTOM BAR
   ============================================================ */
.mclpro-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    display: flex;
    background: rgba(17,24,39,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border-light);
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-sm);
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}
.mclpro-sticky-bar.is-visible {
    transform: translateY(0);
}

.mclpro-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all var(--duration-fast);
}
.mclpro-sticky-wa {
    background: #25D366;
    color: #fff;
}
.mclpro-sticky-wa:hover { background: #1ebe5d; }
.mclpro-sticky-call {
    background: var(--color-surface-2);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.mclpro-sticky-call:hover { background: var(--color-surface); }

/* ============================================================
   FOOTER
   ============================================================ */
.mclpro-footer {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
    margin-bottom: 72px; /* space for sticky bar on mobile */
}
.mclpro-footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}
.mclpro-footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.mclpro-footer-logo { height: 24px; width: auto; }
.mclpro-footer-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}
.mclpro-footer-tagline {
    font-size: 0.7rem;
    color: var(--color-muted-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-left: var(--space-md);
    border-left: 1px solid var(--color-border);
}
.mclpro-footer-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--color-muted-2);
}
.mclpro-footer-dot { color: var(--color-border-light); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.mclpro-scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out) var(--delay, 0ms),
                transform 0.7s var(--ease-out) var(--delay, 0ms);
}
.mclpro-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero reveal (immediate, not scroll-triggered) */
.mclpro-reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
}
.animations-enabled .mclpro-reveal {
    animation: heroReveal 0.9s var(--ease-out) forwards;
}
/* Without animations, show immediately */
body:not(.animations-enabled) .mclpro-reveal {
    opacity: 1;
    transform: none;
    filter: none;
}
.mclpro-reveal-delay-1 { animation-delay: 0.1s; }
.mclpro-reveal-delay-2 { animation-delay: 0.3s; }
.mclpro-reveal-delay-3 { animation-delay: 0.5s; }
.mclpro-reveal-delay-4 { animation-delay: 0.7s; }
.mclpro-reveal-delay-5 { animation-delay: 0.9s; }

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(20px); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

/* No animations fallback */
body:not(.animations-enabled) .mclpro-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --gutter: 1.25rem;
        --space-5xl: 5rem;
        --space-4xl: 3.5rem;
        --space-3xl: 2.5rem;
    }

    .mclpro-hero-headline { font-size: 2.2rem; max-width: 100%; }
    .mclpro-hero-content { padding-top: 80px; }

    .mclpro-cards-grid {
        grid-template-columns: 1fr;
    }

    .mclpro-reality-contrast {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .mclpro-contrast-divider {
        padding: 0;
        justify-content: flex-start;
    }
    .mclpro-contrast-vs {
        width: auto;
        font-size: 1rem;
        padding: var(--space-sm) 0;
    }

    .mclpro-stat-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .mclpro-stat-divider { display: none; }
    .mclpro-stat-number { font-size: 2.5rem; padding-right: 0; }

    .mclpro-whatsapp-callout {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .mclpro-why-item {
        grid-template-columns: 32px 1fr;
        gap: var(--space-lg);
    }

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

    .mclpro-cta-buttons {
        flex-direction: column;
    }
    .mclpro-btn-cta-primary,
    .mclpro-btn-cta-ghost {
        width: 100%;
        justify-content: center;
    }

    .mclpro-cta-studio {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    .mclpro-studio-line { width: 60px; flex: none; }

    .mclpro-footer-inner { flex-direction: column; align-items: flex-start; }
    .mclpro-footer-brand { flex-direction: column; align-items: flex-start; }
    .mclpro-footer-tagline { border-left: none; padding-left: 0; }

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

    .mclpro-floating-wa { bottom: 90px; right: var(--space-md); }
}

@media (max-width: 480px) {
    .mclpro-hero-headline { font-size: 1.9rem; line-height: 1.15; }
    .mclpro-hero-ctas { flex-direction: column; }
    .mclpro-btn { width: 100%; justify-content: center; }

    .mclpro-section-headline,
    .mclpro-reality-headline,
    .mclpro-behavior-headline,
    .mclpro-why-headline,
    .mclpro-shift-headline,
    .mclpro-cta-headline { font-size: 1.75rem; }

    .mclpro-shift-cities {
        gap: var(--space-xs);
    }
}

/* ============================================================
   TABLET
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .mclpro-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .mclpro-stat-row { grid-template-columns: 120px 1px 1fr; }
    .mclpro-stat-number { font-size: 2.2rem; }
}

/* ============================================================
   DESKTOP ONLY
   ============================================================ */
@media (min-width: 1025px) {
    .mclpro-sticky-bar { display: none; }
    .mclpro-floating-wa { bottom: var(--space-2xl); }
    .mclpro-footer { margin-bottom: 0; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .mclpro-floating-wa-pulse { animation: none; }
}

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media print {
    .mclpro-sticky-bar,
    .mclpro-floating-wa,
    .mclpro-hero-orbs,
    .mclpro-hero-noise,
    .mclpro-hero-grid { display: none; }
    body { background: #fff; color: #000; }
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 2px;
}
