﻿@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200..700&display=swap');
:root {
    /* BRAND IDENTITY */
    --bg-body: #f9fafb;
    /* Pearl White */
    --bg-card: #ffffff;
    --bg-lighter: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --accent: #0ea5e9;
    --accent-hover: #0284c7;
    --accent-glow: rgba(14, 165, 233, 0.25);
    --accent-green: #10b981;
    --border: #e5e7eb;
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

    /* Plan Colors & Intense Glows */
    --color-lite: #0ea5e9;
    --glow-lite: rgba(14, 165, 233, 0.4);
    --color-pro: #f59e0b;
    --glow-pro: rgba(245, 158, 11, 0.4);
    --color-ulti: #8b5cf6;
    --glow-ulti: rgba(139, 92, 246, 0.4);

    --grad-blue: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    --grad-pro: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --grad-ulti: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    --grad-pro-ulti: linear-gradient(90deg, #f59e0b 0%, #8b5cf6 100%);
}

body.dark-mode {
    --bg-body: #020617;
    --bg-card: #0f172a;
    --bg-lighter: #1e293b;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border: #1e293b;
    --shadow-card: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    --glow-lite: rgba(14, 165, 233, 0.1);
    --glow-pro: rgba(245, 158, 11, 0.1);
    --glow-ulti: rgba(139, 92, 246, 0.1);
}

* {
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    background-image: radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.05) 0px, transparent 50%);
    font-family: 'Readex Pro', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
    width: 100%;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

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

/* --- REVEAL ON SCROLL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- FLOATING WHATSAPP --- */
.floating-wa {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1100;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* --- NAVIGATION --- */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .top-nav {
    background: rgba(15, 23, 42, 0.9);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    max-width: 1280px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-area img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
    border: 2px solid var(--border);
}

.logo-text {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.btn-theme {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-lighter);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- HUB VIEW --- */
/* --- INDEX HERO FLEX --- */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 40px;
    flex-wrap: wrap;
}

.hero-text-area {
    flex: 1;
    min-width: 350px;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.hero-circle {
    width: clamp(280px, 40vw, 420px);
    height: clamp(280px, 40vw, 420px);
    border-radius: 50% !important;
    background: #000;
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    overflow: hidden; /* CRITICAL: Clips the zoomed image */
    position: relative;
    margin-top: 20px;
    transition: transform 0.4s ease;
}

.hero-circle:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.45);
}

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    display: block;
    transform: scale(1.25); /* Absolute final zoom for edge-to-edge sync */
    transition: transform 0.5s ease;
}

@media (max-width: 1024px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-text-area { padding-bottom: 20px; }
    .hero-circle {
    width: clamp(280px, 40vw, 420px);
    height: clamp(280px, 40vw, 420px);
    border-radius: 50% !important;
    background: #000;
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    overflow: hidden; /* CRITICAL: Clips the zoomed image */
    position: relative;
    margin-top: 20px;
    transition: transform 0.4s ease;
}
}
#sync-hub { display: block; padding: 110px 0 100px; min-height: 100vh; animation: fadeIn 0.5s ease; }

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sector-card {
    background: var(--bg-card);
    border-radius: 35px;
    padding: 60px 40px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: block;
    text-decoration: none;
    color: inherit;
}

.sector-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.sector-card i {
    font-size: 70px;
    color: var(--accent);
    margin-bottom: 30px;
}

