/* =============================================
   ZYLO CLONE - PROFESSIONAL CSS STYLESHEET
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-dark: #07414a;
    --primary-teal: #064b54;
    --primary-light: #37b19c;
    --accent-orange: #e35b0d;
    
    /* Background Colors */
    --bg-cream: #fafbf4;
    --bg-white: #ffffff;
    --bg-dark: #07414a;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #ffffff;
    --text-muted: #99a9ab;
    
    /* Fonts */
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1320px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #053840;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--text-light);
    border-color: var(--accent-orange);
}

.btn-accent:hover {
    background-color: #c94e0a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-demo {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Link Arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.link-arrow:hover {
    color: var(--primary-light);
    gap: 12px;
}

.link-arrow i {
    transition: transform var(--transition-fast);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
    background-color: var(--accent-orange);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.announcement-link {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.announcement-link:hover {
    text-decoration: underline;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--primary-dark);
}

.header-top {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.header-top-links {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.header-top-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.9;
}

.header-top-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.main-nav {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

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

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.mega-menu-wide {
    min-width: 500px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    padding: 24px;
    display: flex;
    gap: 40px;
}

.mega-menu-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-column a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mega-menu-column a:hover {
    background-color: var(--bg-cream);
    color: var(--primary-dark);
}

.mega-menu-column a i {
    color: var(--primary-light);
    font-size: 1.1rem;
    width: 24px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    font-size: 1.2rem;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.search-btn:hover {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-normal);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 999;
    overflow-y: auto;
    padding-top: 120px;
}

.mobile-nav.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-inner {
    padding: 24px;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
}

.mobile-nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    border-bottom: 1px solid #eee;
}

.mobile-nav-item > a i {
    transition: transform var(--transition-fast);
}

.mobile-nav-item.active > a i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding: 8px 0 16px 16px;
}

.mobile-nav-item.active .mobile-submenu {
    display: block;
}

.mobile-submenu li {
    padding: 8px 0;
}

.mobile-submenu strong {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

.mobile-submenu a {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.mobile-nav-footer {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.mobile-nav-links {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    justify-content: center;
}

.mobile-nav-links a {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

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

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Dashboard */
.hero-dashboard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: floatUp 0.6s ease forwards;
    opacity: 0;
}

.dashboard-card:nth-child(1) { animation-delay: 0.2s; }
.dashboard-card:nth-child(2) { animation-delay: 0.4s; }
.dashboard-card:nth-child(3) { animation-delay: 0.6s; }

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

.savings-card {
    display: flex;
    gap: 24px;
}

.savings-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
}

.savings-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.savings-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.savings-value.accent {
    color: var(--primary-light);
}

.chart-card .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.chart-graph {
    height: 80px;
    margin-bottom: 12px;
}

.spend-chart {
    width: 100%;
    height: 100%;
}

.chart-legend {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.orange { background-color: var(--accent-orange); }
.dot.teal { background-color: var(--primary-light); }

.cost-card .cost-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.cost-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cost-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dept-name {
    width: 80px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.bar-wrapper {
    flex: 1;
    height: 20px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    border-radius: 4px;
    transition: width 1s ease;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100px;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section-header {
    margin-bottom: 60px;
}

.section-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-tagline.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* =============================================
   SOLUTIONS SECTION
   ============================================= */
.solutions-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.solutions-tabs {
    margin-top: 40px;
}

.solutions-tab-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.tab-btn img {
    width: 40px;
    height: 40px;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--primary-dark);
    color: var(--text-light);
}

.solutions-tab-content {
    position: relative;
}

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

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

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

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.tab-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.tab-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   TRUSTED COMPANIES SECTION
   ============================================= */
.trusted-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.company-logos {
    overflow: hidden;
    margin-top: 40px;
}

.logo-track {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-slide {
    flex: 0 0 auto;
}

.logo-slide img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =============================================
   QUESTIONS SECTION
   ============================================= */
.questions-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.questions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.questions-text .section-title {
    font-size: 2.5rem;
}

.questions-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.questions-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   RECOGNITION SECTION
   ============================================= */
.recognition-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.recognition-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge-item img {
    max-height: 200px;
    width: auto;
}

.badge-plus {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    padding: 0;
    position: relative;
}

.stats-wave-top,
.stats-wave-bottom {
    line-height: 0;
}

.stats-wave-top svg,
.stats-wave-bottom svg {
    width: 100%;
    height: 100px;
}

.stats-section .container {
    padding: 60px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
}

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

/* =============================================
   TEAMS SECTION
   ============================================= */
.teams-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.teams-tabs {
    margin-top: 48px;
}

.teams-tab-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.team-tab-btn i {
    font-size: 1.2rem;
    color: var(--primary-light);
}

.team-tab-btn:hover,
.team-tab-btn.active {
    border-color: var(--primary-dark);
}

.team-tab-btn.active {
    background: var(--primary-dark);
    color: var(--text-light);
}

.team-tab-btn.active i {
    color: var(--text-light);
}

.teams-tab-content {
    max-width: 600px;
    margin: 0 auto;
}

.team-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.team-pane.active {
    display: block;
}

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

.team-content h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.team-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.team-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.team-benefits i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.testimonial-slide.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

.testimonial-image {
    position: relative;
}

.image-decorator {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
}

.decorator-circle {
    position: absolute;
    border-radius: 50%;
}

.decorator-circle.teal {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    top: 0;
    left: 0;
}

.decorator-circle.orange {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    bottom: 20px;
    right: -10px;
}

.testimonial-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: var(--accent-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    background: var(--accent-orange);
    color: var(--text-light);
}

/* =============================================
   CASE STUDIES SECTION
   ============================================= */
.case-studies-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
    overflow: hidden;
}

.case-studies-slider {
    position: relative;
}

.case-studies-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
}

.case-studies-track::-webkit-scrollbar {
    display: none;
}

.case-study-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.case-study-card:hover {
    transform: translateY(-8px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-content {
    padding: 24px;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: var(--accent-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--accent-orange);
    color: var(--text-light);
}

/* =============================================
   REPORT SECTION
   ============================================= */
.report-section {
    padding: var(--section-padding);
    background-color: var(--bg-cream);
}

.report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-subtitle {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.report-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.report-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.report-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   GARTNER DISCLAIMER
   ============================================= */
.gartner-disclaimer {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

.gartner-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.gartner-logo {
    max-height: 30px;
    margin-top: 24px;
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.footer-column a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-light);
}

.footer-social {
    text-align: right;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 24px;
    margin-left: auto;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--text-light);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-light {
    background: var(--text-light);
    color: var(--primary-dark);
    border: 1px solid var(--text-light);
}

.btn-light:hover {
    background: #f0f0f0;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .stats-grid {
        gap: 24px;
    }
    
    .stat-value {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tab-content-inner,
    .questions-content,
    .testimonial-slide.active,
    .report-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .questions-image,
    .tab-image,
    .report-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 32px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-social {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 24px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .testimonial-image img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-dashboard {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .solutions-tab-nav,
    .teams-tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn,
    .team-tab-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .recognition-badges {
        flex-direction: column;
    }
    
    .badge-item img {
        max-height: 150px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .team-benefits {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .savings-card {
        flex-direction: column;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .case-study-card {
        flex: 0 0 280px;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .report-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background-color: var(--primary-light);
    color: var(--text-light);
}
