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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #e55a2a;
    --primary-light: #ff8c5a;
    --secondary-color: #1a1a1a;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography System - Improved sizes */
    --font-heading: 44px;
    /* H1 - Main page/section titles */
    --font-subheading: 24px;
    /* H2 - Card titles, sub-sections */
    --font-body: 16px;
    /* Body text, descriptions */
    --font-small: 13px;
    /* Labels, badges, captions */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
    font-size: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Mega Menu Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 820px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 0;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: none;
    display: flex;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Main dropdown content area */
.dropdown-main {
    flex: 1;
    padding: 28px 32px;
}

/* Dropdown sidebar (for promotional content) */
.dropdown-sidebar {
    width: 240px;
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f5 100%);
    padding: 28px 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dropdown-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.dropdown-sidebar-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.dropdown-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.dropdown-sidebar-link:hover {
    gap: 12px;
}

/* Section headers */
.dropdown-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding-left: 4px;
}

/* Dropdown sections */
.dropdown-section {
    margin-bottom: 24px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

/* Grid for main service items - 2 per row */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dropdown-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Main dropdown link with icon and description */
.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dropdown-link:hover {
    background: rgba(255, 107, 53, 0.06);
}

.dropdown-link-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-link:hover .dropdown-link-icon {
    background: var(--primary-color);
    color: white;
}

.dropdown-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-link-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.dropdown-link:hover .dropdown-link-title {
    color: var(--primary-color);
}

.dropdown-link-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Simple list items (icon + text only) */
.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-list-item:hover {
    background: rgba(255, 107, 53, 0.06);
}

.dropdown-list-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.dropdown-list-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.dropdown-list-item:hover .dropdown-list-text {
    color: var(--primary-color);
}

/* Services Dropdown */
.services-dropdown {
    min-width: 860px;
}

/* About Dropdown - Smaller */
.about-dropdown {
    min-width: 720px;
}

/* Simple Dropdown Style (Belkins-like) */
.dropdown-simple {
    min-width: 480px !important;
    padding: 24px 0;
}

.dropdown-columns {
    display: flex;
    gap: 0;
}

.dropdown-column {
    flex: 1;
    padding: 0 32px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-simple .dropdown-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    padding-left: 0;
}

.dropdown-simple-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-simple-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.dropdown-simple-item:hover {
    color: var(--primary-color);
}

.dropdown-simple-item:hover .dropdown-simple-icon {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.dropdown-simple-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    padding: 8px;
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-simple-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.dropdown-simple-item:hover span {
    color: var(--primary-color);
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: var(--font-small);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

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

/* Section CTA styling */
.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* White button variant for dark backgrounds */
.btn-white {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
}

.btn-white:hover {
    background: #f8f8f8;
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fff8f5 100%);
    min-height: auto;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero>.container {
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 500px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
    border: 1px solid rgba(255, 107, 53, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.badge-icon {
    font-size: 18px;
    animation: bounce 2s ease-in-out infinite;
}

.badge-text {
    font-size: var(--font-small);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    top: 10%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.05));
    bottom: 20%;
    left: 5%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(102, 126, 234, 0.1));
    top: 50%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
}

/* Hero Visual - Funnel Section */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    padding: 0;
}

.funnel-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 300px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 18px 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    margin: 10px;
}

/* Channel Icons */
.channel-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
    position: relative;
    width: 100%;
}

.channel-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: floatChannel 3s ease-in-out infinite;
}

.channel-icon:nth-child(1) {
    animation-delay: 0s;
}

.channel-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.channel-icon:nth-child(3) {
    animation-delay: 1s;
}

.channel-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.channel-email {
    color: #FF6B35;
}

.channel-linkedin {
    color: #0A66C2;
}

.channel-call {
    color: #10B981;
}

.channel-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color);
}

