:root {
    --primary-color: #b53ac1;
    --secondary-color: #1ae5be;
    --secondary-dark: #16c7a6;
    --tertiary-color: #FF6B35;
    --tertiary-dark: #FF8C42;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #b53ac1 0%, #9d2db0 100%);
    --gradient-secondary: linear-gradient(135deg, #1ae5be 0%, #16c7a6 100%);
    --gradient-tertiary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --shadow-soft: 0 4px 20px rgba(181, 58, 193, 0.1);
    --shadow-medium: 0 8px 30px rgba(181, 58, 193, 0.15);
    --shadow-tertiary: 0 4px 20px rgba(255, 107, 53, 0.25);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Add scroll offset for sections to account for sticky header */
section[id] {
    scroll-margin-top: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Ensure all buttons and button-like elements have pointer cursor */
button,
.btn,
[class*="btn-"],
[class*="cta-"],
input[type="button"],
input[type="submit"],
input[type="reset"],
a[role="button"] {
    cursor: pointer;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(181, 58, 193, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-button.cta-secondary {
    background: var(--gradient-secondary);
}

.cta-button.cta-secondary:hover {
    box-shadow: 0 8px 30px rgba(26, 229, 190, 0.15);
}

.cta-button.cta-tertiary {
    background: var(--gradient-tertiary);
}

.cta-button.cta-tertiary:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23b53ac1" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none;
}

.bg-icon {
    position: absolute;
    font-size: 6rem;
    animation: float 8s ease-in-out infinite;
}

.bg-icon {
    opacity: 0.4;
    z-index: 1;
}

.bg-icon:nth-child(1) { top: 50%; right: 47%; animation-delay: 0s; font-size: 4rem; color: var(--primary-color); }
.bg-icon:nth-child(2) { top: 15%; right: 0%; animation-delay: 2s; font-size: 4rem; color: var(--secondary-color); }
.bg-icon:nth-child(3) { top: 55%; right: -3%; animation-delay: 1s; font-size: 6rem; color: var(--primary-color); }
.bg-icon:nth-child(4) { top: 85%; right: 8%; animation-delay: 3s; font-size: 4.5rem; color: var(--secondary-color); }
.bg-icon:nth-child(5) { top: 10%; right: 20%; animation-delay: 4s; font-size: 4.5rem; color: var(--primary-color); }
.bg-icon:nth-child(6) { top: 80%; right: 45%; animation-delay: 5s; font-size: 3.5rem; color: var(--secondary-color); }
.bg-icon:nth-child(7) { bottom: 0%; right: 25%; animation-delay: 6s; font-size: 4rem; color: var(--primary-color); }
.bg-icon:nth-child(8) { top: 20%; right: 45%; animation-delay: 7s; font-size: 4rem; color: var(--secondary-color); }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

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

.hero-text h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-primary.btn-secondary-color {
    background: var(--gradient-secondary);
}

.btn-primary.btn-secondary-color:hover {
    box-shadow: 0 8px 30px rgba(26, 229, 190, 0.15);
}

.hero-image {
    position: relative;
    z-index: 10;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(181, 58, 193, 0.15);
    padding: 0.5rem;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: 0 30px 70px rgba(181, 58, 193, 0.2);
}

.mockup-header {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.5rem;
}

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

.mockup-dot:first-child { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27ca3f; }

.mockup-content {
    border-radius: 4px;
    overflow: hidden;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(181, 58, 193, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card.icon-left {
    padding: 1.5rem 2rem 1.5rem 3rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stat-bg-icon {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    color: var(--secondary-color);
    opacity: 0.35;
    z-index: 1;
}

.stat-card.icon-left .stat-content {
    margin-left: auto;
    text-align: right;
    position: relative;
    z-index: 2;
}

.stat-card.icon-left .stat-content h3 {
    font-size: 3rem;
    margin-bottom: 0.25rem;
    line-height: 1;
    color: var(--primary-color);
}

.stat-card.icon-left .stat-content p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
    color: var(--text-gray);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-icon-wrapper.secondary {
    background: var(--gradient-secondary);
}

.stat-icon-wrapper.accent {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon-wrapper.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

.trend-indicator {
    font-weight: bold;
    color: #10b981;
}

.trend-text {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
}

.stat-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(181, 58, 193, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-content .unit {
    font-size: 2.2rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-left: -7px;
    text-shadow: -1px -1px rgba(248, 250, 252, 1);
}

.stat-content p {
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(181, 58, 193, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 1s ease;
}

.progress-fill.secondary {
    background: var(--gradient-secondary);
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.stat-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

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

.comparison-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.comparison-value {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-item.highlight .comparison-value {
    color: var(--primary-color);
}

.comparison-arrow {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.stat-visual {
    margin-top: 1rem;
}

.savings-chart {
    display: flex;
    gap: 1rem;
    align-items: end;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.chart-bar {
    flex: 1;
    text-align: center;
}

.bar-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.bar-fill {
    width: 100%;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
}

.chart-bar.before .bar-fill {
    height: 60px;
    background: linear-gradient(to top, #ef4444, #fca5a5);
}

.chart-bar.after .bar-fill {
    height: 40px;
    background: linear-gradient(to top, #10b981, #6ee7b7);
}

.bar-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* New stat elements */
.stat-breakdown {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

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

.breakdown-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.breakdown-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.breakdown-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.stat-visual-grid {
    margin-top: 1rem;
}

.time-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.time-block {
    text-align: center;
    flex: 1;
}

.time-block i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.time-block.before i {
    color: #ef4444;
}

.time-block.after i {
    color: var(--secondary-color);
}

.time-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.time-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.time-block.before .time-value {
    color: #ef4444;
}

.time-block.after .time-value {
    color: var(--secondary-color);
}

.time-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 0 1rem;
}

/* Features Section */
.features {
    background: var(--bg-light);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Process Section */
.process {
    background: var(--white);
    padding: 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

@keyframes step-glow {
    0%, 75% {
        box-shadow: none;
        transform: scale(1);
    }
    2.5%, 22.5% {
        box-shadow: 0 0 20px rgba(26, 229, 190, 0.6), 0 0 40px rgba(26, 229, 190, 0.3);
        transform: scale(1.1);
    }
    25%, 100% {
        box-shadow: none;
        transform: scale(1);
    }
}

@keyframes overlay-fade {
    0%, 75% {
        opacity: 0;
    }
    2.5%, 22.5% {
        opacity: 1;
    }
    25%, 100% {
        opacity: 0;
    }
}

.process-step:nth-child(1) .step-number {
    animation: step-glow 20s infinite ease-in-out;
    animation-delay: 0s;
}

.process-step:nth-child(1) .step-number::before {
    animation: overlay-fade 20s infinite ease-in-out;
    animation-delay: 0s;
}

.process-step:nth-child(2) .step-number {
    animation: step-glow 20s infinite ease-in-out;
    animation-delay: 5s;
}

.process-step:nth-child(2) .step-number::before {
    animation: overlay-fade 20s infinite ease-in-out;
    animation-delay: 5s;
}

.process-step:nth-child(3) .step-number {
    animation: step-glow 20s infinite ease-in-out;
    animation-delay: 10s;
}

.process-step:nth-child(3) .step-number::before {
    animation: overlay-fade 20s infinite ease-in-out;
    animation-delay: 10s;
}

.process-step:nth-child(4) .step-number {
    animation: step-glow 20s infinite ease-in-out;
    animation-delay: 15s;
}

.process-step:nth-child(4) .step-number::before {
    animation: overlay-fade 20s infinite ease-in-out;
    animation-delay: 15s;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.6s ease;
    color: #999;
}

.process-step p {
    transition: color 0.6s ease;
    color: #bbb;
}

@keyframes text-highlight {
    0%, 75% {
        color: #999;
    }
    2.5%, 22.5% {
        color: var(--text-dark);
    }
    25%, 100% {
        color: #999;
    }
}

@keyframes text-highlight-p {
    0%, 75% {
        color: #bbb;
    }
    2.5%, 22.5% {
        color: var(--text-gray);
    }
    25%, 100% {
        color: #bbb;
    }
}

.process-step:nth-child(1) h3 {
    animation: text-highlight 20s infinite ease-in-out;
    animation-delay: 0s;
}

.process-step:nth-child(1) p {
    animation: text-highlight-p 20s infinite ease-in-out;
    animation-delay: 0s;
}

.process-step:nth-child(2) h3 {
    animation: text-highlight 20s infinite ease-in-out;
    animation-delay: 5s;
}

.process-step:nth-child(2) p {
    animation: text-highlight-p 20s infinite ease-in-out;
    animation-delay: 5s;
}

.process-step:nth-child(3) h3 {
    animation: text-highlight 20s infinite ease-in-out;
    animation-delay: 10s;
}

.process-step:nth-child(3) p {
    animation: text-highlight-p 20s infinite ease-in-out;
    animation-delay: 10s;
}

.process-step:nth-child(4) h3 {
    animation: text-highlight 20s infinite ease-in-out;
    animation-delay: 15s;
}

.process-step:nth-child(4) p {
    animation: text-highlight-p 20s infinite ease-in-out;
    animation-delay: 15s;
}

/* Feature Showcase Section */
.feature-showcase {
    background: var(--bg-light);
    padding: 60px 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-features p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.showcase-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.showcase-feature:hover,
.showcase-feature.active {
    background: rgba(124, 58, 237, 0.05);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.showcase-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.showcase-feature.active .showcase-feature-icon {
    background: var(--gradient-secondary);
}

.showcase-feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.showcase-feature-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.showcase-image {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    overflow: hidden;
}

.showcase-screen {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
}

.showcase-screen.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.showcase-screen img {
    width: 100%;
    height: auto;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
    position: relative;
    padding: 60px 0;
    color: var(--text-dark);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%2314B8A6"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%2314B8A6"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%2314B8A6"/></svg>');
    background-size: 800px 200px;
    background-repeat: repeat-x;
    opacity: 0.15;
    animation: wave 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,120V73.71c47.79-22.2,103.59-32.17,158-28,70.36,5.37,136.33,33.31,206.8,37.5C438.64,87.57,512.34,66.33,583,47.95c69.27-18,138.3-24.88,209.4-13.08,36.15,6,69.85,17.84,104.45,29.34C989.49,95,1113,134.29,1200,67.53V120Z" opacity=".25" fill="%2314B8A6"/><path d="M0,120V104.19C13,83.08,27.64,63.14,47.69,47.95,99.41,8.73,165,9,224.58,28.42c31.15,10.15,60.09,26.07,89.67,39.8,40.92,19,84.73,46,130.83,49.67,36.26,2.85,70.9-9.42,98.6-31.56,31.77-25.39,62.32-62,103.63-73,40.44-10.79,81.35,6.69,119.13,24.28s75.16,39,116.92,43.05c59.73,5.85,113.28-22.88,168.9-38.84,30.2-8.66,59-6.17,87.09,7.5,22.43,10.89,48,26.93,60.65,49.24V120Z" opacity=".5" fill="%2314B8A6"/><path d="M0,120V114.37C149.93,61,314.09,48.68,475.83,77.43c43,7.64,84.23,20.12,127.61,26.46,59,8.63,112.48-12.24,165.56-35.4C827.93,42.78,886,24.76,951.2,30c86.53,7,172.46,45.71,248.8,84.81V120Z" fill="%2314B8A6"/></svg>');
    background-size: 800px 200px;
    background-repeat: repeat-x;
    opacity: 0.15;
    animation: wave-reverse 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-400px);
    }
}

@keyframes wave-reverse {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(400px);
    }
}

.testimonials .section-header h2 {
    color: var(--text-dark);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .section-header p {
    color: var(--text-gray);
}

.testimonials-container {
    position: relative;
    margin-top: 4rem;
    z-index: 5;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0 60px 0; /* Minimal top padding (10px for 5px hover), more bottom (60px for shadow) */
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(90deg,
        #E5FDF8 0%,
        rgba(229, 253, 248, 0.9) 20%,
        rgba(229, 253, 248, 0.5) 50%,
        rgba(229, 253, 248, 0) 100%);
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(90deg,
        rgba(214, 251, 244, 0) 0%,
        rgba(214, 251, 244, 0.5) 50%,
        rgba(214, 251, 244, 0.9) 80%,
        #D6FBF4 100%);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
    padding-left: 240px; /* (1200px - 720px) / 2 = 240px to center first card */
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 720px;
    max-width: 720px;
    flex-shrink: 0;
    margin: 0 1rem;
    border: 2px solid #E5E7EB;
}

.testimonial-card.active {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
}


.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}


.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 3rem;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-family: serif;
    opacity: 0.2;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

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

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-details p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.company-logo {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Blog Section */
.blog {
    background: var(--white);
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.blog-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

.blog-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Integration Section */
.integrations {
    background: var(--bg-light);
    padding: 60px 0;
}

.integrations-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1200px) {
    .integrations-wrapper {
        display: flex;
        gap: 2rem;
    }

    .integrations-wrapper .integration-group {
        flex: 1;
        width: 50%;
    }
}

.integration-group {
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.integration-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.integration-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.integration-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.integration-scroll-wrapper::before,
.integration-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.integration-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg,
        rgba(248, 250, 252, 1) 0%,
        rgba(248, 250, 252, 0.8) 30%,
        rgba(248, 250, 252, 0) 100%);
}

.integration-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(90deg,
        rgba(248, 250, 252, 0) 0%,
        rgba(248, 250, 252, 0.8) 70%,
        rgba(248, 250, 252, 1) 100%);
}

.integration-scroll-content {
    display: flex;
    align-items: center;
}

.integration-logos-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    min-width: max-content;
}

.integration-logo-item {
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.integration-logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: var(--shadow-soft);
}

.integration-logo-item img {
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.integration-logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-integrations {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2.5rem));
    }
}

@keyframes scroll-integrations-reverse {
    0% {
        transform: translateX(calc(-50% - 2.5rem));
    }
    100% {
        transform: translateX(0);
    }
}

.integration-scroll-wrapper:hover .integration-scroll-content {
    animation-play-state: paused;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 50%, #581C87 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="white" stroke-width="1" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaGrid)"/></svg>');
    background-size: 50px 50px;
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite reverse;
}

.cta-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cta-bg-icon {
    position: absolute;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.12);
    animation: float 12s ease-in-out infinite;
}

.cta-bg-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 5rem; }
.cta-bg-icon:nth-child(2) { top: 10%; left: 25%; animation-delay: 2s; font-size: 6rem; }
.cta-bg-icon:nth-child(3) { top: 10%; left: 45%; animation-delay: 4s; font-size: 5.5rem; }
.cta-bg-icon:nth-child(4) { top: 10%; left: 65%; animation-delay: 6s; font-size: 6.5rem; }
.cta-bg-icon:nth-child(5) { top: 10%; left: 85%; animation-delay: 8s; font-size: 5rem; }
.cta-bg-icon:nth-child(6) { top: 50%; left: 10%; animation-delay: 10s; font-size: 7rem; }
.cta-bg-icon:nth-child(7) { top: 50%; left: 35%; animation-delay: 1s; font-size: 5.5rem; }
.cta-bg-icon:nth-child(8) { top: 50%; left: 60%; animation-delay: 3s; font-size: 6rem; }
.cta-bg-icon:nth-child(9) { top: 50%; left: 85%; animation-delay: 5s; font-size: 6.5rem; }
.cta-bg-icon:nth-child(10) { bottom: 40%; left: 10%; animation-delay: 7s; font-size: 5rem; }
.cta-bg-icon:nth-child(11) { bottom: 10%; left: 30%; animation-delay: 9s; font-size: 6rem; }
.cta-bg-icon:nth-child(12) { bottom: 10%; left: 52%; animation-delay: 11s; font-size: 5.5rem; }

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

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-white {
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    padding-left: 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--secondary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 1;
    padding-left: 8px;
}

.footer-links a:hover::before {
    transform: scaleY(1);
}

/* Social Links Styling */
.footer-social {
    margin-top: 1.5rem;
}

.footer-social .social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* Footer bottom links styling */
.footer-bottom a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .stats-grid,
    .stats-grid.three-cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-content h3 {
        font-size: 2rem;
    }

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

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-features {
        width: 100%;
    }

    .showcase-image {
        display: none;
    }

    .showcase-features h2 {
        font-size: 2rem;
    }

    .showcase-features p {
        font-size: 1rem;
    }

    .showcase-feature-content h3 {
        font-size: 1rem;
    }

    .showcase-feature-content p {
        font-size: 0.85rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .logo img {
        height: 32px;
    }

    .infinite-scroll-wrapper::before,
    .infinite-scroll-wrapper::after {
        display: none;
    }

    .testimonials-carousel::before,
    .testimonials-carousel::after {
        display: none;
    }

    .integration-scroll-wrapper::before,
    .integration-scroll-wrapper::after {
        display: none;
    }

    .scroll-content {
        animation: scroll-brands 15s linear infinite !important;
    }

    .integration-scroll-content {
        animation-duration: 8s;
    }

    .testimonials::before,
    .testimonials::after {
        display: none;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials .container {
        padding: 0;
        max-width: 100%;
    }

    .testimonials-carousel {
        padding: 0;
    }

    .testimonials-track {
        padding-left: 10px;
    }

    .testimonial-card {
        min-width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        margin: 0 5px;
        padding: 1.5rem;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .testimonial-card blockquote::before {
        font-size: 3rem;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }

    .author-details h4 {
        font-size: 1rem;
    }

    .author-details p {
        font-size: 0.85rem;
    }

    .company-logo img {
        height: 28px;
        max-width: 100px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step::before {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 20px;
    }

    .cta-section p {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 2rem;
    }

    .cta-content {
        padding: 0 20px;
    }

    .btn-white {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Referrals Section */
.referrals {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.infinite-scroll-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.infinite-scroll-wrapper::before,
.infinite-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.infinite-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.8) 30%,
        rgba(255, 255, 255, 0) 100%);
}

.infinite-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 70%,
        rgba(255, 255, 255, 1) 100%);
}

.referral-logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.referral-logo:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

.referral-logo img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-content {
    display: flex;
    align-items: center;
    animation: scroll-brands 40s linear infinite;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2.5rem));
    }
}

.infinite-scroll-wrapper:hover .scroll-content {
    animation-play-state: paused;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.pulse {
    animation: pulse 4s ease-in-out infinite;
}