/* css properties based on the identity manual */
:root {
    /* Brand Colors */
    --navy-blue: #0A192F;
    --electric-cyan: #00F2FF;
    --digital-blue: #2979FF;
    --studio-gray: #F5F7FA;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Gradients */
    --cyan-gradient: linear-gradient(135deg, var(--electric-cyan), var(--digital-blue));
    
    /* Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-dark-bg: rgba(10, 25, 47, 0.6);
    --glass-dark-border: rgba(0, 242, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--studio-gray);
    color: var(--navy-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: var(--cyan-gradient);
    color: var(--navy-blue); /* High contrast on bright cyan */
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4), 0 0 40px rgba(41, 121, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6), 0 0 60px rgba(41, 121, 255, 0.4);
}

.btn-secondary {
    border: 2px solid var(--electric-cyan);
    color: var(--electric-cyan);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--electric-cyan);
    color: var(--navy-blue);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.btn-text {
    color: var(--digital-blue);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-text:hover {
    color: var(--electric-cyan);
    gap: 12px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-dark-border);
    padding: 15px 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}
.logo-dot {
    color: var(--electric-cyan);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-secondary) {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}
.nav-links a:not(.btn-secondary):hover {
    opacity: 1;
    color: var(--electric-cyan);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-blue);
    color: var(--white);
    overflow: hidden;
    padding: 100px 5% 50px;
    text-align: center;
}

.hero-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 16/11; /* Forces a narrower rectangle to chop off sides */
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.1);
}

.animated-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--white), var(--studio-gray));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: rgba(245, 247, 250, 0.8);
    max-width: 700px;
    margin-bottom: 40px;
}

/* --- Services / Features (High-Key Style) --- */
.services {
    padding: 100px 5%;
    background-color: var(--studio-gray);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300F2FF' fill-opacity='1' stroke='%2300F2FF' stroke-width='1.5' stroke-opacity='0.8'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='70' cy='20' r='2'/%3E%3Ccircle cx='40' cy='70' r='2.5'/%3E%3Ccircle cx='70' cy='70' r='2'/%3E%3Ccircle cx='20' cy='50' r='2.5'/%3E%3Cline x1='10' y1='10' x2='70' y2='20'/%3E%3Cline x1='10' y1='10' x2='40' y2='70'/%3E%3Cline x1='70' y1='20' x2='40' y2='70'/%3E%3Cline x1='40' y1='70' x2='70' y2='70'/%3E%3Cline x1='10' y1='10' x2='20' y2='50'/%3E%3Cline x1='40' y1='70' x2='20' y2='50'/%3E%3C/g%3E%3C/svg%3E"), 
                      linear-gradient(135deg, var(--navy-blue), var(--digital-blue));
    background-size: 80px 80px, cover;
    -webkit-background-clip: text;
    background-clip: text;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.section-title:hover {
    color: transparent;
    animation: networkMove 5s linear infinite;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

@keyframes networkMove {
    from { background-position: 0 0, 0 0; }
    to { background-position: -160px -160px, 0 0; }
}

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--cyan-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.glass-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cyan-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--digital-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.glass-card:hover .card-icon {
    background: var(--cyan-gradient);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300F2FF' fill-opacity='1' stroke='%2300F2FF' stroke-width='1.5' stroke-opacity='0.8'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='70' cy='20' r='2'/%3E%3Ccircle cx='40' cy='70' r='2.5'/%3E%3Ccircle cx='70' cy='70' r='2'/%3E%3Ccircle cx='20' cy='50' r='2.5'/%3E%3Cline x1='10' y1='10' x2='70' y2='20'/%3E%3Cline x1='10' y1='10' x2='40' y2='70'/%3E%3Cline x1='70' y1='20' x2='40' y2='70'/%3E%3Cline x1='40' y1='70' x2='70' y2='70'/%3E%3Cline x1='10' y1='10' x2='20' y2='50'/%3E%3Cline x1='40' y1='70' x2='20' y2='50'/%3E%3C/g%3E%3C/svg%3E"), 
                      linear-gradient(135deg, var(--navy-blue), var(--digital-blue));
    background-size: 80px 80px, cover;
    -webkit-background-clip: text;
    background-clip: text;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.glass-card:hover h3 {
    color: transparent;
    animation: networkMove 5s linear infinite;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.glass-card p {
    color: #4A5568;
    font-size: 1rem;
}

/* --- Visual Section --- */
.visual-break {
    padding: 100px 5%;
    background: var(--white);
}

.visual-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.visual-text {
    flex: 1;
}

.visual-text p {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 30px;
}

.visual-image-wrapper {
    flex: 0 1 400px;
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.15);
    position: relative;
}

.visual-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    border-radius: 30px;
    pointer-events: none;
}

.abstract-image {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
    object-fit: cover;
}
.visual-image-wrapper:hover .abstract-image {
    transform: scale(1.05);
}

.unmute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.8) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.unmute-btn:hover {
    background: var(--electric-cyan);
    color: var(--navy-blue);
    transform: scale(1.1);
}

/* --- Footer --- */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 5% 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyan-gradient);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(245, 247, 250, 0.6);
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 100;
}

