/* ===========================
   Scalens Brand Colors
   =========================== */
:root {
    --primary-blue: #001756;
    --agenda: #CFC923;
    --results: #1ABC9C;
    --fy-results: #3498DB;
    --minutes: #9C00F6;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    --text-dark: #212529;
    --border-color: #DEE2E6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--fy-results);
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--fy-results);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover:before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: var(--fy-results);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background-color: var(--fy-results);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--results);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-login {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fy-results) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Bubbles */
.hero-bubbles {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bubble {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 20px 35px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.bubble:nth-child(1) {
    animation-delay: 0.2s;
}

.bubble:nth-child(2) {
    animation-delay: 0.4s;
}

.bubble:nth-child(3) {
    animation-delay: 0.6s;
}

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

.bubble:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Chat Demo Section */
.chat-demo {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 60px 80px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    animation-delay: 0.8s;
    animation-fill-mode: both;
    transition: all 0.4s ease;
}

.chat-intro {
    text-align: center;
    margin-bottom: 40px;
}

.chat-intro h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.chat-intro p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
}

.chat-input-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 8px 8px 25px;
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.chat-input-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.chat-input {
    flex: 1;
    padding: 18px 5px;
    border: none;
    background: transparent;
    font-size: 17px;
    outline: none;
    color: var(--text-dark);
    font-weight: 400;
}

.chat-input::placeholder {
    color: var(--gray-medium);
    font-weight: 300;
}

.chat-send-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--fy-results), var(--results));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.chat-send-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.6);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Expanded Chat Demo */
.chat-demo.expanded {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    min-height: 600px;
    max-height: 70vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
}

.chat-demo.expanded .chat-intro {
    display: none;
}

.hero .container {
    position: relative;
    min-height: 800px;
}

.chat-messages {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 300px;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-message {
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
    animation: messageSlide 0.3s ease;
}

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

.chat-message.user {
    background: linear-gradient(135deg, var(--fy-results), var(--results));
    color: var(--white);
    align-self: flex-end;
    margin-left: auto;
}

.chat-message.bot {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    align-self: flex-start;
    border: 1px solid rgba(52, 152, 219, 0.2);
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.chat-message.bot strong {
    font-weight: 600;
    color: var(--navy);
}

.chat-message.typing {
    font-style: italic;
    opacity: 0.8;
}

.chat-message.limit-message {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: var(--white);
    max-width: 100%;
}

.chat-message.limit-message a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.chat-message.limit-message a:hover {
    color: var(--agenda);
}

.questions-remaining {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
    flex-shrink: 0;
}

.chat-demo.expanded .chat-input-wrapper {
    flex-shrink: 0;
}

/* ===========================
   Logo Carousel - Animated Scroll
   =========================== */
.logo-carousel {
    background-color: var(--white);
    padding: 60px 0;
    overflow: hidden;
}

.logo-scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logo-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scroll-left 100s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.logo-item img {
    max-height: 70px;
    max-width: 200px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(52, 152, 219, 0.1) 2px, transparent 2px),
        radial-gradient(circle, rgba(26, 188, 156, 0.08) 2px, transparent 2px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(26, 188, 156, 0.05) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.features .container::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, rgba(26, 188, 156, 0.04) 0%, rgba(52, 152, 219, 0.04) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.features .container {
    position: relative;
}

/* Additional modern geometric decorations */
.feature-grid::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 40%, rgba(52, 152, 219, 0.03) 40%, rgba(52, 152, 219, 0.03) 60%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.feature-grid::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(26, 188, 156, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: 0;
    pointer-events: none;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
    z-index: 1;
}

.feature-tab {
    padding: 18px 40px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-medium);
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

.feature-tab:hover {
    color: var(--primary-blue);
}

.feature-tab.active {
    color: var(--primary-blue);
    border-bottom-color: var(--fy-results);
}

.feature-content {
    display: none;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-content.active {
    display: block;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-label {
    display: inline-block;
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--fy-results);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-text h2 {
    font-size: 52px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
}

.feature-subtitle {
    font-size: 17px;
    color: var(--gray-dark);
    margin-bottom: 35px;
    line-height: 1.7;
}

.feature-media {
    position: relative;
    background: transparent;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: visible;
}

.feature-media > img {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-media > img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(26, 188, 156, 0.06) 100%);
    border-radius: 24px;
    z-index: -1;
}


.feature-media img {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, rgba(26, 188, 156, 0.06) 100%);
    border-radius: 24px;
    z-index: -1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.98);
    color: var(--fy-results);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

.play-btn:hover {
    background-color: var(--fy-results);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.4);
}

.video-wrapper video::-webkit-media-controls {
    opacity: 1;
}

.video-wrapper video {
    cursor: pointer;
}

/* ===========================
   Stats Section
   =========================== */
.stats {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 50%, #e6f3ff 100%);
    color: var(--primary-blue);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(52, 152, 219, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: var(--primary-blue);
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 23, 86, 0.08);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 23, 86, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--results);
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 48px;
    color: var(--results);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    margin-top: 5px;
    color: var(--primary-blue);
    font-weight: 600;
}

.stats-description {
    font-size: 19px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--gray-dark);
}