@keyframes floatChannel {

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

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

/* Funnel Graphic */
.funnel-graphic {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.funnel-stage {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    opacity: 0;
    animation: funnelSlideIn 0.6s ease-out forwards;
}

.funnel-stage:nth-child(1) {
    animation-delay: 0.3s;
}

.funnel-stage:nth-child(2) {
    animation-delay: 0.5s;
}

.funnel-stage:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes funnelSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.funnel-bar {
    height: 38px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.funnel-top .funnel-bar {
    width: 100%;
    max-width: 300px;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8f6b 100%);
}

.funnel-mid .funnel-bar {
    width: 75%;
    max-width: 230px;
    background: linear-gradient(135deg, #FF8C5A 0%, #ffad8a 100%);
}

.funnel-bottom .funnel-bar {
    width: 50%;
    max-width: 160px;
    background: linear-gradient(135deg, #10B981 0%, #34d399 100%);
}

.funnel-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.funnel-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.funnel-count {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 10px;
    border-radius: 16px;
}

/* Lead Particles */
.lead-particles {
    display: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFlow 3s ease-in-out infinite;
}

.particle-1 {
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    left: 35%;
    animation-delay: 0.6s;
}

.particle-3 {
    left: 50%;
    animation-delay: 1.2s;
}

.particle-4 {
    left: 65%;
    animation-delay: 1.8s;
}

.particle-5 {
    left: 85%;
    animation-delay: 2.4s;
}

@keyframes particleFlow {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(180px) scale(0.5);
        opacity: 0;
    }
}

/* Result Card */
.hero-visual .result-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-number {
    font-size: 18px;
    font-weight: 700;
    color: #10B981;
}

.result-text {
    font-size: 11px;
    color: var(--text-light);
}

/* Meeting Card */
.meeting-card {
    position: absolute;
    bottom: 0px;
    left: -15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 4s ease-in-out infinite 2s;
    z-index: 10;
}

.meeting-avatar {
    width: 34px;
    height: 34px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-content {
    display: flex;
    flex-direction: column;
}

.meeting-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.meeting-time {
    font-size: 10px;
    color: var(--text-light);
}

@keyframes floatCard {

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

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

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Arrow */
.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.3), transparent);
}

/* Enhanced subtitle with gradient */
.hero-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes float {

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

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

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

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

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Staggered animations for hero content */
.hero-title {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* About Section */
.about {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge-label {
    font-size: var(--font-small);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* About Layout - Two Column */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-layout-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-layout-simple .about-title {
    text-align: center;
    margin-bottom: 20px;
}

.about-text-simple {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
}

.services-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.quick-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.quick-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.quick-service-icon svg {
    color: var(--primary-color);
}

.quick-service-card:hover .quick-service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1);
}

.quick-service-card:hover .quick-service-icon svg {
    color: white;
}

.quick-service-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 968px) {
    .services-quick-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .services-quick-links {
        grid-template-columns: 1fr;
    }
}

.about-visual {
    position: relative;
    width: 100%;
}

/* Dashboard Visualization */
.about-dashboard {
    position: relative;
    padding: 0;
    width: 100%;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
}

.dashboard-main {
    position: relative;
    z-index: 2;
}

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

.dashboard-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
}

.dashboard-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-badge.live {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.dashboard-badge.live::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s ease-in-out infinite;
}

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

.dashboard-stat {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dashboard-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.dashboard-stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Animated Bar Chart */
.dashboard-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 8px;
    padding: 0 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 6px 6px 0 0;
    height: var(--height);
    animation: barGrow 1s ease-out var(--delay) both;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.4) 0%, rgba(255, 107, 53, 0.2) 100%);
}

.chart-bar.highlight {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

@keyframes barGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: var(--height);
        opacity: 1;
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px 0;
}

.chart-labels span {
    font-size: 10px;
    color: var(--text-light);
    flex: 1;
    text-align: center;
}

/* Floating Metric Cards */
.floating-metric-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: floatMetric 4s ease-in-out infinite;
}

.metric-card-1 {
    top: -10px;
    right: -10px;
    animation-delay: 0s;
}

.metric-card-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes floatMetric {

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

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

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.metric-icon.primary {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.metric-label {
    font-size: 11px;
    color: var(--text-light);
}

/* Channel Performance Cards */
.channel-performance {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
    animation: slideInRight 0.8s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.channel-perf-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.channel-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    min-width: 55px;
}

.channel-bar {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.channel-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B35 0%, #ff8f6b 100%);
    border-radius: 3px;
    animation: fillBar 1.5s ease-out 0.8s both;
}

.channel-fill.linkedin {
    background: linear-gradient(90deg, #0A66C2 0%, #4d9de0 100%);
}

.channel-fill.success {
    background: linear-gradient(90deg, #10B981 0%, #34d399 100%);
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

/* ============================================
   Dashboard V2 - Modern Animated Design
   ============================================ */

.about-dashboard-v2 {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 20px;
}

/* Animated Background Blobs */
.dashboard-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 140, 90, 0.2) 100%);
    top: -50px;
    right: -30px;
    animation-delay: 0s;
}

.blob-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(52, 211, 153, 0.15) 100%);
    bottom: 50px;
    left: -40px;
    animation-delay: -3s;
}

.blob-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    top: 40%;
    right: 20%;
    animation-delay: -5s;
}

@keyframes blobFloat {

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

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.95);
    }
}