.footer-links a {
    color: rgba(245, 247, 250, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--electric-cyan) !important;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: rgba(245, 247, 250, 0.4);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.5rem; }
    .visual-content { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
}

/* --- Contact Section --- */
.contact {
    padding: 100px 5%;
    background-color: var(--studio-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header p {
    margin-top: 20px;
    color: #4A5568;
    font-size: 1.1rem;
}

.contact-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(10, 25, 47, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy-blue);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.contact-form .btn-primary {
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 10px;
    width: 100%;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* --- Facebook Floating Button --- */
.facebook-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #1877F2;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.facebook-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* --- Chatbot UI --- */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 110px; /* Separado del botón de WhatsApp */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-toggle-btn {
    background: var(--cyan-gradient);
    color: var(--navy-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 242, 255, 0.6);
}

.chatbot-window {
    width: 340px;
    max-height: 450px;
    height: 450px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 25, 47, 0.2);
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.chatbot-window.open {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.chatbot-header {
    background: var(--cyan-gradient);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy-blue);
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.bot-status {
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #00ff00;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px #00ff00;
}

.chatbot-close-btn {
    background: rgba(10, 25, 47, 0.1);
    border: none;
    color: var(--navy-blue);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.chatbot-close-btn:hover {
    background: rgba(10, 25, 47, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Custom Scrollbar for chat */
.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(10, 25, 47, 0.2);
    border-radius: 10px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    animation: messageEnter 0.3s ease-out forwards;
}

@keyframes messageEnter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-blue);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.user-message {
    background: var(--navy-blue);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chatbot-input-area {
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    display: flex;
    gap: 10px;
}

#chatbot-input {
    flex: 1;
    border: 1px solid rgba(10, 25, 47, 0.1);
    border-radius: 20px;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255,255,255,0.8);
}

#chatbot-input:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 8px rgba(0, 242, 255, 0.2);
}

.chatbot-send-btn {
    background: var(--electric-cyan);
    color: var(--navy-blue);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
    background: var(--digital-blue);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(41, 121, 255, 0.3);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--digital-blue);
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0% { opacity: 0.2; }
    20% { opacity: 1; transform: translateY(-2px); }
    100% { opacity: 0.2; }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        right: 0;
        bottom: 80px;
        position: fixed;
    }
}

/* --- Psychographic Profiles --- */

body.profile-startup {
    --navy-blue: #020711;
    --electric-cyan: #00FF9D;
    --digital-blue: #0077FF;
    --studio-gray: #1E232E;
    --white: #F0F4F8;
    
    --cyan-gradient: linear-gradient(135deg, var(--electric-cyan), #00A3FF);
    --glass-bg: rgba(30, 35, 46, 0.8);
    --glass-border: rgba(0, 255, 157, 0.2);
}

body.profile-startup {
    background-color: var(--studio-gray);
    color: var(--white);
}

body.profile-startup .hero-subtitle,
body.profile-startup .glass-card p,
body.profile-startup .visual-text p,
body.profile-startup .contact-header p,
body.profile-startup .glass-card h3,
body.profile-startup .section-title {
    color: rgba(240, 244, 248, 0.9);
}

body.profile-startup .glass-card {
    background: rgba(30,35,46, 0.6);
}

body.profile-startup .form-group label {
    color: var(--white);
}

body.profile-startup .contact-form input,
body.profile-startup .contact-form textarea {
    background: rgba(255,255,255,0.05);
    color: var(--white);
}

body.profile-corporate {
    --navy-blue: #002B5C;
    --electric-cyan: #00B4D8;
    --digital-blue: #03045E;
    --studio-gray: #F8F9FA;
    
    --cyan-gradient: linear-gradient(135deg, var(--electric-cyan), var(--digital-blue));
}

body.profile-pyme {
    --navy-blue: #2D232E;
    --electric-cyan: #FF5A5F;
    --digital-blue: #FF9047;
    --studio-gray: #FFF9F5;
    
    --cyan-gradient: linear-gradient(135deg, var(--electric-cyan), var(--digital-blue));
    --glass-bg: rgba(255, 255, 255, 0.85);
}