.stats-description a {
    color: var(--fy-results);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.stats-description a:hover {
    color: var(--results);
    border-bottom-color: var(--results);
}

/* ===========================
   Benefits & Benchmarking Section
   =========================== */
.benefits-benchmarking {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 50%, #f5f9fc 100%);
    position: relative;
    overflow: hidden;
}

.benefits-benchmarking::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.benefits-benchmarking::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.benefits-layout::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Left Side - Benefit Cards */
.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 23, 86, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(52, 152, 219, 0.2);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03) 0%, rgba(26, 188, 156, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--fy-results) 0%, var(--results) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(52, 152, 219, 0.4);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 16px;
}

.benefit-card p:last-of-type {
    margin-bottom: 0;
}

/* Right Side - Content */
.benefits-content {
    padding: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(0, 23, 86, 0.08);
    position: relative;
}

.benefits-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--fy-results) 0%, var(--results) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}

.benefits-content h2 {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.content-description {
    font-size: 19px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 45px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 20px;
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.features-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(52, 152, 219, 0.3);
    transform: translateX(5px);
}

.check-icon {
    flex-shrink: 0;
    color: var(--results);
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(26, 188, 156, 0.3));
}

.features-list li span {
    flex: 1;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: 100px 0;
    background: #2c3142;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-items-wrapper {
    flex: 1;
    position: relative;
}

.testimonial-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    outline: none;
    z-index: 10;
    position: relative;
}

.testimonial-arrow:hover {
    background: rgba(52, 152, 219, 0.3);
    border-color: var(--fy-results);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.4);
}

.testimonial-arrow svg {
    width: 28px;
    height: 28px;
}

.testimonial-item {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-item.active {
    display: grid;
    animation: fadeIn 0.6s ease;
}

.testimonial-content h4 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.testimonial-content blockquote {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-content blockquote p {
    margin-bottom: 15px;
}

.testimonial-content cite {
    font-style: normal;
    display: block;
    color: var(--results);
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-content cite strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--white);
}

.testimonial-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--fy-results) 0%, var(--results) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: var(--fy-results);
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.5);
}

/* ===========================
   News Section
   =========================== */
.news {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.news::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.news h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.news-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 23, 86, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(52, 152, 219, 0.15);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.news-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.news-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(26, 188, 156, 0.08) 100%);
    color: var(--fy-results);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.news-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin: 0 0 25px 0;
    line-height: 1.4;
    font-weight: 700;
}

.news-card .btn {
    padding: 12px 28px;
    font-size: 15px;
}

