/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    width: 140px;
    height: auto;
    opacity: 0;
    transform: scale(0.9);
    filter: brightness(0) invert(1);
    /* Magnetic Entry, No extraneous pulse */
    animation: logoEntry 1.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    will-change: transform, opacity;
}

/* Shimmer removed for cleaner look */

.preloader-line-mask {
    width: 140px;
    height: 2px;
    background: #E0528B;
    margin: 25px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(224, 82, 139, 0.6);
    /* Center-Out Expansion */
    transform: scaleX(0);
    transform-origin: center;
    animation: lineExpand 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.4s;
    will-change: transform;
}

@keyframes logoEntry {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(15px);
        filter: brightness(0) invert(1);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: brightness(0) invert(1);
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
    }

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

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

.back-to-top {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'fieldwork', sans-serif;
    background-color: #050505;
    /* Full sync with preloader */
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'fieldwork-hum', serif;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Inline SVG Icons */
.inline-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    display: inline-block;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ==========================================================================
   Typography & Highlights
   ========================================================================== */
h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 .highlight {
    color: #E0528B;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 60px;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    padding: 16px 38px;
    font-size: 1rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: white;
    color: #E0528B;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    /* Semi-transparent background */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);

}

.btn-secondary:hover {
    background: rgba(224, 82, 139, 0.1);
    color: #E0528B;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(224, 82, 139, 0.2);
}

/* Added Global Button Outline */
.btn-outline {
    background: transparent;
    border: 1px solid #E0528B;
    color: #E0528B;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:hover {
    background: #E0528B;
    color: white;
    box-shadow: 0 4px 15px rgba(224, 82, 139, 0.3);
}

/* Responsive adjustment for header outline buttons on scrolled state */
header.scrolled .btn-outline {
    border-color: #E0528B;
    color: #E0528B;
}

header.scrolled .btn-outline:hover {
    background: #E0528B;
    color: white;
}

.btn::after {
    display: none;
}

.btn:hover::after {
    display: none;
}

.btn-header {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'fieldwork', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-header.filled {
    background: white;
    color: #E0528B;
    border-color: white;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-header.filled:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background: transparent;
    padding: 25px 0;
    /* Increased to move logo down */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
    /* Minimize container padding */
}

header.scrolled .header-content {
    padding: 10px 0;
    /* Minimize inner padding */
}

/* ... existing code ... */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    /* Increased to move logo down */
    position: relative;
    transition: padding 0.3s ease;
}

header .logo img {
    height: 110px;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 65px;
    /* Bigger Logo */
}

header nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
}

.nav-menu {
    position: relative;
    /* Context for centralized dropdown */
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);

    padding: 12px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    pointer-events: auto;
    z-index: 2;
    /* Sit on top of dropdown */
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #E0528B;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Underline Animation */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #E0528B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.nav-menu li a:hover {
    color: #E0528B;
    transform: translateY(-2px);
}

.nav-menu li a:hover::after {
    width: 100%;
    opacity: 1;
}

header .btn {
    z-index: 1001;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 10px 25px;
    font-size: 0.95rem;
    border: 2px solid #E0528B;
    color: #E0528B;
    background: white;
    box-shadow: 0 5px 15px rgba(224, 82, 139, 0.1);
}

header .btn:hover {
    background: #f8f8f8;
    box-shadow: 0 8px 20px rgba(224, 82, 139, 0.2);
}

@media (min-width: 1200px) {
    header {
        padding: 30px 0;
        /* Increased to move logo down */
    }

    .header-content {
        padding: 10px 0;
    }

    header .logo img {
        height: 130px;
        /* Balanced larger size */
    }

    .nav-menu {
        gap: 50px;
        padding: 15px 50px;
        border-radius: 60px;
    }

    .nav-menu li a {
        font-size: 1.1rem;
    }

    header .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

/* Hamburger & Mobile Menu Handled in @media at end */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #E0528B 0%, #BB8BA6 100%) !important;
    color: white;
    min-height: 110vh;
    padding-top: 180px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(50px, 50px) rotate(180deg);
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 40px;
}

.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(224, 82, 139, 0.12);
    /* Solid but subtle dark pink */
    border: 1.5px solid rgba(224, 82, 139, 0.4);
    /* Refined border */
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 40px;
    /* Increased margin */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.badge-avatars {
    display: flex;
    margin-left: -5px;
}

