/* Global Styles */
:root {
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #DEE2E6;
    --dark-gray: #6C757D;
    --dark-text: #000000;
    --blue: #007BFF;
    --green: #2ECC71;
    --red: #E74C3C;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--dark-gray);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--blue), var(--green));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

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

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    left: 120%;
}

/* Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu li a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

.nav-menu li a:hover {
    color: var(--blue);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: var(--transition);
}

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

.demo-btn {
    padding: 10px 25px;
    font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
    z-index: 1001;
    padding: 5px;
    border-radius: 5px;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .nav-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
}

.mobile-menu-overlay .nav-menu li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
}

.mobile-menu-overlay .nav-menu li a {
    font-size: 1.2rem;
    padding: 15px;
    display: block;
    width: 100%;
}

.mobile-menu-overlay .nav-menu li a::after {
    display: none;
}

.mobile-menu-overlay .demo-btn {
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-size: 3.5rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    animation: fadeIn 1s ease-out 0.6s both;
}

.checklist {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.check-item i {
    color: var(--green);
    margin-right: 15px;
    font-size: 1.3rem;
    min-width: 26px;
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-btn {
    font-size: 1.2rem;
    padding: 18px 35px;
    animation: fadeIn 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.hero-btn::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: 0.5s;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-card {
    position: relative;
    width: 400px;
    height: 350px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--medium-gray);
}

.dashboard-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.agent-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.dashboard-overlay {
    position: absolute;
    bottom: 70px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
    
    display: none;
}

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

.overlay-item .status {
    display: block;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.overlay-item .status.success {
    background: rgba(46, 204, 113, 0.1);
    color: var(--green);
}

.dashboard-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    animation: pulse 2s infinite;
}

.dashboard-badge i {
    font-size: 1rem;
}

.dashboard-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: none;
    border-radius: 12px;
    padding: 15px;
    /* border: 1px solid var(--medium-gray); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.05), transparent);
    animation: wave-animation 15s linear infinite;
    opacity: 0.3;
}

.wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.2;
}

.wave:nth-child(3) {
    animation-delay: -10s;
    opacity: 0.1;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(10deg);
    }
    50% {
        transform: translate(-15px, 20px) rotate(-10deg);
    }
    75% {
        transform: translate(10px, 15px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--light-bg));
}

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

.problem-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid var(--medium-gray);
}

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

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 20px;
}

.comparison-visual {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.comparison-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-text);
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    border-radius: 2px;
}

.before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.before, .after {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.arrow-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--blue);
}

.screen {
    width: 100%;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.screen h4 {
    font-size: 1.4rem;
    margin: 15px 0;
    color: white;
}

.comparison-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.comparison-list li {
    margin: 15px 0;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
}

.comparison-list li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.red-screen {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.green-screen {
    background: linear-gradient(135deg, var(--green), #27ae60);
    color: white;
}

.screen i {
    font-size: 2.5rem;
}

/* Promise Section */
.promise-section {
    padding: 100px 0;
    position: relative;
    background: var(--white);
}

.slider-container {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 300px;
    border: 1px solid var(--medium-gray);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    padding: 40px;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--medium-gray);
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--blue);
    color: white;
}

.promise-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.icon-item {
    text-align: center;
    max-width: 200px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
    transition: var(--transition);
}

.icon-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 20px;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.step-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.connector {
    flex: 0 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--blue), var(--green));
    margin: 10px 0;
}

.connector i {
    color: var(--blue);
    font-size: 1.5rem;
}

/* Optimization Section */
.optimization-section {
    padding: 100px 0;
    background: var(--white);
}

.optimization-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.graph-container {
    flex: 1;
    min-width: 300px;
}

.graph-header {
    margin-bottom: 20px;
}

.graph-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.graph-header p {
    color: var(--dark-gray);
    margin: 0;
}