.news-card-no-image {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(26, 188, 156, 0.08) 100%);
    border: 2px solid rgba(52, 152, 219, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.news-content-full {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.news-card-no-image .news-tags {
    justify-content: center;
}

.news-card-no-image h3 {
    font-size: 26px;
}

/* ===========================
   CTA Section
   =========================== */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--results) 0%, var(--fy-results) 100%);
    color: var(--white);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===========================
   Demo Form
   =========================== */
.demo-form {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
}

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

.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.demo-form input:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
}

.demo-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.demo-form button {
    width: 100%;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: #2c3142;
    color: var(--white);
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--white);
}

.footer-col p {
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

.footer-col address {
    font-style: normal;
    line-height: 1.8;
    text-align: right;
    font-size: 16px;
    color: var(--white);
}

.footer-col a {
    color: var(--white);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer-bottom a {
    color: var(--white);
    font-size: 14px;
}

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===========================
   Page Header (for subpages)
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fy-results) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* ===========================
   Solutions Page
   =========================== */
.solutions-content {
    padding: 80px 0;
}

.solution-detail {
    max-width: 900px;
    margin: 0 auto 60px;
}

.solution-detail h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.solution-detail p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.solution-detail ul {
    list-style: none;
    margin-top: 20px;
}

.solution-detail ul li {
    padding: 10px 0 10px 35px;
    position: relative;
    font-size: 17px;
}

.solution-detail ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--results);
    font-weight: bold;
}

/* ===========================
   News Page
   =========================== */
.news-page {
    padding: 80px 0;
    background-color: var(--gray-light);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-icon {
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-icon svg {
    filter: drop-shadow(0 10px 30px rgba(107, 70, 255, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.coming-soon-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00D9FF 0%, #6B46FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.coming-soon-subtitle {
    font-size: 18px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.coming-soon-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-actions .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
}

/* ===========================
   About Page / Team Page
   =========================== */
.about-content {
    padding: 80px 0;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Team Page */
.team-header {
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f9fc 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.team-header::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 80px;
    width: 300px;
    height: 200px;
    background-image: radial-gradient(circle, var(--primary-blue) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.team-header::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: 80px;
    width: 200px;
    height: 300px;
    background-image: radial-gradient(circle, var(--primary-blue) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.team-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-header-text h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    color: var(--primary-blue);
}

.team-header-text h1 .highlight-teal {
    color: var(--results);
}

.team-header-text p {
    font-size: 20px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.scroll-indicator {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(5px);
}

.team-header-photo {
    position: relative;
}

.team-header-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 23, 86, 0.2);
}

.team-members-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 23, 86, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 23, 86, 0.12);
}

.team-member-photo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 20px;
    background: #e9ecef;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.team-member h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 15px;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid #0077b5;
    color: #0077b5;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-icon:hover {
    background: #0077b5;
    color: #ffffff;
    transform: translateY(-2px);
}

.strategic-committee-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.strategic-committee-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.committee-member-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    background: #e9ecef;
}

.committee-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.committee-member h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.committee-member .position {
    font-size: 16px;
    color: var(--results);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.committee-member p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.team-values-section {
    padding: 100px 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.team-values-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.team-values-section h2 .highlight-word {
    color: var(--results);
}

.team-values-section h6 {
    font-size: 18px;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .team-header-content {
        gap: 60px;
    }
    
    .team-header-text h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .team-header {
        padding: 80px 0;
    }
    
    .team-header-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-header-text h1 {
        font-size: 48px;
    }
    
    .team-header-text p {
        font-size: 18px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .committee-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .team-values-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .team-header-text h1 {
        font-size: 36px;
    }
    
    .team-header-text p {
        font-size: 16px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-values-section h2 {
        font-size: 28px;
    }
    
    .team-values-section h6 {
        font-size: 16px;
    }
}

/* ===========================
   Legal Pages (Legal Notice, Terms, Privacy)
   =========================== */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--white);
}

.header-subtitle {
    font-size: 16px;
    opacity: 0.85;
    font-style: italic;
    margin-top: 15px;
}

.legal-content {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    box-shadow: 0 4px 20px rgba(0, 23, 86, 0.05);
}

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--fy-results);
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--fy-results);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--results);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--primary-blue);
    font-weight: 600;
}

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

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