.badge-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 2px solid white;
    margin-left: -10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.15;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    /* Increased gap */
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.reassurance {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reassurance::before {
    content: '✓';
    font-size: 1.5rem;
    color: #E0528B;
}

/* ==========================================================================
   Hero Visual / Dashboard Mockup
   ========================================================================== */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.dashboard-mockup {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
}

.mockup-content {
    background: linear-gradient(135deg, #f8f9fa, #e8e9ea);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.mockup-bar {
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.mockup-bar:nth-child(1) {
    width: 80%;
}

.mockup-bar:nth-child(2) {
    width: 60%;
}

.mockup-bar:nth-child(3) {
    width: 90%;
}

.mockup-chart {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    height: 100px;
    margin-top: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #E0528B, #BB8BA6);
    border-radius: 8px 8px 0 0;
    animation: growBar 1s ease-out forwards;
    opacity: 0;
}

.chart-bar:nth-child(1) {
    animation-delay: 0.1s;
    height: 60%;
}

.chart-bar:nth-child(2) {
    animation-delay: 0.2s;
    height: 85%;
}

.chart-bar:nth-child(3) {
    animation-delay: 0.3s;
    height: 70%;
}

.chart-bar:nth-child(4) {
    animation-delay: 0.4s;
    height: 95%;
}

@keyframes growBar {
    to {
        opacity: 1;
    }
}

/* ==========================================================================
   Floating Stats
   ========================================================================== */
.floating-stat {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatStat 3s infinite ease-in-out;
}

.floating-stat-1 {
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 15%;
    right: -30px;
    animation-delay: 1s;
}

@keyframes floatStat {

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

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

.stat-icon {
    font-size: 2rem;
}

.stat-content {
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-content h4 {
    font-size: 1.5rem;
    color: #E0528B;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-content p {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.2;
    margin: 0;
}

/* ==========================================================================
   Sections Global
   ========================================================================== */
section {
    padding: 100px 0;
    position: relative;
}

body:not(.dark-mode) section:nth-child(even) {
    background: white;
}

/* ==========================================================================
   Demo Section & Chat Animation
   ========================================================================== */
.demo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    color: #555;
}

.demo-chat {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Space Grotesk', sans-serif;
}

.chat-header {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.9);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.agent-avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #E0528B, #BB8BA6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(224, 82, 139, 0.2);
}

.agent-status-wrapper {
    position: relative;
}

.status-dot {
    width: 14px;
    height: 14px;
    background: #E0528B;
    border-radius: 50%;
    border: 3px solid white;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 82, 139, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(224, 82, 139, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(224, 82, 139, 0);
    }
}

.agent-info h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.agent-info span {
    font-size: 0.9rem;
    color: #E0528B;
    font-weight: 600;
}

.chat-messages {
    padding: 40px;
    background: #f8f9fa;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.message-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.message-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.message-row.user-row {
    flex-direction: row-reverse;
}

.message-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
    font-weight: bold;
}

.ai-avatar-small {
    background: linear-gradient(135deg, #E0528B, #BB8BA6);
}

.user-avatar-small {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.message-bubble {
    padding: 18px 25px;
    border-radius: 20px;
    max-width: 75%;
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.user-row .message-bubble {
    background: #f1f5f9;
    color: #1e293b;
    border-bottom-right-radius: 4px;
}

.ai-row .message-bubble {
    background: #E0528B;
    color: white;
    border-bottom-left-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 15px 25px;
    background: white;
    border-radius: 20px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-left: 50px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    position: absolute;
    bottom: 40px;
}

.typing-indicator.active {
    opacity: 1;
    transform: translateY(0);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #E0528B;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
    opacity: 0.6;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

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

.demo-summary {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 50px;
    font-weight: 500;
    color: #E0528B;
    padding: 30px;
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.05), rgba(224, 82, 139, 0.1));
    border-radius: 20px;
}

/* ==========================================================================
   Key Stats Section
   ========================================================================== */
#key-stats {
    background-color: #050505;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.05;
}

.watermark img {
    width: 100%;
    height: auto;
}

.stats-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.stats-header-modern h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-weight: 500;
}

.stats-tagline {
    font-size: 3rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.stats-tagline .highlight {
    color: #E0528B;
}

.stats-separator {
    width: 60px;
    height: 4px;
    background: #E0528B;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.stats-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    order: 1;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-number {
    order: 2;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-family: 'fieldwork-hum', serif;
}

.stat-number::after {
    content: '+';
    color: #E0528B;
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 5px;
}

.stat-item:nth-child(3) .stat-number::after,
.stat-item:nth-child(4) .stat-number::after {
    content: '';
}

/* ==========================================================================
   Services & Agents (Tabs)
   ========================================================================== */
.features-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-tab {
    padding: 15px 30px;
    border-radius: 50px;
    background: #f0f0f0;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-tab:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.feature-tab.active {
    background: #E0528B;
    color: white;
    box-shadow: 0 5px 15px rgba(224, 82, 139, 0.3);
}

.features-content-wrapper {
    position: relative;
    min-height: 400px;
}

.features-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeIn 0.5s ease-out;
}

.features-grid.active {
    display: grid;
}

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

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(224, 82, 139, 0.12);
    border-color: rgba(224, 82, 139, 0.3);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 2.8rem;
    line-height: 1;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    opacity: 1;
    color: #1a1a1a !important;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
    flex-grow: 1;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #E0528B;
    box-shadow: 0 20px 50px rgba(224, 82, 139, 0.15);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #E0528B;
    margin-bottom: 18px;
    font-size: 1.6rem;
}

/* ==========================================================================
   Method Section
   ========================================================================== */
.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.step {
    padding: 45px 35px;
    background: linear-gradient(135deg, #E0528B 0%, #BB8BA6 100%);
    color: white;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-10px) scale(1.05);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 15px;
}

.step h3 {
    color: white;
    margin-bottom: 18px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
    align-items: stretch;
    padding: 20px 0;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 400px;
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #E0528B;
}

.quote-icon {
    font-size: 3rem;
    color: #E0528B;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* ==========================================================================
   FAQ Section - Premium Dark Theme ( Lewis Standard )
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.faq-header p {
    font-size: 1.25rem;
    color: #b3b3b3;
}

.faq-list,
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.faq-item:hover {
    border-color: rgba(224, 82, 139, 0.3) !important;
}

.faq-item.active {
    border-color: #E0528B !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.faq-question {
    padding: 30px 35px !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
}

.faq-question::after {
    display: none !important;
    /* Force hide pseudo-icons on all pages */
}

.faq-answer {
    padding: 0 35px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    color: #b3b3b3 !important;
    line-height: 1.7 !important;
    font-size: 1.1rem !important;
    transition: all 0.4s ease !important;
    opacity: 0 !important;
}

.faq-item.active .faq-answer {
    padding: 0 35px 30px !important;
    max-height: 1000px !important;
    /* Larger max-height for safety */
    opacity: 1 !important;
}

.faq-icon {
    width: 32px !important;
    height: 32px !important;
    background: rgba(224, 82, 139, 0.15) !important;
    color: #E0528B !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(224, 82, 139, 0.2) !important;
}

.faq-item:hover .faq-icon {
    background: #E0528B !important;
    color: white !important;
    border-color: #E0528B !important;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg) !important;
}

.faq-answer p {
    color: #b3b3b3 !important;
}

/* ==========================================================================
   Contact Section & Form
   ========================================================================== */
.contact-section {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fdfdfd);
    overflow: hidden;
    padding: 100px 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 20%, rgba(224, 82, 139, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(187, 139, 166, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 5;
}

.agent-message {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.agent-message.playing {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.form-group input,
.select-container select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #333;
}

.form-group input:focus,
.select-container select:focus {
    outline: none;
    border-color: #E0528B;
    background: white;
    box-shadow: 0 0 0 4px rgba(224, 82, 139, 0.15);
}

.btn-primary[style*="width: 100%"] {
    background: #E0528B;
    color: white;
    border: none;
}

.btn-primary[style*="width: 100%"]:hover {
    background: #ce3d74;
}

.select-container {
    position: relative;
}

.select-container select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    color: #E0528B;
}

.contact-visual-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.stat-floating-card {
    position: absolute;
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    min-width: 140px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);

    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-floating-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: floatingContact 4s ease-in-out infinite;
}

@keyframes floatingContact {

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

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

.stat-floating-card.float-1 {
    top: -30px;
    right: -40px;
}

.stat-floating-card.float-2 {
    bottom: 50px;
    left: -50px;
}

.stat-floating-card .icon {
    font-size: 1.6rem;
    background: #fdf2f8;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stat-floating-card .label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.stat-floating-card .value {
    font-size: 1.1rem;
    color: #E0528B;
    font-weight: 800;
}

/* Contact Chat Visual */
.agent-card-visual {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    box-shadow: 0 40px 100px -20px rgba(224, 82, 139, 0.2), 0 20px 40px -10px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(224, 82, 139, 0.25);
    z-index: 10;
}

.agent-card-header {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-card-avatar {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.agent-card-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
    animation: avatarPulse 2s infinite;
}

@keyframes avatarPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.agent-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.agent-status {
    font-size: 0.75rem;
    color: #E0528B;
    display: flex;
    align-items: center;
    gap: 4px;
}

.agent-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #E0528B;
    border-radius: 50%;
}

.agent-card-body {
    padding: 24px;
    height: 340px;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0.8), rgba(255, 255, 255, 0.8));
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    position: relative;
}


.agent-bubble {
    padding: 14px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 0.92rem;
    line-height: 1.5;
    color: #1a1a1a;
    max-width: 280px;
    border-bottom-left-radius: 4px;
}

.agent-message.user .agent-bubble {
    background: #1a1a1a;
    color: white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 20px;
    margin-left: auto;
}

.agent-typing {
    display: flex;
    gap: 6px;
    padding: 15px 20px;
    background: white;
    border-radius: 20px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 5;
}

.agent-typing.active {
    opacity: 1;
    transform: translateY(0);
}

.agent-card-actions {
    display: flex;
    gap: 6px;
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Footer
   ========================================================================== */
/* Old footer styles removed - see .footer-modern below */



/* ==========================================================================
   UI Helpers & Progress
   ========================================================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, #E0528B, #BB8BA6);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Mobile / Tablet Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Hero layout order: Text (left) now appears before Stats (right) on mobile by default */

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .cta-buttons,
    .reassurance {
        justify-content: center;
    }

    .floating-stat {
        display: none;
    }
}

@media (max-width: 992px) {

    /* Mobile Menu Overlay - Unique styles preserved */
    .hamburger {
        display: block;
        z-index: 2000;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #E0528B;
        margin-bottom: 5px;
        transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    header nav {
        position: static;
        display: block;
        height: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);

        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li a {
        font-size: 1.8rem;
        color: #1a1a1a;
        font-weight: 700;
        margin: 15px 0;
    }

    header .btn {
        display: none;
    }
}


/* ==========================================================================
   Blog Styles
   ========================================================================== */
.blog-header-section {
    padding-top: 280px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.blog-header-section h1 {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 100px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 220px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(224, 82, 139, 0.1);
    color: #E0528B;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: #E0528B;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Article Page Specifics */
/* Article Page Specifics */
.article-page-header {
    background: transparent;
    /* Was white */
    padding-top: 80px;
    padding-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.article-meta {
    color: #b3b3b3;
    /* Was #555 */
    font-size: 0.95rem;
    margin-top: 25px;
}

/* --- Article Body: White Card Style (Light Mode) --- */
.article-body {
    max-width: 800px;
    margin: -40px auto 100px;
    /* Negative margin to overlap header slightly */
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1a1a1a;
    /* Black Text */
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
}

.article-body h2 {
    text-align: left;
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #1a1a1a;
    /* Black Headers */
    font-weight: 700;
}

.article-body p {
    margin-bottom: 25px;
    color: #333;
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #333;
}

.article-body li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-flex;
    /* Changed to flex but ensure block behavior via parent or margin */
    align-items: center;
    gap: 10px;
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    /* Reduced from 40px, but user said "pas assez d'espace"... wait */
    /* User said "Non pas asser d'espace". So I should INCREASE it or ensure separation? */
    /* "Non pas asser d'espace entre les deux" (Back link and Tag or Title?) */
    /* If Back Link is top, then Tag. */
    /* I'll make it display: block to ensure line break and margin. */
    display: block;
    width: fit-content;
    margin-bottom: 40px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.back-link:hover {
    color: #E0528B;
    transform: translateX(-5px);
}

.article-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(224, 82, 139, 0.95);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* --- Restored Hero Header Layout --- */
.article-page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 0 20px;
    color: white;
    margin-bottom: -60px;
    z-index: 10;
}

.article-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.article-header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.article-page-header>* {
    position: relative;
    z-index: 2;
}

.article-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 0;
    line-height: 1.1;
    margin: 25px 0;
    font-weight: 800;
    color: white;
    max-width: 900px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.article-page-header .article-tag {
    background: rgba(255, 255, 255, 0.2);

    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.article-page-header .back-link {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.article-page-header .back-link:hover {
    color: white;
    transform: translateY(-2px);
}

.article-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.article-meta svg {
    stroke: white;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

/* --- Article Navigation Variation (White Support) --- */
body.article-page header:not(.scrolled) .nav-menu {
    background: rgba(255, 255, 255, 0.9);
    /* More opaque */

    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.article-page header:not(.scrolled) .nav-menu li a {
    color: #E0528B;
}

body.article-page header:not(.scrolled) .nav-menu li a::after {
    background: #E0528B;
}

body.article-page header:not(.scrolled) .logo img {
    filter: none;
    /* Keep original logo color */
}

body.article-page header:not(.scrolled) .btn-header {
    border-color: #E0528B;
    color: #E0528B;
}

/* Latest Articles Section on Home */
.latest-articles-section {
    background: #f8f9fa;
    padding-bottom: 250px;
}

/* ==========================================================================
   Mobile Menu / Hamburger
   ========================================================================== */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    /* Default white for dark hero */
    margin-bottom: 6px;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Ensure hamburger is visible on white backgrounds (scrolled or active) */
header.scrolled .hamburger span,
.hamburger.active span {
    background-color: #1a1a1a;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1001;
        /* Higher than header bg but lower than hamburger */
        border-radius: 0;
        box-shadow: none;
        gap: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li a {
        font-size: 1.5rem;
        color: #1a1a1a;
    }

    .nav-menu li a:hover {
        color: #E0528B;
    }

    header .btn {
        display: none;
    }

    /* Force specific style for the button if it appears in the mobile menu */
    .nav-menu .btn,
    .overlay-nav .btn {
        color: #E0528B !important;
        background: white !important;
        border: 2px solid #E0528B !important;
        box-shadow: none !important;
    }
}

/* ==========================================================================
   Article Layout & Smart Sidebar
   ========================================================================== */
.article-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 180px 40px;
    /* Refined for more space */
}

.article-content-wrapper {
    flex: 1;
    min-width: 0;
}

.article-sidebar {
    width: 300px;
    position: sticky;
    top: 200px;
    /* Centered feel when scrolling */
    margin-top: 100px;
    /* Visible on load */
    flex-shrink: 0;
    display: none;
    max-height: calc(100vh - 250px);
    /* Stops higher before footer */
    overflow-y: auto;
    scrollbar-width: thin;
}

/* --- FAQ Specific Override for Articles (Black on White) --- */
.article-body .faq-container {
    background: #fcfcfc;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    margin-top: 50px;
}

.article-body .faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.article-body .faq-item:hover {
    border-color: #E0528B;
    box-shadow: 0 5px 15px rgba(224, 82, 139, 0.05);
}

.article-body .faq-question {
    color: #1a1a1a !important;
    padding: 20px 25px !important;
    font-weight: 700 !important;
    border-bottom: none !important;
}

.article-body .faq-answer {
    color: #444 !important;
    padding: 0 25px 25px !important;
    display: none;
    /* Ensure hidden initially */
}

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

.article-body .faq-answer p {
    color: #444 !important;
}

.article-body .faq-icon {
    background: rgba(224, 82, 139, 0.1) !important;
    color: #E0528B !important;
}

/* --- Global FAQ Section Styling (Homepage - Dark Mode) --- */
.faq-section {
    position: relative;
    background: #0a0a0a;
    color: white;
}

.faq-header h2 {
    color: white !important;
}

.faq-header p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.faq-item:hover,
.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(224, 82, 139, 0.4);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #E0528B;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #E0528B;
    color: white;
}

.faq-answer {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    display: none;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideInDown 0.3s ease;
}

/* --- Premium Quote Styling --- */
.expert-quote {
    background: linear-gradient(135deg, #fdfdfd 0%, #f7f7f7 100%);
    padding: 50px;
    border-radius: 30px;
    border-left: 5px solid #E0528B;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.expert-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 10rem;
    color: rgba(224, 82, 139, 0.05);
    font-family: serif;
}

.expert-quote p {
    font-size: 1.4rem !important;
    font-style: italic;
    color: #1a1a1a !important;
    line-height: 1.6 !important;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quote-author-info strong {
    display: block;
    color: #E0528B;
    font-size: 1rem;
}

.quote-author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Webkit scrollbar styling */
.article-sidebar::-webkit-scrollbar {
    width: 4px;
}

.article-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.article-sidebar::-webkit-scrollbar-thumb {
    background-color: #eee;
    border-radius: 4px;
}

@media (min-width: 1024px) {
    .article-sidebar {
        display: block;
    }

    .toc-box {
        display: none;
        /* Hide inline TOC on desktop */
    }
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.smart-toc-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 700;
}

.smart-toc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.smart-toc-link {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    display: block;
    padding-left: 15px;
    border-left: 2px solid transparent;
    line-height: 1.4;
    opacity: 0.8;
}

.smart-toc-link:hover {
    color: #E0528B;
    opacity: 1;
}

.smart-toc-link.active {
    color: #E0528B;
    border-left-color: #E0528B;
    font-weight: 700;
    opacity: 1;
}

.sidebar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

.reading-progress-ring {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: conic-gradient(#E0528B var(--progress, 0%), #eee var(--progress, 0%));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reading-progress-ring::before {
    content: '';
    position: absolute;
    width: 37px;
    height: 37px;
    background: white;
    border-radius: 50%;
}

.reading-progress-text {
    position: relative;
    font-size: 0.75rem;
    color: #E0528B;
    font-weight: 800;
    z-index: 2;
}

/* ==========================================================================
   Navigation Dropdown - Premium Clean Design
   ========================================================================== */
/* Attached Dropdown Base */
.has-dropdown {
    position: relative;
}

/* Parent Link - Subtle hover effect */
.has-dropdown>a {
    transition: color 0.2s ease;
}

.has-dropdown:hover>a {
    color: #E0528B !important;
}

/* Dropdown Icon Style */
.dropdown-icon {
    width: 10px;
    height: 10px;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    vertical-align: middle;
    opacity: 0.8;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown Menu - Compact Elegant Design */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);

    /* Elegant dark glassmorphism */
    background: rgba(20, 20, 25, 0.95);
    /* Subtle border */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    /* Refined shadow */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.02);

    min-width: 200px;
    padding: 12px;

    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    display: flex;
    flex-direction: column;
    gap: 4px;

    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Invisible bridge to prevent hover gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: transparent;
}

/* Elegant Hover State */
.dropdown-menu li a:hover {
    background: rgba(224, 82, 139, 0.12);
    color: #E0528B !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 180px;
        padding: 8px;
    }
}

/* Fix for mobile/touch if needed later, but focusing on hover for desktop now */
/* ==========================================================================
   RECOVERED STYLES: Agents IA & Infrastructure IA
   ========================================================================== */

/* --- Common Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, #E0528B, #BB8BA6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

.relative-container {
    position: relative;
    z-index: 2;
}

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

.text-white {
    color: white !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-light-gray {
    background-color: #f8f9fa !important;
}

/* --- Creative Hero (Agents IA) --- */
section.creative-hero {
    position: relative;
    padding: 200px 0 200px;
    background: #050505;
    color: white;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    animation: pulseOrb 8s infinite ease-in-out;
}

@keyframes pulseOrb {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

.hero-center-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;

}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #E0528B;
    border-radius: 50%;
    box-shadow: 0 0 10px #E0528B;
    animation: blink 2s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

.hero-title-lg {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-desc-lg {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(224, 82, 139, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(224, 82, 139, 0.6);
}

/* Floating Cards Decoration */
.floating-cards-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.8);

    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 4s;
}

@media (max-width: 1550px) {
    .floating-cards-container {
        display: none;
    }
}

@keyframes floatCard {

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

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

/* --- Educational Intro --- */
.educational-intro {
    background: white;
}

.intro-header {
    text-align: center;
    margin-bottom: 80px;
}

.intro-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.definition-highlight {
    border-left: 4px solid #E0528B;
    padding-left: 20px;
    font-style: italic;
    color: #555;
    margin-top: 30px;
    font-size: 1.1rem;
}

.agent-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s;
}

.pillar-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    font-size: 1.5rem;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pillar-card h4 {
    margin-top: 5px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pillar-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* --- Evolution Grid --- */
.evolution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.evo-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.evo-card.new-way {
    border: 2px solid #E0528B;
    background: linear-gradient(to bottom right, white, #fff0f6);
}

.evo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E0528B;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.evo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* --- Reveal Stagger Animations with Depth --- */
.hero-premium {
    /* Starting state for the "Zoom In" effect */
    transform: scale(0.96);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.5s ease-out;
    will-change: transform, opacity;
}

.hero-premium.page-loaded {
    transform: scale(1);
    opacity: 1;
}

.hero-reveal .hero-badge,
.hero-reveal h1,
.hero-reveal .hero-subtitle,
.hero-reveal .hero-cta-area,
.hero-reveal .hero-stats-inline {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-reveal.active .hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.hero-reveal.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-reveal.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-reveal.active .hero-cta-area {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.hero-reveal.active .hero-stats-inline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.evo-icon {
    font-size: 2.5rem;
}

.evo-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.evo-list {
    list-style: none;
}

.evo-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.list-danger li {
    color: #888;
}

.list-success li {
    color: #1a1a1a;
    font-weight: 500;
}

.results-bar {
    display: flex;
    justify-content: space-around;
    background: #050505;
    color: white;
    padding: 40px;
    border-radius: 20px;
    align-items: center;
}

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

.res-val {
    font-size: 3rem;
    font-weight: 700;
    color: #E0528B;
    line-height: 1;
    margin-bottom: 5px;
}

.res-lbl {
    font-size: 1rem;
    opacity: 0.8;
}

.result-divider {
    margin: 0 20px;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Neural Pipeline (Dark Section) --- */
section.section-dark {
    background: #050505;
    padding: 100px 0 140px;
    color: white;
}

.neural-pipeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pipeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pipeline-node {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}

.pipeline-node.node-active {
    border-color: #E0528B;
    background: rgba(224, 82, 139, 0.1);
    box-shadow: 0 0 30px rgba(224, 82, 139, 0.2);
}

.node-circle {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.pipeline-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.data-flow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #E0528B, transparent);
    animation: dataFlow 2s infinite linear;
}

@keyframes dataFlow {
    from {
        left: -50%;
    }

    to {
        left: 100%;
    }
}

/* --- Architecture & Integrations --- */
.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.integration-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.integration-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 1.8rem;
}

.category-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.integration-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tool-badge {
    background: #f0f2f5;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.integration-feature {
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #444;
}

.integration-trust-banner {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 2rem;
}

.trust-text strong {
    display: block;
    color: #1a1a1a;
}

.trust-text span {
    font-size: 0.9rem;
    color: #666;
}

/* --- Use Cases Grid --- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.use-case-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.use-case-icon {
    font-size: 2.5rem;
    background: #fff0f6;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E0528B;
}

.dept-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E0528B;
    background: rgba(224, 82, 139, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}

.use-case-dept h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.use-case-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.use-case-workflow {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.workflow-step {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.step-num {
    background: #E0528B;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    font-weight: bold;
}

.use-case-metrics {
    display: flex;
    gap: 15px;
}

.metric-pill {
    flex: 1;
    background: #050505;
    color: white;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.pill-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #E0528B;
}

.pill-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* --- Security Section --- */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.security-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s;
}

.security-card:hover {
    transform: translateY(-5px);
}

.sec-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- Hero Infra (Infrastructure Page) --- */
section.hero-infra {
    padding: 200px 0 200px;
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-infra-content {
    max-width: 800px;
    z-index: 3;
}

/* Indigo tint */
.infra-card-1 {
    border-left: 3px solid #6366f1;
}

.infra-card-2 {
    border-left: 3px solid #8b5cf6;
}

/* --- Infrastructure Diagrams --- */
.infra-diagram-section {
    background: white;
}

.infra-diagram-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 25px;
}

.diagram-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.diagram-node {
    background: white;
    border: 1px solid #ddd;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.diagram-core {
    position: relative;
}

.core-circle {
    width: 180px;
    height: 180px;
    background: #050505;
    border-radius: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.core-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.core-label {
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Timeline --- */
.infra-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.timeline-track {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-marker {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid #050505;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* --- Table --- */
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.infra-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.infra-table th {
    background: #050505;
    color: white;
    padding: 20px;
    text-align: left;
}

.infra-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.infra-table tr:last-child td {
    border-bottom: none;
}

.infra-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* --- Final CTA & Footer Tweaks --- */
.use-cases-cta {
    background: #050505;
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.infra-cta {
    background: white;
}

.footer-new {
    background: #E0528B;
    /* Pink */
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-nav h4,
.footer-contact-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-nav a,
.footer-contact-link,
.footer-location {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-nav a:hover,
.footer-contact-link:hover {
    color: #000;
    transform: translateX(5px);
}

.footer-big-logo {
    text-align: center;
    margin: 0;
    line-height: 0;
}

.footer-big-logo img {
    width: 100%;
    max-width: none;
    height: auto;
    filter: brightness(0);
    /* Make logo BLACK */
    opacity: 0.8;
    transition: all 0.5s ease;
}

.footer-big-logo img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-bottom-bar {
    text-align: center;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    color: rgba(0, 0, 0, 0.3);
    /* Subtle copyright */
    font-weight: 600;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);

    z-index: 2000;
    display: none;
    /* JS toggles 'active' class */
    align-items: center;
    justify-content: center;
}

.mobile-overlay.active {
    display: flex;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.overlay-nav a {
    font-size: 1.35rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.overlay-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 20px;
    margin: 10px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.overlay-group span {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.overlay-group span::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #E0528B;
    border-bottom: 2px solid #E0528B;
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-bottom: 2px;
}

.overlay-group.expanded span::after {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.overlay-nav .sub-link {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.6);
    height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 0;
}

.overlay-group.expanded .sub-link {
    height: auto;
    opacity: 1;
    margin: 12px 0;
    pointer-events: auto;
    padding: 5px 0;
}

.overlay-group.expanded {
    background: rgba(224, 82, 139, 0.1);
    border: 1px solid rgba(224, 82, 139, 0.2);
}

/* Responsiveness */
@media (max-width: 992px) {

    .intro-split-layout,
    .neural-pipeline,
    .infra-diagram-container,
    .infra-timeline,
    .security-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .hero-title-lg {
        font-size: 3rem;
    }

    .floating-cards-container {
        opacity: 0.3;
    }

    .pipeline-connector {
        width: 2px;
        height: 50px;
        margin: 0 auto;
    }

    .data-flow-animation {
        width: 100%;
        height: 50%;
        top: 0;
        animation: flowVert 2s infinite linear;
    }

    @keyframes flowVert {
        from {
            top: -50%;
        }

        to {
            top: 100%;
        }
    }
}

/* ==========================================================================
   Premium Theme (Dark Mode & Glassmorphism)
   ========================================================================== */

/* Hero Premium */
.hero-premium {
    min-height: 100vh;
    padding-top: 300px;
    /* Force extra space */
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050505;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.08) 0%, transparent 50%);
    animation: gradientPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-10%, -10%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-premium-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-premium h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.hero-link:hover {
    opacity: 1;
    color: #E0528B;
    transform: translateX(5px);
}

.hero-premium p.hero-description {
    font-size: 1.4rem;
    color: #d4d4d4;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(224, 82, 139, 0.15);
    border: 1px solid rgba(224, 82, 139, 0.3);
    border-radius: 50px;
    color: rgba(224, 82, 139, 1);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;

}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 500px;
    transform-origin: top;
    opacity: 0.3;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

.hero-tagline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(224, 82, 139, 0.9);
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-floating-card {
    position: absolute;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-floating-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(224, 82, 139, 0.4);
    transform: scale(1.05);
}

.hero-floating-card i {
    color: #E0528B;
    font-size: 1.1em;
}

.card-code {
    font-family: 'Courier New', monospace;
    border-left: 3px solid #E0528B;
    font-size: 0.8rem;
}

.card-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    background: rgba(224, 82, 139, 0.1);
    border: 1px solid rgba(224, 82, 139, 0.2);
}

.float-card-1 {
    top: 20%;
    left: 10%;
    animation: float-card 6s ease-in-out infinite;
}

.float-card-2 {
    bottom: 25%;
    right: 10%;
    animation: float-card-delayed 7s ease-in-out infinite 1s;
}

.float-card-3 {
    top: 20%;
    right: 10%;
    animation: float-card 8s ease-in-out infinite 2s;
}

.float-mini-1 {
    bottom: 35%;
    left: 12%;
    animation: float-card-delayed 5s ease-in-out infinite;
}

.float-mini-2 {
    top: 35%;
    right: 15%;
    animation: float-card 9s ease-in-out infinite;
}

@keyframes float-card {

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

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

@keyframes float-card-delayed {

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

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

/* ==========================================================================
   Mobile Responsive Design - Comprehensive Media Queries
   ========================================================================== */

/* Tablet & Below (992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    /* Hero Premium Mobile */
    .hero-premium {
        min-height: auto;
        padding: 180px 0 180px;
    }

    .hero-premium h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
        max-width: 100%;
    }

    .hero-stats-inline {
        gap: 12px;
        margin-top: 50px;
    }

    .stat-inline {
        font-size: 0.85rem;
    }

    /* Services Grid */
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Hide floating elements */
    .hero-floating-elements {
        display: none;
    }

    /* Section titles */
    .services-premium h2,
    .testimonials-premium h2,
    .cta-premium h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Landscape & Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Premium Mobile */
    .hero-premium {
        padding: 120px 0 60px;
    }

    .hero-premium h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.3;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px !important;
        margin-top: 30px !important;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-link {
        text-align: center;
        font-size: 0.95rem;
    }

    /* Stats - Stack vertically on mobile */
    .hero-stats-inline {
        flex-direction: column;
        gap: 8px;
        margin-top: 40px;
    }

    .stat-separator {
        display: none;
    }

    .stat-inline {
        font-size: 0.85rem;
        text-align: center;
    }

    /* Services Grid - Single column */
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section Spacing */
    section {
        padding: 60px 0;
    }

    .services-premium,
    .hero-premium,
    .testimonials-premium,
    .cta-premium {
        padding: 80px 0 60px;
    }

    /* Typography */
    h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Navigation */
    .nav-links {
        flex-direction: column;
        gap: 25px;
        padding: 30px 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Fix Mobile Menu Button */
    .overlay-nav .btn {
        color: #E0528B !important;
        background: white !important;
        font-size: 1.1rem !important;
        margin-top: 20px;
        width: fit-content;
        align-self: center;
    }

    /* Service Cards */
    .service-card-premium {
        padding: 30px 25px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card-premium {
        width: 100%;
        min-width: 100%;
    }

    /* CTA Sections */
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .services-premium h2,
    .testimonials-premium h2,
    .cta-premium h2 {
        font-size: 2rem;
    }

    .services-premium .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    /* Stats Grid */
    .stats-grid {
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }


    /* Floating stats */
    .floating-stat {
        display: none !important;
    }
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero-premium {
        padding: 140px 0 140px;
    }

    .hero-premium h1 {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
        margin-bottom: 15px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-stats-inline {
        margin-top: 35px;
        gap: 6px;
    }

    .stat-inline {
        font-size: 0.8rem;
    }

    /* Typography */
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Spacing */
    section {
        padding: 50px 0;
    }

    .services-premium,
    .testimonials-premium,
    .cta-premium {
        padding: 60px 0 50px;
    }

    /* Service Cards */
    .service-card-premium {
        padding: 25px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card-premium h3 {
        font-size: 1.4rem;
    }

    .service-card-premium p {
        font-size: 0.95rem;
    }

    /* Section titles */
    .services-premium h2,
    .testimonials-premium h2,
    .cta-premium h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .services-premium .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    .hero-premium h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    .stat-inline {
        font-size: 0.75rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .services-premium h2,
    .testimonials-premium h2,
    .cta-premium h2 {
        font-size: 1.6rem;
    }
}


.hero-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInStats 1s ease-out 0.8s forwards;
}

@keyframes fadeInStats {
    to {
        opacity: 1;
    }
}

.stat-inline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.stat-separator {
    color: rgba(224, 82, 139, 0.5);
    font-size: 0.8rem;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
    padding: 15px 25px;
    /* Reduced padding */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: statFadeIn 0.8s ease-out forwards;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 0.8s;
}

.hero-stat-item:nth-child(2) {
    animation-delay: 1s;
}

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



.hero-stat-item h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #E0528B, #BB8BA6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1;
}

.hero-stat-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}



/* Services Premium */
.services-premium {
    padding: 120px 0;
    background: #0a0a0a;
}

.services-premium h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.services-premium .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #d4d4d4;
    margin-bottom: 80px;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-premium {
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.05) 0%, rgba(187, 139, 166, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E0528B, #BB8BA6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    border-color: #E0528B;
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.1) 0%, rgba(187, 139, 166, 0.1) 100%);
}

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

.service-card-premium .service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.service-card-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.service-card-premium p {
    color: #d4d4d4;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-card-premium .service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #E0528B;
    font-weight: 600;
    margin-top: 25px;
    transition: gap 0.3s ease;
}

.service-card-premium:hover .service-link {
    gap: 15px;
}

/* Testimonials Premium */
.testimonials-premium {
    padding: 120px 0;
    background: #0a0a0a;
}

.testimonials-premium h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: white;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 80s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-380px * 6 - 40px * 6));
    }
}

.testimonial-card-premium {
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.05) 0%, rgba(187, 139, 166, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    width: 380px;
    min-width: 380px;
    min-height: 260px;
    flex-shrink: 0;
    white-space: normal;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 82, 139, 0.3);
}

.testimonial-card-premium .quote-icon {
    font-size: 3rem;
    color: #E0528B;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card-premium .testimonial-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 30px;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    object-fit: cover;
}

.author-info-premium h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info-premium p {
    color: #d4d4d4;
    font-size: 0.9rem;
}

/* CTA Premium */
.cta-premium {
    padding: 120px 0;
    background: #050505;
    text-align: center;
    position: relative;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 82, 139, 0.3), transparent);
}

.cta-premium h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: white;
}

/* --- Infrastructure IA Page Overrides (Light Theme) --- */
.infra-faq-light .faq-item {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.infra-faq-light .faq-question {
    color: #1a1a1a !important;
}

.infra-faq-light .faq-question:hover {
    color: #E0528B !important;
}

.infra-faq-light .faq-answer p {
    color: #555 !important;
}

.infra-faq-light .faq-item.active {
    border-color: #E0528B !important;
    background: #fff9fc !important;
}

/* ==========================================================================
   Footer Modern - Bold Synthesis-Inspired Design
   ========================================================================== */

.footer-modern {
    background: linear-gradient(135deg, #E0528B 0%, #9B4F7A 50%, #6B3E5C 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(224, 82, 139, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(187, 139, 166, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Top Grid Layout */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.newsletter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 4px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-submit {
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #E0528B;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.newsletter-submit svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

/* Navigation Columns */
.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-nav-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-col a:hover {
    color: white;
    transform: translateX(3px);
}

/* Social & Certification */
.footer-social-cert {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: white;
    color: #E0528B;
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
}

.footer-location {
    margin-top: auto;
}

.footer-location p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Large Brand Text Overlay - Optimized for "Cut-off" effect */
.footer-large-text {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 60px 0 -10vw;
    /* Negative margin to push it down and cut off */
    user-select: none;
    pointer-events: none;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.footer-large-text span {
    font-size: clamp(10rem, 38vw, 40rem);
    /* Massive size for impact */
    font-weight: 900;
    letter-spacing: -0.05em;
    /* Tight letter spacing like Synthesis */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 0.7;
    /* Tight line-height to force cut-off */
    transform: translateY(15%);
    /* Extra vertical offset to hide bottom part */
    white-space: nowrap;
    opacity: 0.4;
}

/* Fix SEO links overlap with watermark and improve legibility */
.footer-seo-links {
    position: relative;
    z-index: 2;
}

.footer-seo-links a {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.85rem !important;
    transition: color 0.3s ease;
}

.footer-seo-links a:hover {
    color: #E0528B !important;
}

.footer-seo-links span {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
}

/* Fix for horizontal overflow on small devices - ensure it doesn't leak out */
@media (max-width: 768px) {
    .footer-large-text {
        margin: 40px 0 -5vw;
    }

    .footer-large-text span {
        font-size: clamp(5rem, 30vw, 15rem);
        transform: translateY(10%);
    }
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);

    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Mobile Responsive */
/* Mobile Responsive Footer Fixes */
@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand,
    .footer-newsletter,
    .newsletter-signup,
    .footer-nav-col,
    .footer-social-cert {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-brand h3 {
        font-size: 2.5rem !important;
        /* Keep it large as requested */
        margin-bottom: 15px;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .newsletter-form {
        flex-direction: row !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50px !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 4px !important;
        gap: 0 !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .newsletter-form input {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        height: auto !important;
        width: 100% !important;
        padding: 10px 15px !important;
        text-align: left !important;
        flex: 1 !important;
        outline: none !important;
    }

    .newsletter-submit {
        position: static !important;
        margin: 0 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: white !important;
        color: var(--primary-color, #E0528B) !important;
        border: none !important;
        flex-shrink: 0 !important;
    }

    .footer-social {
        justify-content: center !important;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-large-text span {
        font-size: clamp(3rem, 20vw, 10rem);
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 60px 0 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-large-text span {
        font-size: clamp(3rem, 30vw, 8rem);
    }
}

@media (max-width: 480px) {
    .footer-brand h3 {
        font-size: 2.2rem !important;
    }
}

/* ==========================================================================
   Article Page Header Redesign (Consolidated)
   ========================================================================== */

.article-page-header {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    border-radius: 0 !important;
    overflow: hidden;
    color: #ffffff;
    /* White text for premium dark mode look */

    /* SIMPLIFIED FULL WIDTH - Direct Child of Body */
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 180px 0 0 !important;
    /* Visual offset to clear navbar */
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

/* Removed conflicting white background override for Article Pages to fix the top white band issue */

/* Logo handled by app.js */
/* body.article-page header .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
} */

/* Dark overlay REMOVED for clarity */
.article-page-header::before {
    display: none;
}

/* Glassmorphic content wrapper - Dark Glass ("Smoke") */
.article-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 60px;

    /* Dark Glass Effect */
    background: rgba(0, 0, 0, 0.4);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    margin: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

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

/* Back Link - Positioned to clear Navbar */
.back-link {
    position: absolute;
    top: 200px;
    /* Moved down to 200px */
    left: 50px;
    z-index: 1000 !important;
    /* Forced Z-Index */
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;

    /* Dark Glass button for high contrast against image */
    background: rgba(0, 0, 0, 0.6) !important;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;

    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer !important;
}

.back-link:hover {
    color: #E0528B;
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(-5px);
    border-color: #E0528B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.article-tag {
    display: inline-block;
    background: #E0528B;
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    box-shadow: none;
    font-family: 'Space Grotesk', sans-serif;
}

.article-page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 35px;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    /* Shadow added back for white text */
    color: #ffffff;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-meta .inline-icon {
    width: 20px;
    height: 20px;
    stroke: #E0528B;
    fill: none;
    stroke-width: 2;
}

.article-layout {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 100px;
    padding: 0 24px;
    gap: 60px;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
}

.article-content-wrapper {
    flex: 1;
    min-width: 0;
}

.article-body p {
    font-family: 'fieldwork', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1a1a1a;
}

.article-body h2,
.article-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #111;
}

@media (max-width: 900px) {
    .article-page-header {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
        background-attachment: scroll;
        width: 100vw !important;
        background-position: center top !important;
    }

    .back-link {
        top: 100px;
        left: 20px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .article-header-content {
        padding: 40px 20px;
        margin: 40px 15px 0;

        background: rgba(255, 255, 255, 0.8);
    }

    .article-page-header h1 {
        font-size: 2.2rem;
    }

    .article-layout {
        flex-direction: column;
        margin-top: 40px;
        gap: 40px;
    }

    .article-sidebar {
        display: none;
    }
}


/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    position: relative;
    background: #050505;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

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

.contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: white;
}

.contact-header p {
    font-size: 1.2rem;
    color: #b3b3b3;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: #b3b3b3;
    font-weight: 500;
}

.form-input,
.form-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E0528B;
    background: rgba(224, 82, 139, 0.05);
    box-shadow: 0 0 0 4px rgba(224, 82, 139, 0.1);
}

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

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #E0528B 0%, #a855f7 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(224, 82, 139, 0.3);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ==========================================================================
   Help Hub - Premium AI Assistant Widget
   ========================================================================== */
.help-hub {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 6000;
}

/* --- Backdrop Overlay --- */
.hub-backdrop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 5999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hub-backdrop-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* --- Main Container --- */
.help-hub-container {
    position: relative;
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    transform-origin: bottom right;
}

/* Breathing glow behind the trigger */
.hub-trigger-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(224, 82, 139, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    opacity: 0.8;
    animation: hubBreathe 4s ease-in-out infinite;
    border-radius: inherit;
    transition: opacity 0.4s ease;
}

@keyframes hubBreathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* Trigger Hover Effects */
.help-hub:not(.is-active) .help-hub-container:hover {
    transform: translateY(-4px) scale(1.05);
}

.help-hub:not(.is-active) .help-hub-container:hover .hub-orb {
    box-shadow:
        0 12px 32px rgba(224, 82, 139, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.help-hub:not(.is-active) .help-hub-container:hover .orb-core {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
}

.help-hub:not(.is-active) .help-hub-container:hover .hub-trigger-glow {
    background: radial-gradient(circle, rgba(224, 82, 139, 0.6) 0%, transparent 70%);
    animation: none;
    transform: translate(-50%, -50%) scale(1.2);
}

/* --- Active State (Expanded Widget) --- */
.help-hub.is-active {
    bottom: 30px;
    right: 30px;
}

.help-hub.is-active .help-hub-container {
    width: 380px;
    /* Increased from 360 to prevent horizontal text overflow */
    height: 560px;
    /* Increased from 520 to accommodate the 3 buttons */
    border-radius: 28px;
    background: rgba(224, 82, 139, 0.15);
    /* Stronger pink tint */
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(224, 82, 139, 0.3);
    box-shadow:
        0 30px 60px -10px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(224, 82, 139, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    cursor: default;
    transform-origin: bottom right;
}

.help-hub.is-active .hub-trigger-glow {
    opacity: 0;
    /* Hide external glow when open */
}

/* --- Views Management --- */
.hub-trigger-view,
.hub-card-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hub-trigger-view {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Magical Orb Trigger Styling */
.hub-orb {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.8), rgba(168, 85, 247, 0.8));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 24px rgba(224, 82, 139, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    z-index: 2;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0.4;
    transition: all 0.4s ease;
    mix-blend-mode: overlay;
    animation: pulseCore 3s ease-in-out infinite alternate;
}

@keyframes pulseCore {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.orb-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Trigger View hiding */
.help-hub.is-active .hub-trigger-view {
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
}

/* --- Card Content View --- */
.hub-card-view {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    display: flex;
    flex-direction: column;
}

.help-hub.is-active .hub-card-view {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
    /* Slight delay to let container expand first */
}

.hub-card-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* Added to keep internal boundaries clean */
}

/* Header */
.hub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    /* Reduced to save space */
}

.hub-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hub-logo-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(224, 82, 139, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-header-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hub-header-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: scale(1.05);
}

/* Hero Section */
.hub-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 16px;
    /* Reduced to save space */
}

.hub-hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(224, 82, 139, 0.15);
    color: #E0528B;
    border: 1px solid rgba(224, 82, 139, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    /* Tiny bit smaller */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.hub-hero h2 {
    font-size: 1.8rem;
    /* Reduced from 2.2rem to prevent horizontal overflow */
    color: white !important;
    margin: 0 0 6px 0;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hub-hero p {
    font-size: 1.05rem;
    /* Down from 1.1 */
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0;
    font-weight: 400;
}

/* Action Buttons */
.hub-main-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 4px;
    /* Reduced from 30px since suggestions are gone */
}

.hub-action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid transparent;
}

.hub-action-btn.primary-action {
    background: rgba(224, 82, 139, 0.1);
    border-color: rgba(224, 82, 139, 0.3);
    color: white;
}

.btn-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.4) 0%, rgba(168, 85, 247, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hub-action-btn.secondary-action {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: white;
}

.btn-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.primary-action .btn-icon {
    background: linear-gradient(135deg, #E0528B, #a855f7);
    box-shadow: 0 4px 15px rgba(224, 82, 139, 0.4);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 1;
    white-space: nowrap;
    /* Prevent multi-line wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Fallback for very long text */
}

.btn-text strong {
    font-size: 0.95rem;
    /* Down from 1.05rem */
    font-weight: 700;
    letter-spacing: 0.2px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.btn-arrow {
    z-index: 1;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.hub-action-btn:hover {
    transform: translateY(-2px);
}

.hub-action-btn.primary-action:hover {
    border-color: rgba(224, 82, 139, 0.6);
    box-shadow: 0 10px 30px rgba(224, 82, 139, 0.2);
}

.hub-action-btn.primary-action:hover .btn-glow-bg {
    opacity: 1;
}

.hub-action-btn.primary-action:hover .btn-icon {
    transform: scale(1.1);
}

.hub-action-btn.primary-action:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.hub-action-btn.secondary-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.hub-action-btn.secondary-action:hover .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .help-hub {
        bottom: 20px;
        right: 20px;
    }

    /* Target specific IDs or use stronger selectors to ensure these apply */
    .help-hub #helpHubContainer.help-hub-container {
        width: 48px !important;
        height: 48px !important;
        min-width: 0 !important;
    }

    .help-hub .hub-orb {
        width: 48px !important;
        height: 48px !important;
    }

    .help-hub .orb-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .help-hub.is-active #helpHubContainer.help-hub-container {
        width: calc(100vw - 32px) !important;
        height: calc(100vh - 80px) !important;
        max-width: 400px !important;
        max-height: 650px !important;
        border-radius: 24px !important;
    }

    .help-hub.is-active .hub-hero h2 {
        font-size: 1.8rem;
    }

    .help-hub.is-active .hub-card-inner {
        padding: 20px;
    }
}

/* --- Sortlist Trust Badge --- */
.sortlist-trust-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    text-decoration: none !important;
    outline: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.sortlist-trust-row:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

.sortlist-trust-row:focus,
.sortlist-trust-row:active,
.sortlist-trust-row:visited {
    text-decoration: none !important;
    outline: none;
    color: inherit;
}

.sortlist-trust-row .trust-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.sortlist-trust-row .trust-stars svg {
    width: 16px;
    height: 16px;
    fill: #FFD700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.sortlist-trust-row .trust-score {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.sortlist-trust-row .trust-label {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.sortlist-trust-row .trust-source {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none !important;
    border: none;
    letter-spacing: 0.5px;
}

/* Footer Sortlist Integration */
.sortlist-footer-row {
    margin-bottom: 20px;
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-self: flex-end;
}

@media (max-width: 900px) {
    .sortlist-footer-row {
        align-self: center;
        margin-bottom: 15px;
        transform: scale(0.9);
    }
}


/* --- Footer Beautiful CTA Button --- */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(224, 82, 139, 0.4);
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 0 0 rgba(224, 82, 139, 0);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, rgba(224, 82, 139, 0.4), rgba(168, 85, 247, 0.6));
    box-shadow: 0 15px 40px rgba(224, 82, 139, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.footer-cta-btn:hover::before {
    left: 150%;
}

.footer-cta-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffffff !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    animation: cta-pulse-svg 2s infinite ease-in-out;
}

@keyframes cta-pulse-svg {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
        color: #FFD700;
        stroke: #FFD700;
    }
}

@media (max-width: 900px) {
    .footer-cta-btn {
        margin-bottom: 20px;
    }
}


/* Footer Trust Stars Fix */
.trust-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.trust-stars svg {
    width: 16px;
    height: 16px;
    fill: #FFD700;
}

.sortlist-trust-row {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.sortlist-trust-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-score {
    font-weight: 700;
    color: white;
}

.trust-label {
    opacity: 0.5;
}

.trust-source {
    font-weight: 500;
}

/* ==========================================================================
   Site IA Premium Components
   ========================================================================== */
/* Fix Premium Headings Legibility on Dark Backgrounds */
.section-premium h2, 
.cta-section-premium h2,
.site-ia-case-card h3,
.site-ia-feature-card h3 {
    color: #ffffff !important;
}

.site-ia-case-card p.case-description,
.site-ia-feature-card p,
.site-ia-page p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Premium Primary Button (previously missing) */
.btn-primary-premium {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #E0528B, #9650B4);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 25px rgba(224, 82, 139, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(224, 82, 139, 0.6);
    background: linear-gradient(135deg, #F0629B, #A660C4);
    color: #ffffff !important;
}

.btn-primary-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.btn-primary-premium:hover::after {
    left: 150%;
}

.site-ia-feature-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 82, 139, 0.1);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.site-ia-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 82, 139, 0.5);
    box-shadow: 0 20px 40px rgba(224, 82, 139, 0.2);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(224, 82, 139, 0.05));
}

.site-ia-feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #E0528B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.site-ia-feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.site-ia-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.site-ia-case-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.site-ia-case-card::before {
    content: attr(data-initial);
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    transition: color 0.5s ease;
}

.site-ia-case-card:hover::before {
    color: rgba(224, 82, 139, 0.05);
}

.site-ia-case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(224, 82, 139, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(224, 82, 139, 0.1);
}

.site-ia-case-card>* {
    z-index: 1;
    position: relative;
}

.site-ia-case-tag {
    background: rgba(224, 82, 139, 0.15);
    color: #E0528B;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 30px;
    border: 1px solid rgba(224, 82, 139, 0.3);
}

.site-ia-case-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.site-ia-case-card .case-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.5;
}

.site-ia-case-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 40px;
}

.site-ia-case-card ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #d4d4d4;
    line-height: 1.5;
}

.site-ia-case-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 2px;
    color: #E0528B;
    font-weight: bold;
}

.site-ia-case-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.site-ia-case-link:hover {
    color: #E0528B;
}

.site-ia-case-link span {
    transition: transform 0.3s ease;
}

.site-ia-case-link:hover span {
    transform: translateX(5px) translateY(-5px);
}

/* Site IA Grids Layouts (Previously missing) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .case-studies-grid, .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-studies-grid, .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Consolidation of Premium Hero Styles --- */
.hero-premium {
    min-height: 100vh;
    padding: 240px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050505;
    background:
        radial-gradient(ellipse 150% 100% at 50% -10px, rgba(224, 82, 139, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 70% 20%, rgba(150, 80, 180, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 30% 60%, rgba(100, 100, 200, 0.2) 0%, transparent 50%);
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 82, 139, 0.25) 0%, transparent 60%);
    border-radius: 50%;
    animation: float-orb-1 20s ease-in-out infinite;
    z-index: 0;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 100, 200, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: float-orb-2 25s ease-in-out infinite;
    z-index: 0;
}

.hero-premium .container {
    position: relative;
    z-index: 10;
    /* Ensure content is above background layers */
}

.hero-premium h1 {
    font-size: clamp(32px, 6vw, 64px);
    white-space: normal;
    /* Allow wrapping for long headlines */
    margin-bottom: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.hero-premium h1 .highlight {
    background: linear-gradient(135deg, #c97bdb, #E0528B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-top: 10px;
}

.glow-blue {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #A855F7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.glow-pink {
    background: rgba(224, 82, 139, 0.1);
    border: 1px solid rgba(224, 82, 139, 0.2);
    color: #E0528B;
    box-shadow: 0 0 20px rgba(224, 82, 139, 0.2);
}

.glow-purple {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #9333EA;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}

/* --- Premium Layout Elements --- */
.section-premium {
    padding: 100px 0;
    background-color: #050505;
    position: relative;
    z-index: 2;
}

.cta-section-premium {
    padding: 120px 0;
    background: linear-gradient(to bottom, #050505 0%, #11050a 100%);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-dark {
    background: #050505 !important;
}
.footer-dark::before {
    display: none !important;
}

.glow-gold {
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    color: #FACC15;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
}

.glow-blue {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.glow-pink {
    box-shadow: 0 0 30px rgba(224, 82, 139, 0.4);
}

.glow-purple {
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.4);
}

.glow-gold {
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.ambient-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.glow-pink-top-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(224, 82, 139, 1) 0%, transparent 70%);
}

.glow-purple-bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(120, 100, 200, 1) 0%, transparent 70%);
}

.glow-blue-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(100, 100, 200, 1) 0%, transparent 70%);
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

@keyframes float-orb-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -100px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

@keyframes float-orb-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-80px, 80px) scale(1.15);
    }

    66% {
        transform: translate(60px, -60px) scale(0.85);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes breatheGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes slideInRow {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

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

@keyframes floatBadge {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-6px);
    }
}

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

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

@keyframes typingBounce {

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

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@keyframes dot-appear {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    60% {
        opacity: 1;
        transform: scale(1.2);
    }

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

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}