.graph-wrapper {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.chart-container {
    height: 300px;
    position: relative;
    margin-bottom: 20px;
}

.chart-container canvas {
    width: 100%;
    height: 100%;
}

.chart-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.chart-btn {
    padding: 8px 15px;
    background: white;
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    color: var(--dark-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.chart-btn:hover {
    background: var(--medium-gray);
}

.chart-btn.active {
    background: linear-gradient(90deg, var(--blue), var(--green));
    color: white;
    border-color: var(--blue);
}

.graph-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 120px;
    margin: 0px 2px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.optimization-features {
    flex: 1;
    min-width: 300px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.feature-content p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}

.optimization-process {
    text-align: center;
    margin-top: 50px;
}

.optimization-process h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 20px 0;
}

.process-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.process-step p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
    max-width: 200px;
    margin: 0 auto;
}

.process-arrow {
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
    font-size: 1.5rem;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.trust-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
}

.trust-item {
    max-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

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

/* Results Section */
.results-section {
    padding: 100px 0;
    background: var(--white);
}

.results-overview {
    margin-bottom: 50px;
}

.kpi-dashboard {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.kpi-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 250px;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    flex: 1;
    max-width: 350px;
}

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

.kpi-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.kpi-icon i {
    font-size: 2rem;
    color: white;
}

.kpi-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.kpi-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.kpi-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

.process-overview {
    margin-top: 70px;
    text-align: center;
}

.process-overview h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.process-steps-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.step-simple {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 20px 0;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 20px;
}

.step-icon i {
    font-size: 1.8rem;
    color: white;
}

.step-simple h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.step-simple p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    max-width: 200px;
    margin: 0 auto;
}

.step-arrow {
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    position: relative;
    overflow: hidden;
}

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

.cta-form-container {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.form-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-form {
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--light-bg);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    color: var(--dark-text);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

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

.checkbox-group {
    margin: 20px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-container a {
    color: var(--blue);
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.cta-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 600;
}

.form-footer {
    background: var(--light-bg);
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--medium-gray);
}

.form-footer p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-footer i {
    color: var(--green);
    margin-right: 5px;
}

/* Footer */
.site-footer {
    background: var(--light-bg);
    color: var(--dark-text);
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--medium-gray);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

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

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blue);
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--dark-text);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--medium-gray);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .dashboard-card {
        width: 350px;
        height: 320px;
    }
    
    .chart-container {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
        min-height: auto;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .hero-visual {
        justify-content: center;
    }
    
    .dashboard-card {
        width: 100%;
        max-width: 400px;
        height: 350px;
    }
    
    .checklist {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-footer {
        padding: 40px 0 15px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .optimization-content {
        flex-direction: column;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .optimization-process h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .dashboard-card {
        width: 100%;
        max-width: 350px;
        height: 320px;
    }
    
    .dashboard-overlay {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        bottom: 80px;
    }
    
    .overlay-item {
        width: 100%;
    }
    
    .dashboard-stats {
        bottom: 20px;
        flex-direction: row;
        gap: 5px;
    }
    
    .stat-item {
        display: block;
    }
    
    .site-footer {
        padding: 35px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-info {
        min-width: auto;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo-image {
        height: 30px;
        margin: 0 auto 15px;
    }
    
    .footer-description {
        margin: 0 auto;
    }
    
    .optimization-section {
        padding: 80px 0;
    }
    
    .graph-wrapper {
        padding: 15px;
    }
    
    .graph-header h3 {
        font-size: 1.3rem;
    }
    
    .chart-container {
        height: 200px;
    }
    
    .chart-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .graph-stats {
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
        min-width: 100px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .graph-legend {
        gap: 20px;
    }
    
    .optimization-process {
        margin-top: 40px;
    }
    
    .optimization-process h3 {
        font-size: 1.3rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px auto;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .dashboard-card {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    .check-item {
        font-size: 1rem;
    }
    
    .check-item i {
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .dashboard-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .dashboard-stats {
        padding: 10px;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .site-footer {
        padding: 30px 0 10px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .optimization-section {
        padding: 60px 0;
    }
    
    .graph-wrapper {
        padding: 10px;
    }
    
    .graph-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .graph-legend {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .optimization-process {
        margin-top: 30px;
    }
    
    .optimization-process h3 {
        font-size: 1.2rem;
    }
    
    .process-step {
        max-width: 250px;
    }
    
    .process-step h4 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .dashboard-card {
        max-width: 250px;
        height: 280px;
    }
    
    .dashboard-overlay {
        bottom: 70px;
    }
    
    .dashboard-stats {
        bottom: 15px;
    }
    
    .site-footer {
        padding: 25px 0 10px;
    }
    
    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .graph-header h3 {
        font-size: 1.2rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .dashboard-card {
        max-width: 220px;
        height: 260px;
    }
    
    .stat-value {
        font-size: 0.8rem;
    }
    
    .site-footer {
        padding: 20px 0 8px;
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .optimization-section {
        padding: 50px 0;
    }
    
    .graph-wrapper {
        padding: 8px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .optimization-process h3 {
        font-size: 1.1rem;
    }
}