.sector-card h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.btn-enter-hub {
    background: var(--grad-blue);
    color: white;
    padding: 14px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    margin-top: 25px;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.badge-soon {
    position: absolute;
    top: 25px;
    left: -35px;
    background: #64748b;
    color: white;
    padding: 8px 45px;
    transform: rotate(-45deg);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.sector-card.disabled {
    opacity: 0.8;
    cursor: not-allowed;
    border-style: dashed;
    pointer-events: none;
}

/* --- CLINIC & RESTAURANTS VIEW SHARED --- */
.system-view {
    display: block;
    padding-top: 80px;
    animation: fadeIn 0.5s ease;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(34px, 7vw, 65px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    margin-bottom: 35px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
    animation: float 6s ease-in-out infinite;
    background: white;
    object-fit: cover;
    padding: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Pillar Badged Cards */
.muscle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.muscle-card {
    background: var(--bg-card);
    padding: 75px 45px 45px;
    border-radius: 35px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.muscle-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.muscle-badge-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    text-align: center;
    background: var(--bg-lighter);
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

.muscle-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.muscle-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.muscle-list li i {
    font-size: 18px;
    color: var(--accent-green) !important;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Digital Engine Section */
.digital-engine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.engine-card {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 90px 45px 50px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.4s;
}

.engine-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.engine-card-strap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 950;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.right-wing-strap {
    background: var(--grad-pro-ulti);
}

.left-wing-strap {
    background: var(--grad-ulti);
}

.engine-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.engine-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    background: var(--bg-lighter);
    padding: 25px;
    border-radius: 20px;
    border-right: 6px solid var(--accent);
    margin-bottom: 30px;
}

.left-wing .engine-desc {
    border-right-color: var(--color-ulti);
}

/* Workflow Interface */
.workflow-wrapper {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 35px;
    box-shadow: var(--shadow-card);
    min-height: 700px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
}

@media (min-width: 1024px) {
    .workflow-wrapper {
        flex-direction: row;
    }
}

.wf-side-strap {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 950;
    font-size: 15px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023px) {
    .wf-side-strap {
        top: 0;
        left: 0;
        right: 0;
        height: 45px;
        width: 100%;
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .wf-side-strap {
        top: 0;
        left: 0;
        bottom: 0;
        width: 50px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }
}

.wf-nav {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    padding: 60px 25px 25px 55px;
}

@media (max-width: 1023px) {
    .wf-nav {
        flex: none;
        flex-direction: row;
        padding: 60px 15px 15px;
        border-left: none;
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
    }
}

.wf-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 15px 20px;
    text-align: right;
    cursor: pointer;
    border-radius: 15px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.wf-btn.active {
    background: var(--accent-glow);
    color: var(--accent);
    border-right: 5px solid var(--accent);
}

.wf-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 100%;
}

.wf-image-container {
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 5px solid var(--bg-card);
    background: #000;
    position: relative;
    cursor: pointer;
}

@media (min-width: 768px) {
    .wf-image-container {
        height: 420px;
    }
}

.wf-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wf-full-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 20px 0;
    background: var(--bg-lighter);
    padding: 30px;
    border-radius: 20px;
    border-right: 6px solid var(--accent);
}

/* Workflow Step Buttons */
.wf-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    gap: 20px;
}

.wf-step-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-weight: 950;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-step-prev {
    background: var(--bg-lighter);
    color: var(--text-primary);
}

.btn-step-next {
    background: var(--grad-blue);
    color: white;
    box-shadow: 0 10px 25px var(--accent-glow);
}

.wf-step-btn:hover {
    transform: translateY(-4px);
}

/* --- PRICING GRID (MAXIMALIST) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.price-card {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 0;
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    z-index: 1;
    cursor: default;
    transition: all 0.4s ease;
    width: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.price-card:hover {
    max-height: 1200px; /* Expanded Height */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.price-card-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 50%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.price-card h3 { 
    margin: 0; 
    padding: 30px 0 10px; /* Padding for top-border positioning */
    font-size: 38px; 
    font-weight: 800; 
    color: var(--text-primary);
    font-family: 'Readex Pro', sans-serif;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}

.price-card.basic-card { border: 2px solid var(--color-lite); box-shadow: 0 8px 25px var(--glow-lite); }

.price-card.pro-card { border: 3px solid var(--color-pro); box-shadow: 0 10px 35px var(--glow-pro); }

.price-card.ulti-card { border: 2px solid var(--color-ulti); box-shadow: 0 8px 25px var(--glow-ulti); }

.price-strap-main {
    position: relative;
    display: inline-block;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 11px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-top: 5px;
    background: rgba(255,255,255,0.1);
}







.price-features-list {
    text-align: right; /* Standard text alignment */
    margin: 20px auto;
    padding: 0;
    list-style: none;
    font-size: 16px;
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Consistent gap between items */
    font-family: 'Readex Pro', sans-serif;
}

.price-features-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Since dir=rtl, flex-start is the right side */
    gap: 10px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.price-features-list li i { font-size: 18px; flex-shrink: 0; margin-left: 5px; color: #2ECC71; }

.btn-plan-select {
    padding: 12px 25px;
    border-radius: 40px;
    border: none;
    font-weight: 950;
    cursor: pointer;
    width: auto;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: white;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}

.btn-plan-lite {
    background: var(--grad-blue);
}

.btn-plan-pro {
    background: var(--grad-pro);
}

.btn-plan-ulti {
    background: var(--grad-ulti);
}

.btn-plan-select:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.price-card-content {
    padding: 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s ease;
}

.price-card:hover .price-card-content {
    padding: 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s ease;
}

.price-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50% !important;
    overflow: hidden; /* CRITICAL for sphere effect */
    margin: 20px auto 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    border-width: 4px;
    border-style: solid;
}
.price-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: auto;
    display: block;
    transform: scale(1.25); /* Absolute final zoom for edge-to-edge sync */
}







.price-card:hover 






    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.price-header-area { display: flex; flex-direction: column; align-items: center; width: 100%; }







.price-card:hover 




    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

.expanded-info { width: 100%; padding-top: 20px; border-top: 1px dashed var(--border); }



/* FAQ Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px auto;
    max-width: 950px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.faq-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    font-size: 20px;
    transition: 0.3s;
}

.faq-header:hover {
    background: var(--bg-lighter);
}

.faq-body {
    padding: 0 25px 25px;
    display: none;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    padding-top: 20px;
    animation: slideDown 0.3s ease;
    font-size: 17px;
    line-height: 1.8;
}

.faq-item.active .faq-body {
    display: block;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--accent);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

footer {
    background: var(--bg-lighter);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 65px;
    background: var(--grad-blue);
    color: white;
    border-radius: 80px;
    text-decoration: none;
    font-weight: 950;
    font-size: 22px;
    box-shadow: 0 15px 35px var(--accent-glow);
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .sector-card {
        padding: 40px 20px;
    }

    .muscle-card {
        padding: 60px 20px 30px;
    }

    .engine-card {
        padding: 70px 20px 30px;
    }

    .price-card {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 0;
    border: 2px solid var(--border);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    z-index: 1;
    cursor: default;
    transition: all 0.4s ease;
    width: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.price-card:hover {
    max-height: 1200px; /* Expanded Height */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.price-card-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 50%;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.price-card h3 { 
    margin: 0; 
    padding: 30px 0 10px; /* Padding for top-border positioning */
    font-size: 38px; 
    font-weight: 800; 
    color: var(--text-primary);
    font-family: 'Readex Pro', sans-serif;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}

    .wf-content {
        padding: 15px;
    }

    .wf-controls {
        flex-direction: column;
        gap: 10px;
    }

    .wf-step-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 55px);
    }

    .btn-enter-hub {
        padding: 14px 20px !important;
        width: 100%;
        text-align: center;
        font-size: 16px;
        box-sizing: border-box;
    }

    .contact-pill {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 18px;
        justify-content: center;
        margin: 0 auto;
    }

    .hero>.container>div {
        flex-direction: column;
        align-items: center;
    }

    .hero>.container>div>a {
        width: 100%;
        margin: 5px 0;
        max-width: 300px;
    }

    .engine-desc {
        font-size: 15px;
        padding: 15px;
    }

    .modal-info-col {
        padding: 30px 20px;
    }

    .hub-grid,
    .muscle-grid,
    .digital-engine,
    .pricing-grid {
        gap: 20px;
    }

    .wf-nav {
        padding-top: 50px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 1250px;
    border-radius: 50px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 95vh;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 1024px) {
    .modal-content {
        flex-direction: row;
    }

    .modal-img-col {
        width: 55%;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .modal-info-col {
        width: 45%;
        padding: 60px;
        overflow-y: auto;
        border-right: 1px solid var(--border);
    }
}

.modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 25px;
}