/* Glass Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: glowRotate 15s linear infinite;
}

@keyframes glowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Main Dashboard Card */
.main-dashboard-card {
    padding: 28px;
    position: relative;
    z-index: 2;
    animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

.dashboard-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-title-v2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.dashboard-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* Stats Grid with Circular Progress */
.stats-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.stat-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-item-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-animate-1 {
    animation: statSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.stat-animate-2 {
    animation: statSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.stat-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    animation: ringDraw 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.ring-orange {
    stroke: var(--primary-color);
}

.ring-green {
    stroke: #10B981;
}

@keyframes ringDraw {
    from {
        stroke-dasharray: 0, 100;
    }
}

.stat-number-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.stat-label-v2 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

/* Wave Chart */
.wave-chart {
    position: relative;
    height: 80px;
    margin-top: 8px;
}

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

.wave-area {
    animation: waveFlow 3s ease-in-out infinite alternate;
}

.wave-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: waveDraw 2s ease-out 0.8s forwards;
}

.wave-dot {
    opacity: 0;
    animation: dotAppear 0.5s ease-out 2.5s forwards, dotPulse 2s ease-in-out 3s infinite;
}

@keyframes waveFlow {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

@keyframes waveDraw {
    to {
        stroke-dashoffset: 0;
    }
}

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

@keyframes dotPulse {

    0%,
    100% {
        r: 4;
    }

    50% {
        r: 6;
    }
}

.chart-months {
    display: flex;
    justify-content: space-between;
    padding: 8px 4px 0;
}

.chart-months span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

/* Floating Cards Base */
.floating-card {
    position: absolute;
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-inner {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.floating-card:hover .floating-card-inner {
    transform: scale(1.02);
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

@keyframes floatCard {

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

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

/* Growth Card */
.growth-card {
    top: -15px;
    right: -10px;
    animation-delay: 0s;
    animation: cardSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both,
        floatCard 6s ease-in-out 1.1s infinite;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px) translateY(-20px);
    }

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

.growth-card .floating-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.growth-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
}

.growth-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.growth-value {
    font-size: 24px;
    font-weight: 800;
    color: #10B981;
    letter-spacing: -0.02em;
}

.growth-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Satisfaction Card */
.satisfaction-card {
    bottom: 140px;
    left: -25px;
    animation-delay: -2s;
    animation: cardSlideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both,
        floatCard 6s ease-in-out 1.3s infinite;
}

@keyframes cardSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.satisfaction-card .floating-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
}

.satisfaction-ring {
    position: relative;
    width: 64px;
    height: 64px;
}

.satisfaction-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.satisfaction-ring .ring-bg {
    stroke: #f5f5f5;
    stroke-width: 4;
}

.satisfaction-ring .ring-progress {
    stroke-width: 4;
    stroke-linecap: round;
}

.satisfaction-ring .ring-progress.animated {
    animation: ringDraw 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.satisfaction-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
}

.satisfaction-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

/* Channels Card */
.channels-card {
    bottom: -10px;
    right: 30px;
    animation-delay: -4s;
    animation: cardSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both,
        floatCard 6s ease-in-out 1.5s infinite;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.channels-card .floating-card-inner {
    padding: 16px 20px;
}

.channels-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.channel-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.channel-row:last-child {
    margin-bottom: 0;
}

.channel-icon-mini {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon-mini.email {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
}

.channel-icon-mini.linkedin {
    background: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
}

.channel-icon-mini.calling {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.channel-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    min-width: 55px;
}

.channel-progress {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    min-width: 80px;
}

.channel-progress-bar {
    height: 100%;
    border-radius: 3px;
    width: 0;
    animation: progressGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.channel-progress-bar.email {
    background: linear-gradient(90deg, #FF6B35 0%, #ff8f6b 100%);
}

.channel-progress-bar.linkedin {
    background: linear-gradient(90deg, #0A66C2 0%, #4d9de0 100%);
}

.channel-progress-bar.calling {
    background: linear-gradient(90deg, #10B981 0%, #34d399 100%);
}

@keyframes progressGrow {
    to {
        width: var(--width);
    }
}

/* Notification Toast */
.notification-toast {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 6;
    animation: toastSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2s both,
        toastPulse 4s ease-in-out 2.6s infinite;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes toastPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    50% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    }
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.toast-time {
    font-size: 11px;
    color: var(--text-light);
}

/* End Dashboard V2 Styles */

.about-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.about-title {
    text-align: left;
}

.about-text {
    font-size: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 20px;
}

/* About Feature Cards */
.about-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 4px 0;
}

.feature-card-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    text-align: left;
    margin-top: 24px;
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 28px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 42px;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.highlight-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Pipeline Journey Section */
.pipeline-journey {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.pipeline-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pipeline-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pipeline-intro {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.pipeline-graph-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Y-Axis - Hidden on new design */
.graph-y-axis {
    display: none;
}

.y-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Graph Area */
.graph-area {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.08);
    min-height: 250px;
    overflow: visible;
}

.pipeline-svg {
    width: 100%;
    height: 220px;
}

/* SVG Line Animation - Smoother */
.pipeline-line {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pipeline-line.animated {
    stroke-dashoffset: 0;
}

.area-fill {
    opacity: 0;
    transition: opacity 1.5s ease-out 0.5s;
}

.area-fill.visible {
    opacity: 1;
}

/* Data Points - Larger */
.data-point {
    opacity: 0;
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-point.visible {
    opacity: 1;
    animation: pointPulse 3s ease-in-out infinite;
}

@keyframes pointPulse {

    0%,
    100% {
        r: 7;
    }

    50% {
        r: 10;
    }
}

/* Milestone Cards - Timeline Style Below Graph */
.milestone-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 35px;
    position: relative;
}

.milestone-cards::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #ff8f6b 50%, #10B981 100%);
    border-radius: 2px;
    z-index: 0;
}

.milestone-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.milestone-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Staggered animation delays */
.milestone-1 {
    transition-delay: 0.1s;
}

.milestone-2 {
    transition-delay: 0.25s;
}

.milestone-3 {
    transition-delay: 0.4s;
}

.milestone-4 {
    transition-delay: 0.55s;
}

.milestone-5 {
    transition-delay: 0.7s;
}

.milestone-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.06) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    flex-shrink: 0;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.milestone-card:hover .milestone-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.milestone-icon.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
    color: #10B981;
}

.milestone-card:hover .milestone-icon.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.milestone-content {
    flex: 1;
}

.milestone-week {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.milestone-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.milestone-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.milestone-success {
    border-color: rgba(16, 185, 129, 0.15);
}

.milestone-success .milestone-week {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
}

/* X-Axis */
.graph-x-axis {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 0;
    max-width: 100%;
}

.x-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

/* Scroll Progress Indicator - Hide */
.scroll-progress-indicator {
    display: none;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B35 0%, #ff8f6b 100%);
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

.progress-text {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .milestone-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .milestone-cards::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .pipeline-graph-container {
        padding: 0 16px;
    }

    .graph-area {
        padding: 24px;
        min-height: 250px;
    }

    .pipeline-svg {
        height: 200px;
    }

    .milestone-cards {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
    }

    .milestone-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-width: 100%;
        opacity: 1;
        transform: none;
    }

    .graph-x-axis {
        grid-column: 1;
        padding: 15px 20px 0;
    }
}

/* Services Section */
.services {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
}

/* New Service Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-card-new {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-card-header-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-card-icon-new {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card-icon-new svg {
    color: var(--primary-color);
}

.service-card-new:hover .service-card-icon-new {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.05);
}

.service-card-new:hover .service-card-icon-new svg {
    color: white;
}

.service-card-header-new h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.service-card-desc-new {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
}

.service-card-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-card-features-new li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.check-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

.service-card-stats-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 0;
    margin: auto 0 24px 0;
    border-top: 1px solid #e8e8e8;
}

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

.stat-number-new {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-new {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-card-cta-new {
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-card-cta-new {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-new {
        padding: 28px;
    }
}

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

.services-intro {
    font-size: var(--font-body);
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
}

/* ============================================
   NEW SERVICES SECTION - Modern Card Design
   ============================================ */

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

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

.services-new-header .section-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
}

.services-new-intro {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.services-new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-new {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8c5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

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

.service-card-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card-new:hover .service-card-icon-wrap {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    color: #ffffff;
    transform: scale(1.05);
}

.service-card-number {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 14px;
    font-weight: 700;
    color: #e5e7eb;
    transition: color 0.3s ease;
}

.service-card-new:hover .service-card-number {
    color: var(--primary-color);
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-features li {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    transition: gap 0.3s ease;
}

.service-card-new:hover .service-card-link {
    gap: 12px;
}

.service-card-link svg {
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-card-link svg {
    transform: translateX(4px);
}

/* Responsive for new services */
@media (max-width: 1024px) {
    .services-new-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-new {
        padding: 60px 0;
    }

    .services-new-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card-new {
        padding: 24px;
    }
}

/* Interactive Services Layout */
.services-interactive {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    height: 60%;
    width: 3px;
    background: var(--primary-color);
    border-radius: 0 3px 3px 0;
    transition: transform 0.3s ease;
}

.service-tab:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: #fafafa;
}

.service-tab.active {
    border-color: var(--primary-color);
    background: #fff8f5;
}

.service-tab.active::before {
    transform: translateY(-50%) scaleY(1);
}

.service-tab-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.service-tab-content {
    flex-grow: 1;
}

.service-tab-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 2px 0;
}

.service-tab-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.service-tab-arrow {
    font-size: 16px;
    color: var(--text-light);
    transition: all 0.3s ease;
    opacity: 0;
}

.service-tab.active .service-tab-arrow,
.service-tab:hover .service-tab-arrow {
    opacity: 1;
    color: var(--primary-color);
}

.services-detail-right {
    position: relative;
    min-height: 320px;
    width: 100%;
}

.service-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.service-detail.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-detail-icon {
    font-size: 28px;
}

.service-detail-icon svg {
    width: 32px;
    height: 32px;
}

.service-detail-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.service-detail-desc {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-detail-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
    padding: 8px 14px;
    background: #f8f9fa;
    border-radius: 8px;
}

.service-detail-features .check {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Responsive Services */
@media (max-width: 900px) {
    .services-interactive {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid-left {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .service-tab {
        flex: 1 1 auto;
        min-width: 140px;
        padding: 12px 14px;
    }

    .service-tab-desc {
        display: none;
    }

    .service-tab::before {
        display: none;
    }

    .services-detail-right {
        min-height: auto;
    }

    .service-detail {
        position: relative;
        padding: 24px;
    }
}

/* Legacy grid for fallback */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card-link:hover .service-card {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scale(1.1);
}

.service-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-icon {
    transform: scale(1.05);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-description {
    font-size: var(--font-body);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-features-list li {
    font-size: var(--font-small);
    color: var(--text-color);

    @media (max-width: 968px) {
        .hero-layout {
            grid-template-columns: 1fr;
            gap: 20px;
            text-align: center;
        }

        .hero-visual {
            margin-top: 40px;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .result-card,
        .meeting-card {
            position: static;
            transform: none;
            animation: none;
            margin: 16px auto;
            max-width: 300px;
        }

        .about-layout {
            grid-template-columns: 1fr;
        }

        .about-visual {
            margin-bottom: 40px;
        }

        .floating-metric-card,
        .channel-performance {
            position: static;
            transform: none;
            animation: none;
            margin: 16px auto;
            max-width: 300px;
        }
    }

    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.service-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 15px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: var(--font-small);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 8px;
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card-link:hover .cta-arrow {
    transform: translateX(5px);
}

.service-card-link:hover .service-cta {
    color: var(--primary-dark);
}

/* Logos Section */
.logos-section {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

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

.logos-title {
    font-size: var(--font-subheading);
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

.logos-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: transparent;
    border-radius: 0;
    border: none;
}

.logos-container::before,
.logos-container::after {
    display: none;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scroll 35s linear infinite;
    width: fit-content;
    align-items: center;
}

.logo-item {
    flex-shrink: 0;
    width: 235px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 0.7;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.logo-item:hover {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.08);
    box-shadow: none;
    background: transparent;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Square/vertical logos need more height */
.logo-item.logo-square {
    width: 155px;
    height: 105px;
}

/* Wide horizontal logos */
.logo-item.logo-wide {
    width: 260px;
    height: 80px;
}

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

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

/* Challenges Section */
.challenges {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

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

.challenges-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.challenge-card {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.challenge-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.challenge-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

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

.challenge-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.06) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.challenge-card-icon svg {
    width: 28px;
    height: 28px;
}

.challenge-card:hover .challenge-card-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.challenge-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.challenge-card:hover h3 {
    color: var(--primary-color);
}

.challenge-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.challenge-card:hover p {
    color: var(--text-color);
}

/* Why Choose Section */
.why-choose {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid transparent;
    position: relative;
}

.why-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left-color: var(--primary-color);
    background: #ffffff;
}

.why-card h3 {
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.why-card:hover h3 {
    color: var(--primary-color);
}

.why-card p {
    font-size: var(--font-small);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.results-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.results-title {
    font-size: var(--font-heading);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.results-title .highlight {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.results-subtitle {
    font-size: var(--font-body);
    color: rgba(255, 255, 255, 0.95);
    margin-top: 28px;
    font-weight: 400;
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

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

.results-section .results-subtitle {
    font-size: var(--font-body);
    color: var(--text-light);
    margin: 16px auto 0;
    max-width: 700px;
    line-height: 1.8;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
}

.result-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
    transform: translateY(-4px);
}

.result-card-highlight {
    border-color: rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.result-card-highlight:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #FF8C61);
}

.result-card-highlight:hover .result-number,
.result-card-highlight:hover .result-label,
.result-card-highlight:hover .result-description,
.result-card-highlight:hover .metric-value,
.result-card-highlight:hover .metric-text {
    color: #ffffff;
}

.result-icon-wrapper {
    display: flex;
    justify-content: center;
}

.result-icon {
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.result-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -1px;
}

.result-label {
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.result-description {
    font-size: var(--font-small);
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.metric-item {
    text-align: center;
    padding: 10px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.result-card:hover .metric-item {
    background: rgba(255, 107, 53, 0.05);
}

.result-card-highlight:hover .metric-item {
    background: rgba(255, 255, 255, 0.2);
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.metric-text {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.result-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
}

.results-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 50px;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5f2 100%);
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.testimonials-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 16px auto 0;
    max-width: 650px;
    line-height: 1.8;
}

.testimonials-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.testimonials-carousel {
    display: flex;
    gap: 20px;
    animation: testimonialScroll 45s linear infinite;
    width: fit-content;
}

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

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

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

.testimonial-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF8C61);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

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

.quote-icon {
    width: 30px;
    height: 24px;
    flex-shrink: 0;
}

.quote-icon svg {
    width: 30px;
    height: 24px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #FF8C61);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.testimonial-avatar span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-author {
    flex-grow: 1;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 4px 0;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.testimonial-stars {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #FFB800;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.2);
}

/* Funnel Section - Old (keeping for compatibility) */
.funnel {
    padding: 80px 0;
    background: var(--bg-white);
}

.funnel .funnel-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 70px;
}

.funnel .funnel-stage {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    padding: 48px 36px;
    background: var(--bg-white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.funnel .funnel-stage:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.funnel .funnel-icon {
    font-size: 56px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.funnel .funnel-stage:hover .funnel-icon {
    transform: scale(1.15) rotate(5deg);
}

.funnel .funnel-stage h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.funnel .funnel-stage p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.funnel .funnel-arrow {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-heading);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-description {
    font-size: var(--font-body);
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-description {
    font-size: var(--font-body);
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-item {
    display: flex;
    gap: 24px;
    align-items: start;
}

.contact-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: var(--font-body);
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-cta h3 {
    font-size: var(--font-subheading);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.contact-cta>p {
    font-size: var(--font-body);
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 70px 0 0;
    color: #333333;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo-text {
    font-size: 24px;
}

.footer-logo .logo-up {
    color: var(--primary-color);
}

.footer-logo .logo-turnly {
    color: #1a1a1a;
}

/* Footer Logo Image */
.footer-logo-img {
    height: 48px;
    width: auto;
}

/* LinkedIn Social Link Color */
.social-link-linkedin svg {
    fill: #0A66C2;
}

.footer-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    max-width: 280px;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: none !important;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

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

.footer-social .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(10, 102, 194, 0.3));
}

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

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555555;
}

.footer-contact li svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-contact li a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 10px 18px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-copyright {
    font-size: 13px;
    color: #888888;
    margin: 0;
}

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

.footer-legal a {
    font-size: 13px;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 400px;
    }
}

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

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

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 22px;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Page Content */
.page-content {
    padding: 100px 0;
    background: var(--bg-white);
}

.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.content-section>p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 28px;
}

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

.value-card {
    background: var(--bg-white);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.feature-list li {
    font-size: 18px;
    color: var(--text-light);
    padding: 18px 0;
    padding-left: 36px;
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 22px;
}

/* ============================================
   About Page - New Design
   ============================================ */

/* About Hero */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2a 50%, #d44d1e 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero .hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.about-hero .hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.about-hero .hero-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 10%;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.about-hero .hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {

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

    50% {
        transform: translate(20px, -20px);
    }
}

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

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    display: flex;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.about-hero-title .highlight {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* About Stats Section */
.about-stats {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-stats .stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-stats .stat-card:hover {
    transform: translateY(-5px);
}

.about-stats .stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-color);
}

.about-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    display: inline;
}

.about-stats .stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline;
}

.about-stats .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 8px;
}

.about-stats .stat-comparison {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* About Story Section */
.about-story {
    padding: 120px 0;
    background: var(--bg-white);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .section-title {
    margin-bottom: 32px;
}

.story-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.mission-card p,
.vision-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* Founder Section */
.about-founder {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.founder-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image-bg {
    position: absolute;
    inset: 20px -20px -20px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    z-index: 0;
}

.founder-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    background: #e8e8e8;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-placeholder {
    color: #bbb;
}

.founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.founder-name {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.founder-role {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.founder-quote {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    font-style: italic;
    padding: 24px 0;
    margin: 0 0 24px 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    line-height: 1.5;
}

.founder-bio {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-social {
    margin-top: 28px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #0A66C2;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #084d94;
    transform: translateY(-2px);
}

/* About Values Section */
.about-values {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header.centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.centered-badge {
    justify-content: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 16px;
}

.values-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card-v2 {
    background: white;
    padding: 36px 28px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.2);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

.value-card-v2 .value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.value-card-v2 p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Differentiators Section */
.about-differentiators {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.diff-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.diff-content {
    max-width: 600px;
}

.diff-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.7;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 53, 0.2);
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.diff-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.cta-card {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2a 100%);
    border-radius: 24px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-card .cta-content {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-secondary-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-ring-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-ring-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
}

.cta-ring-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: -30px;
}

/* About Page Responsive */
@media (max-width: 1100px) {
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 968px) {
    .about-hero {
        padding: 100px 0 80px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-subtitle {
        font-size: 17px;
    }

    .about-stats {
        margin-top: -30px;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-stats .stat-card {
        padding: 24px 16px;
    }

    .about-stats .stat-number {
        font-size: 28px;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .founder-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-quote {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--primary-color);
        padding-top: 24px;
    }

    .values-grid-v2 {
        grid-template-columns: 1fr 1fr;
    }

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

    .cta-card {
        padding: 50px 30px;
    }

    .cta-card h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .about-hero-title {
        font-size: 32px;
    }

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

    .values-grid-v2 {
        grid-template-columns: 1fr;
    }

    .founder-name {
        font-size: 32px;
    }

    .founder-quote {
        font-size: 20px;
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.blog-card {
    background: var(--bg-white);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.blog-date {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Jobs Styles */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 50px;
}

.job-card {
    background: var(--bg-white);
    padding: 44px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.job-card:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.job-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.job-card>p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.job-card .btn-primary {
    margin-top: 28px;
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.team-member {
    background: var(--bg-white);
    padding: 40px 36px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
    transition: transform 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.member-role {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 18px;
}

.member-bio {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ Styles */
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 28px;
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 60px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 28px 28px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Case Study Styles */
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.case-study-card {
    background: var(--bg-white);
    padding: 44px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.case-study-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
    letter-spacing: -0.01em;
}

.case-study-industry {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.case-study-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-content li {
    font-size: 17px;
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.case-study-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Pricing Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 48px 40px;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f2 100%);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pricing-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 17px;
    color: var(--text-light);
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* Industries Styles */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.industry-card {
    background: var(--bg-white);
    padding: 44px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.3);
}

.industry-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.3s ease;
}

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

.industry-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.industry-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 968px) {

    /* Hero Section Responsive */
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-description {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        min-height: 380px;
    }

    .funnel-container {
        max-width: 360px;
        height: 350px;
    }

    .channel-icons {
        gap: 20px;
    }

    .channel-icon {
        padding: 12px;
    }

    .funnel-top .funnel-bar {
        width: 260px;
    }

    .funnel-mid .funnel-bar {
        width: 200px;
    }

    .funnel-bottom .funnel-bar {
        width: 140px;
    }

    .result-card {
        right: 0;
        bottom: 60px;
    }

    .meeting-card {
        left: 0;
        bottom: 0;
    }

    /* About Section Responsive */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        order: 1;
    }

    .about-dashboard {
        padding: 10px;
    }

    /* Dashboard V2 Mobile */
    .about-dashboard-v2 {
        min-height: auto;
        padding: 10px;
    }

    .main-dashboard-card {
        padding: 20px;
    }

    .dashboard-header-v2 {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .stats-grid-v2 {
        gap: 12px;
    }

    .stat-item-v2 {
        padding: 16px;
    }

    .stat-ring {
        width: 60px;
        height: 60px;
    }

    .stat-number-v2 {
        font-size: 18px;
    }

    .stat-label-v2 {
        font-size: 11px;
    }

    .floating-card {
        position: relative;
        margin: 12px auto;
    }

    .growth-card,
    .satisfaction-card,
    .channels-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        animation: cardEntrance 0.6s ease both;
    }

    .growth-card {
        animation-delay: 0.2s;
    }

    .satisfaction-card {
        animation-delay: 0.4s;
    }

    .channels-card {
        animation-delay: 0.6s;
    }

    .notification-toast {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 16px auto;
        animation: cardEntrance 0.6s ease 0.8s both;
    }

    .blob {
        opacity: 0.3;
    }

    .about-content {
        order: 2;
        text-align: center;
    }

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

    .about-feature-cards {
        align-items: center;
    }

    .feature-card {
        max-width: 400px;
        width: 100%;
    }

    .feature-card:hover {
        transform: translateY(-4px);
    }

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

    .floating-metric-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 10px auto;
    }

    .metric-card-1,
    .metric-card-2 {
        display: none;
    }

    .channel-performance {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
    }

    /* Services Section Responsive */
    .services-interactive {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid-left {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-tab {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .service-tab-arrow {
        display: none;
    }

    .services-detail-right {
        min-height: auto;
    }

    .service-detail {
        position: relative;
        display: none;
        transform: none;
    }

    .service-detail.active {
        display: block;
    }

    .service-detail {
        padding: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 32px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 20px 0;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        flex-direction: column;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: var(--bg-light);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border: none;
    }

    .nav-item.active .dropdown-menu {
        max-height: 1000px;
        padding: 16px;
    }

    .dropdown-link {
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .dropdown-link-icon {
        width: 40px;
        height: 40px;
    }

    .dropdown-link-title {
        font-size: 15px;
    }

    .dropdown-link-desc {
        font-size: 13px;
    }

    /* Mobile Mega Menu Styles */
    .dropdown-main {
        padding: 16px;
        width: 100%;
    }

    .dropdown-sidebar {
        display: none;
    }

    .dropdown-section {
        margin-bottom: 20px;
    }

    .dropdown-section-title {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .dropdown-grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dropdown-list {
        gap: 4px;
    }

    .dropdown-list-item {
        font-size: 14px;
        padding: 10px 12px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .hero-cta {
        gap: 24px;
    }

    .hero-stats {
        padding: 20px 32px;
        gap: 24px;
    }

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

    .stat-label {
        font-size: 12px;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 36px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Challenges Responsive 968px */
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .challenge-card {
        padding: 28px 24px;
    }

    .challenge-card h3 {
        font-size: 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 28px 24px;
    }

    .pipeline-header {
        margin-bottom: 50px;
    }

    .pipeline-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pipeline-journey {
        padding: 28px 20px;
    }

    .journey-title {
        font-size: 24px;
    }

    .journey-item-header {
        padding: 20px 24px;
    }

    .journey-item.active .journey-item-content {
        padding: 0 24px 20px 24px;
    }


    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-heading: 28px;
        --font-subheading: 18px;
        --font-body: 13px;
        --font-small: 11px;
    }

    .container {
        padding: 0 24px;
    }

    .section-cta {
        margin-top: 40px;
    }

    .section-cta .btn-large {
        padding: 16px 28px;
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-icon {
        font-size: 32px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .logos-header {
        margin-bottom: 50px;
    }

    .logos-title {
        font-size: 26px;
    }

    .logos-container {
        padding: 30px 0;
    }

    .logos-container::before,
    .logos-container::after {
        width: 80px;
    }

    .logos-track {
        gap: 60px;
    }

    .logo-item {
        width: 140px;
        height: 70px;
        padding: 12px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-description::before,
    .hero-description::after {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    }

    .shape {
        opacity: 0.2;
    }

    .section-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 18px;
    }

    .highlight-icon {
        font-size: 36px;
    }

    .highlight-content h3 {
        font-size: 17px;
    }

    .highlight-content p {
        font-size: 14px;
    }

    .about,
    .challenges,
    .why-choose,
    .testimonials,
    .funnel,
    .cta,
    .contact {
        padding: 80px 0;
    }

    .services {
        padding: 60px 0;
    }

    .challenges-header {
        margin-bottom: 40px;
    }

    .challenges-intro {
        font-size: 17px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .challenge-card {
        padding: 20px 18px;
    }

    .challenge-card h3 {
        font-size: 16px;
    }

    .challenge-card p {
        font-size: 14px;
    }

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

    .testimonials {
        padding: 70px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-subtitle {
        font-size: 15px;
    }

    .testimonial-card {
        width: 260px;
        padding: 18px 16px;
        border-radius: 12px;
    }

    .quote-icon {
        width: 26px;
        height: 20px;
    }

    .quote-icon svg {
        width: 26px;
        height: 20px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .testimonial-avatar {
        width: 36px;
        height: 36px;
    }

    .testimonial-avatar span {
        font-size: 12px;
    }

    .testimonial-author h4 {
        font-size: 13px;
    }

    .testimonial-author p {
        font-size: 11px;
    }

    .testimonial-stars {
        font-size: 10px;
        top: 16px;
        right: 16px;
        letter-spacing: 1px;
    }

    .why-choose-header {
        margin-bottom: 35px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 20px 18px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 13px;
    }

    .funnel .funnel-visualization {
        flex-direction: column;
    }

    .funnel .funnel-arrow {
        transform: rotate(90deg);
    }

    .results-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 36px;
    }

    .results-section {
        padding: 60px 0;
    }

    .results-header {
        margin-bottom: 40px;
    }

    .results-subtitle {
        font-size: 16px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-arrow {
        display: none;
    }

    .result-card {
        padding: 20px 18px;
    }

    .result-icon {
        font-size: 36px;
    }

    .result-number {
        font-size: 32px;
    }

    .result-label {
        font-size: 15px;
    }

    .result-description {
        font-size: 13px;
    }

    .result-metrics {
        gap: 10px;
    }

    .metric-value {
        font-size: 18px;
    }

    .metric-text {
        font-size: 10px;
    }

    .results-disclaimer {
        font-size: 12px;
        margin-top: 40px;
        padding: 0 20px;
    }

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

    .content-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-heading: 24px;
        --font-subheading: 16px;
        --font-body: 12px;
        --font-small: 10px;
    }

    .section-cta {
        margin-top: 32px;
    }

    .section-cta .btn-large {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }

    .hero-badge {
        padding: 10px 20px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .funnel-container {
        max-width: 300px;
        height: 300px;
    }

    .channel-icons {
        gap: 12px;
    }

    .channel-icon {
        padding: 10px;
    }

    .channel-icon svg {
        width: 20px;
        height: 20px;
    }

    .channel-label {
        font-size: 10px;
    }

    .funnel-graphic {
        top: 85px;
    }

    .funnel-bar {
        height: 32px;
    }

    .funnel-top .funnel-bar {
        width: 200px;
    }

    .funnel-mid .funnel-bar {
        width: 150px;
    }

    .funnel-bottom .funnel-bar {
        width: 100px;
    }

    .funnel-label {
        font-size: 11px;
    }

    .funnel-count {
        font-size: 10px;
        padding: 3px 8px;
    }

    .result-card,
    .meeting-card {
        padding: 10px 14px;
        border-radius: 10px;
    }

    .result-icon {
        width: 36px;
        height: 36px;
    }

    .result-icon svg {
        width: 20px;
        height: 20px;
    }

    .result-number {
        font-size: 16px;
    }

    .result-text,
    .meeting-time {
        font-size: 10px;
    }

    .meeting-avatar {
        width: 32px;
        height: 32px;
    }

    .meeting-title {
        font-size: 11px;
    }

    .logos-header {
        margin-bottom: 40px;
    }

    .logos-title {
        font-size: 22px;
    }

    .logos-container {
        padding: 20px 0;
        border-radius: 12px;
    }

    .logos-container::before,
    .logos-container::after {
        width: 50px;
    }

    .logos-track {
        gap: 40px;
    }

    .logo-item {
        width: 120px;
        height: 60px;
        padding: 10px;
    }

    .badge-text {
        font-size: 12px;
    }

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

    .stat-label {
        font-size: 11px;
    }

    .challenges-header {
        margin-bottom: 35px;
    }

    .challenges-intro {
        font-size: 16px;
    }

    .challenge-card {
        padding: 18px 16px;
    }

    .challenge-card h3 {
        font-size: 15px;
    }

    .challenge-card p {
        font-size: 13px;
    }

    .testimonials-header {
        margin-bottom: 35px;
    }

    .testimonial-card {
        width: 260px;
        padding: 18px 16px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-author h4 {
        font-size: 14px;
    }

    .testimonial-author p {
        font-size: 12px;
    }

    .value-card {
        padding: 32px 28px;
    }

    .page-header {
        padding: 60px 0;
    }

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

    .page-header p {
        font-size: 18px;
    }

    .values-grid,
    .team-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.pricing-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.plan-features {
    list-style: none;
    margin: 40px 0;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.plan-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    font-size: 1.05rem;
}

.plan-features li svg {
    color: #22c55e;
    flex-shrink: 0;
}

.btn-pricing {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }

    .pricing-section {
        padding: 60px 0;
    }
}