.expertise-item {
    padding: 30px;
    background-color: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.expertise-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.expertise-item:hover h3 {
    color: var(--agenda);
}

.expertise-item p {
    font-size: 16px;
    line-height: 1.6;
}

.stats-highlight {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--fy-results) 100%);
    border-radius: 20px;
    color: var(--white);
}

.stats-highlight h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--white);
}

.stats-highlight .stat-number {
    color: var(--agenda);
}

/* ===========================
   Offers Page
   =========================== */
.offers-content {
    padding: 80px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.offer-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.offer-card.featured {
    border-color: var(--primary-blue);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(0, 23, 86, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
}

.offer-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--results);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.offer-card h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.offer-description {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.offer-features {
    text-align: left;
    margin-bottom: 30px;
}

.offer-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.offer-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--results);
    font-weight: bold;
}

.offer-features-section {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-features-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    color: var(--gray-medium);
}

/* ===========================
   Support Page
   =========================== */
.support-content {
    padding: 80px 0;
}

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

.support-card {
    background-color: var(--gray-light);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.support-card p {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 25px;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-section h2 {
    font-size: 32px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background-color: var(--gray-light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--fy-results);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--gray-light);
    border-radius: 15px;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.contact-info address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .feature-grid,
    .testimonial-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-item {
        padding: 40px;
    }
    
    .testimonial-content h4 {
        font-size: 28px;
    }
    
    .testimonial-slider {
        gap: 25px;
    }
    
    .testimonial-arrow {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-arrow svg {
        width: 22px;
        height: 22px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-media {
        min-height: 400px;
    }
    
    .feature-text h2 {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 52px;
    }
    
    .stat-suffix {
        font-size: 40px;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-content {
        padding: 40px;
    }
    
    .benefits-content h2 {
        font-size: 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero h1 {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .hero-bubbles {
        flex-direction: column;
        max-width: 500px;
    }

    .chat-demo {
        max-width: 100%;
        padding: 50px 40px;
    }
    
    .chat-demo.expanded {
        padding: 30px 20px;
        min-height: 500px;
        max-height: 65vh;
        width: 95%;
    }
    
    .hero .container {
        min-height: 700px;
    }
    
    .chat-messages {
        min-height: 250px;
        padding: 15px;
    }

    .chat-intro h2 {
        font-size: 32px;
    }

    .chat-intro p {
        font-size: 17px;
    }
    
    .feature-media {
        min-height: 350px;
    }
    
    .feature-text h2 {
        font-size: 36px;
    }
    
    .stats h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 35px 15px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-suffix {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .benefits-benchmarking {
        padding: 80px 0;
    }
    
    .benefits-layout {
        gap: 40px;
    }
    
    .benefits-content {
        padding: 35px;
    }
    
    .benefits-content h2 {
        font-size: 32px;
    }
    
    .content-description {
        font-size: 17px;
    }
    
    .features-list li {
        font-size: 16px;
        padding: 14px 18px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .offers-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }

    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .chat-demo.expanded {
        padding: 25px 15px;
        min-height: 450px;
        max-height: 60vh;
        width: 95%;
    }
    
    .hero .container {
        min-height: 650px;
    }
    
    .chat-messages {
        min-height: 200px;
        padding: 12px;
    }
    
    .chat-message {
        max-width: 90%;
        font-size: 14px;
    }

    .feature-media {
        min-height: 300px;
    }
    
    .feature-text h2 {
        font-size: 32px;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .stats h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 52px;
    }
    
    .stat-suffix {
        font-size: 40px;
    }
    
    .stats-description {
        font-size: 17px;
    }
    
    .benefits-benchmarking {
        padding: 60px 0;
    }
    
    .benefits-content {
        padding: 30px;
    }
    
    .benefits-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .content-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .features-list {
        margin-bottom: 35px;
    }
    
    .features-list li {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .benefit-card {
        padding: 30px;
    }
    
    .hero-bubbles {
        flex-direction: column;
        gap: 15px;
    }

    .bubble {
        padding: 15px 25px;
        font-size: 14px;
    }

    .chat-demo {
        padding: 40px 25px;
    }

    .chat-intro h2 {
        font-size: 28px;
    }

    .chat-intro p {
        font-size: 16px;
    }

    .chat-input-wrapper {
        padding: 6px 6px 6px 20px;
    }

    .chat-input {
        font-size: 15px;
        padding: 15px 5px;
    }

    .chat-send-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .stats h2,
    .news h2,
    .benchmarking h2,
    .cta h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-header {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .coming-soon-section {
        padding: 80px 0;
        min-height: 60vh;
    }
    
    .coming-soon-content h2 {
        font-size: 36px;
    }
    
    .coming-soon-content p {
        font-size: 18px;
    }
    
    .coming-soon-subtitle {
        font-size: 16px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
    }
    
    .coming-soon-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .news h2 {
        font-size: 32px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-slider {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-arrow {
        display: none;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .testimonial-content h4 {
        font-size: 24px;
    }
    
    .testimonial-content blockquote {
        font-size: 16px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 30px 25px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .legal-section {
        padding: 25px 20px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 16px;
    }
}

/* Solutions Page */
.solutions-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.solutions-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.solutions-hero .text-teal {
    color: var(--results);
}

.solutions-hero .hero-subtitle {
    font-size: 20px;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Solutions Tabs */
.solutions-tabs {
    padding: 80px 0;
    background: #f8f9fa;
}

.tabs-header {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 2px solid #e9ecef;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
    color: var(--dark-blue);
}

.tab-btn.active {
    color: var(--dark-blue);
    border-bottom-color: var(--results);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

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

.solution-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    align-items: stretch;
    min-height: 700px;
}

.solution-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}

.solution-feature {
    display: flex;
    gap: 12px;
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 23, 86, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.solution-feature:hover {
    box-shadow: 0 8px 24px rgba(0, 23, 86, 0.12);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--results);
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 4px;
}

.solution-feature h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.solution-feature p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

.solution-feature p + p {
    margin-top: 8px;
}

.solution-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 23, 86, 0.15);
    height: 100%;
    min-height: 700px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    object-position: top left;
}

/* Responsive */
@media (max-width: 1200px) {
    .solution-layout {
        grid-template-columns: 420px 1fr;
        min-height: 650px;
    }
    
    .solution-image {
        min-height: 650px;
    }
}

@media (max-width: 1024px) {
    .solutions-hero h1 {
        font-size: 48px;
    }
    
    .solution-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 40px;
    }
    
    .solution-text {
        padding-right: 0;
    }
    
    .solution-image {
        min-height: 500px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        padding: 80px 0 60px;
    }
    
    .solutions-hero h1 {
        font-size: 36px;
    }
    
    .solutions-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .tabs-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        padding: 15px 20px;
        font-size: 14px;
        text-align: left;
        white-space: normal;
    }
    
    .solution-feature h3 {
        font-size: 16px;
    }
    
    .solution-feature p {
        font-size: 14px;
    }
    
    .solution-image {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .solutions-hero h1 {
        font-size: 28px;
    }
    
    .solutions-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .solution-text {
        gap: 16px;
    }
    
    .solution-feature {
        padding: 18px;
    }
    
    .solution-feature h3 {
        font-size: 15px;
    }
    
    .solution-image {
        min-height: 350px;
    }
}

/* Process Flow Section */
.process-flow {
    padding: 100px 0;
    background: #ffffff;
}

.process-flow h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A9FD8 0%, #3B8BC4 100%);
    color: white;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(74, 159, 216, 0.3);
    font-family: 'Inter', sans-serif;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    max-width: 250px;
    margin: 0 auto;
}

.process-connector {
    flex: 0 0 80px;
    height: 2px;
    background: linear-gradient(90deg, #4A9FD8 0%, #87C4E8 100%);
    margin-top: 40px;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #4A9FD8;
    border-right: 2px solid #4A9FD8;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-flow h2 {
        font-size: 36px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 30px);
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-flow {
        padding: 80px 0;
    }
    
    .process-flow h2 {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .process-step {
        flex: 1 1 auto;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .process-step h3 {
        font-size: 20px;
    }
    
    .process-step p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .process-flow h2 {
        font-size: 28px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .process-step h3 {
        font-size: 18px;
    }
}

/* ===========================
   Resolutions Meeting Section
   =========================== */
.resolutions-meeting {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.resolutions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.resolutions-chart {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 23, 86, 0.08);
    text-align: center;
}

.resolutions-chart h3 {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.resolutions-chart h3::after {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid #6c757d;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

.chart-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
}

.chart-donut {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

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

.chart-total {
    font-size: 56px;
    font-weight: 800;
    color: #6c757d;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.chart-label {
    font-size: 18px;
    color: #adb5bd;
    font-weight: 400;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #495057;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-color.green { background-color: #1ABC9C; }
.legend-color.teal { background-color: #5DCED8; }
.legend-color.blue { background-color: #4A9FD8; }
.legend-color.light-blue { background-color: #A8D5F2; }

.resolutions-content {
    padding: 40px 0;
}

.resolutions-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.resolutions-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px;
}

.resolutions-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .resolutions-layout {
        gap: 60px;
    }
    
    .resolutions-content h2 {
        font-size: 40px;
    }
    
    .resolutions-chart {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .resolutions-meeting {
        padding: 80px 0;
    }
    
    .resolutions-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .resolutions-chart {
        padding: 35px;
        order: -1;
    }
    
    .chart-container {
        width: 240px;
        height: 240px;
    }
    
    .chart-total {
        font-size: 48px;
    }
    
    .resolutions-content h2 {
        font-size: 36px;
        text-align: center;
    }
    
    .resolutions-content p {
        text-align: center;
        font-size: 17px;
    }
    
    .resolutions-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .resolutions-meeting {
        padding: 60px 0;
    }
    
    .resolutions-chart {
        padding: 30px 20px;
    }
    
    .chart-container {
        width: 200px;
        height: 200px;
    }
    
    .chart-total {
        font-size: 40px;
    }
    
    .chart-label {
        font-size: 16px;
    }
    
    .resolutions-content h2 {
        font-size: 32px;
    }
    
    .legend-item {
        font-size: 14px;
    }
}

/* ===========================
   Mission Section
   =========================== */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.mission-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-section h2 .highlight {
    color: var(--results);
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto 50px;
}

.mission-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--fy-results);
    color: var(--fy-results);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--fy-results);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-section {
        padding: 80px 0;
    }
    
    .mission-section h2 {
        font-size: 36px;
    }
    
    .mission-section p {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-section h2 {
        font-size: 28px;
    }
    
    .mission-section p {
        font-size: 16px;
    }
    
    .mission-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-buttons .btn,
    .mission-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

/* ===========================
   Offers Page - Solutions
   =========================== */
.breadcrumb {
    color: #6c757d;
    font-size: 14px;
    margin-top: 10px;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.solutions-offers {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.solutions-title {
    font-size: 42px;
    font-weight: 300;
    color: #6c63ff;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.4;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-title .highlight-purple {
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--fy-results), var(--results));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.solution-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002a8f 100%);
    color: white;
    transform: scale(1.05);
}

.solution-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.solution-card.featured h3,
.solution-card.featured .solution-features li {
    color: white;
}

.solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--results);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--fy-results), var(--results));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: white;
    transition: all 0.3s ease;
}

.solution-card.featured .solution-icon {
    background: linear-gradient(135deg, var(--results), var(--agenda));
}

.solution-card:hover .solution-icon {
    transform: rotate(5deg) scale(1.1);
}

.solution-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.solution-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.solution-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 16px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--results);
    font-weight: bold;
    font-size: 18px;
}

.solution-card.featured .solution-features li::before {
    color: var(--agenda);
}

.btn-solution {
    background: linear-gradient(135deg, var(--primary-blue), #002a8f);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 23, 86, 0.3);
    text-decoration: none;
}

.btn-solution:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 23, 86, 0.4);
    background: linear-gradient(135deg, #002a8f, var(--primary-blue));
}

.solution-card.featured .btn-solution {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.solution-card.featured .btn-solution:hover {
    background: var(--agenda);
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(207, 201, 35, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .solution-card.featured {
        transform: scale(1);
        grid-column: span 2;
    }
    
    .solutions-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .solutions-offers {
        padding: 60px 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-card.featured {
        grid-column: span 1;
    }
    
    .solutions-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .solution-card {
        padding: 40px 30px;
    }
    
    .solution-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .solution-card {
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .solution-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .solution-features li {
        font-size: 15px;
    }
    
    .btn-solution {
        width: 100%;
        padding: 14px 30px;
    }
}

/* ===========================
   Customer Support Page
   =========================== */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-box {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-box a {
    font-size: 20px;
    color: var(--results);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--fy-results);
}

.training-support-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title .highlight-teal {
    color: var(--results);
    font-weight: 600;
}

.section-title .highlight-dark {
    color: var(--primary-blue);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.training-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.training-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.training-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.training-card:hover .training-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.training-content {
    padding: 40px;
}

.training-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.training-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--results);
    font-weight: bold;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .training-support-grid {
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-boxes {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .training-support-section {
        padding: 80px 0;
    }
    
    .training-support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .training-image {
        height: 250px;
    }
    
    .training-content {
        padding: 30px;
    }
    
    .training-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .contact-box {
        padding: 40px 30px;
    }
    
    .contact-box h3 {
        font-size: 20px;
    }
    
    .contact-box a {
        font-size: 18px;
        word-break: break-word;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .training-content {
        padding: 25px 20px;
    }
    
    .training-content h3 {
        font-size: 22px;
    }
    
    .training-content p {
        font-size: 15px;
    }
    
    .check-list li {
        font-size: 15px;
    }
}

/* ===========================
   LinkedIn News Section
   =========================== */
.linkedin-news-section {
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    position: relative;
}

.linkedin-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.linkedin-intro {
    text-align: center;
    margin-bottom: 60px;
}

.linkedin-intro h2 {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.linkedin-intro p {
    font-size: 20px;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.linkedin-card {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 23, 86, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.linkedin-card:hover {
    box-shadow: 0 25px 70px rgba(0, 119, 181, 0.15);
    transform: translateY(-8px);
}

.linkedin-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.25);
}

.linkedin-icon-badge svg {
    filter: brightness(0) invert(1);
}

.linkedin-card h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.linkedin-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0 0 50px 0;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-linkedin-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%);
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
    margin-top: 20px;
}

.btn-linkedin-primary:hover {
    background: linear-gradient(135deg, #006399 0%, #0088C8 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .linkedin-intro h2 {
        font-size: 36px;
    }
    
    .linkedin-intro p {
        font-size: 16px;
    }
    
    .linkedin-card {
        padding: 40px 30px;
    }
    
    .linkedin-card h3 {
        font-size: 26px;
    }
    
    .linkedin-description {
        font-size: 16px;
    }
    
    .btn-linkedin-primary {
        font-size: 16px;
        padding: 15px 32px;
    }
}