.close-modal-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.close-modal-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* --- INTERACTIVE HINTS (NEW) --- */
.zoom-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-glow 2s infinite;
    z-index: 2;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}



.muscle-card:hover 

#restaurants-view .muscle-card:hover 
/* Team Avatar */
.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 3px solid currentColor;
}
.nav-link:hover { color: var(--accent) !important; }

.price-card.basic-card:hover { box-shadow: 0 15px 45px var(--glow-lite); transform: translateY(-10px); }
.price-card.pro-card:hover { box-shadow: 0 20px 60px var(--glow-pro); transform: translateY(-12px) scale(1.02); }
.price-card.ulti-card:hover { box-shadow: 0 15px 45px var(--glow-ulti); transform: translateY(-10px); }
.basic-card .price-strap-main { background: var(--color-lite); }
.pro-card .price-strap-main { background: var(--color-pro); }
.ulti-card .price-strap-main { background: var(--color-ulti); }
.basic-card .price-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50% !important;
    overflow: hidden; /* CRITICAL for sphere effect */
    margin: 20px auto 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    border-width: 4px;
    border-style: solid;
}
.pro-card .price-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50% !important;
    overflow: hidden; /* CRITICAL for sphere effect */
    margin: 20px auto 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    border-width: 4px;
    border-style: solid;
}
.ulti-card .price-logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50% !important;
    overflow: hidden; /* CRITICAL for sphere effect */
    margin: 20px auto 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    border-width: 4px;
    border-style: solid;
}