
:root {
    --primary: #0097a7;
    --primary-dark: #00838f;
    --primary-light: #4dd0e1;
    --secondary: #1a3a5c;
    --accent: #f5a623;
    --success: #4caf50;
    --purple: #7b1fa2;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --text-primary: #1a3a5c;
    --text-secondary: #5a6a7a;
    --border: #e0e6ed;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

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

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-2deg); }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: var(--primary); }
    51%, 100% { border-color: transparent; }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(10px, -20px) scale(1.1); opacity: 0.8; }
    50% { transform: translate(-5px, -40px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(15px, -20px) scale(1.05); opacity: 0.7; }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 151, 167, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 151, 167, 0.6); }
}

@keyframes borderDraw {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

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

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

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

@keyframes morphBackground {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

.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-left {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }



/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f8 50%, #fdf8f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background Elements */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

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

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: -200px;
    right: -200px;
    animation: morphBackground 15s ease-in-out infinite, float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent), #ffd54f);
    bottom: -100px;
    left: -100px;
    animation: morphBackground 12s ease-in-out infinite reverse, floatReverse 10s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--success), #81c784);
    top: 50%;
    left: 10%;
    animation: morphBackground 10s ease-in-out infinite, float 6s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--purple), #ba68c8);
    top: 20%;
    right: 15%;
    animation: morphBackground 8s ease-in-out infinite reverse, floatReverse 7s ease-in-out infinite;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; background: var(--primary); }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; background: var(--accent); }
.particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; background: var(--success); }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; background: var(--purple); }
.particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; background: var(--primary); }
.particle:nth-child(6) { top: 80%; left: 30%; animation-delay: 5s; background: var(--accent); }
.particle:nth-child(7) { top: 10%; left: 60%; animation-delay: 6s; background: var(--success); }
.particle:nth-child(8) { top: 50%; left: 90%; animation-delay: 7s; background: var(--primary); }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 151, 167, 0.1);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.8s ease-out 0.2s both;
    border: 1px solid rgba(0, 151, 167, 0.2);
}

.hero-badge::before {
    content: '✨';
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero h1 .highlight {
    position: relative;
    color: var(--primary);
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(0, 151, 167, 0.2), rgba(245, 166, 35, 0.2));
    z-index: -1;
    animation: scaleIn 0.6s ease-out 1s both;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

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

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

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 151, 167, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 151, 167, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--border);
}

.hero-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--border);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.hero-stat-number.counting {
    animation: countUp 0.5s ease-out;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Floating Cards in Hero */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 5s ease-in-out infinite;
}

.floating-card-1 {
    top: 25%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-card-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
}

.floating-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card-1 .floating-card-icon { background: rgba(0, 151, 167, 0.1); }
.floating-card-2 .floating-card-icon { background: rgba(245, 166, 35, 0.1); }
.floating-card-3 .floating-card-icon { background: rgba(76, 175, 80, 0.1); }

.floating-card-text {
    font-size: 0.85rem;
}

.floating-card-text strong {
    display: block;
    color: var(--secondary);
    font-weight: 600;
}

.floating-card-text span {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    padding: 120px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.4s;
}

.intro-feature:hover {
    transform: translateY(10px);
    background: rgba(0, 151, 167, 0.1);
    box-shadow: 0 5px 20px rgba(0, 151, 167, 0.1);
}

.intro-feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.4s;
}

.intro-feature:hover .intro-feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.intro-feature span {
    font-weight: 500;
    color: var(--text-primary);
}

.intro-visual {
    position: relative;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem;
    color: white;
}

.intro-image-content {
    text-align: center;
}

.intro-image-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro-image-content p {
    opacity: 0.9;
    font-size: 1.05rem;
    line-height: 1.7;
}

.intro-floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

.intro-floating-card-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.intro-floating-card-2 {
    bottom: -20px;
    left: -30px;
    animation-delay: 2s;
}

.intro-floating-card span {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.intro-floating-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ROI Calculator Section */
.roi-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d2137 100%);
    position: relative;
    overflow: hidden;
}

.roi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.roi-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.roi-section .section-header h2 {
    color: white;
}

.roi-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.roi-calculator {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.roi-inputs h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.roi-slider-container {
    margin-bottom: 2rem;
}

.roi-slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.roi-slider-label span:first-child {
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roi-slider-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(0, 151, 167, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s;
}

.roi-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--bg-light) 0%, var(--bg-light) 100%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
}

.roi-slider::-webkit-slider-track {
    height: 10px;
    border-radius: 5px;
    background: var(--bg-light);
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 151, 167, 0.4);
    transition: all 0.3s;
    border: 3px solid white;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 151, 167, 0.5);
}

.roi-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 151, 167, 0.4);
    border: 3px solid white;
}

.slider-range {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.industry-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    background: var(--bg-light);
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    flex: 1;
    min-width: 60px;
}

.industry-label:hover {
    background: rgba(0, 151, 167, 0.1);
    color: var(--primary);
}

.industry-label.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.industry-slider {
    background: linear-gradient(90deg, 
        var(--primary) 0%, 
        var(--accent) 20%, 
        var(--success) 40%, 
        var(--purple) 60%, 
        var(--secondary) 80%, 
        var(--text-secondary) 100%
    ) !important;
}

.roi-results {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
}

.roi-results h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.roi-comparison-card {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s;
}

.roi-comparison-card.competitors {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
}

.roi-comparison-card.aimatric {
    background: linear-gradient(135deg, rgba(0, 151, 167, 0.1), rgba(76, 175, 80, 0.1));
    border: 2px solid var(--primary);
    animation: glowPulse 3s ease-in-out infinite;
}

.roi-comparison-card h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.roi-comparison-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.roi-comparison-card.competitors .price {
    color: #e53935;
    text-decoration: line-through;
    opacity: 0.7;
}

.roi-comparison-card.aimatric .price {
    color: var(--primary);
}

.roi-comparison-card .period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.roi-savings {
    background: linear-gradient(135deg, var(--success), #388e3c);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.roi-savings::before {
    content: '💰';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.roi-savings h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.roi-savings .amount {
    font-size: 1.4rem;
    font-weight: 700;
}

.roi-savings .percentage {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.roi-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.roi-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s;
}

.roi-benefit:hover {
    transform: translateY(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roi-benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 151, 167, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.roi-benefit span {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.roi-innovation-badge {
    background: linear-gradient(135deg, var(--accent), #e6940e);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
}

.roi-innovation-badge p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.roi-innovation-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Services Grid */
.services-section {
    padding: 120px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 151, 167, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:nth-child(2)::before { background: var(--accent); }
.service-card:nth-child(2)::after { background: linear-gradient(135deg, rgba(245, 166, 35, 0.03) 0%, transparent 100%); }
.service-card:nth-child(3)::before { background: var(--success); }
.service-card:nth-child(3)::after { background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, transparent 100%); }
.service-card:nth-child(4)::before { background: var(--purple); }
.service-card:nth-child(4)::after { background: linear-gradient(135deg, rgba(123, 31, 162, 0.03) 0%, transparent 100%); }
.service-card:nth-child(5)::before { background: #e91e63; }
.service-card:nth-child(5)::after { background: linear-gradient(135deg, rgba(233, 30, 99, 0.03) 0%, transparent 100%); }
.service-card:nth-child(6)::before { background: var(--secondary); }
.service-card:nth-child(6)::after { background: linear-gradient(135deg, rgba(26, 58, 92, 0.03) 0%, transparent 100%); }

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s;
}

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

.service-card:nth-child(1) .service-icon { background: rgba(0, 151, 167, 0.1); }
.service-card:nth-child(2) .service-icon { background: rgba(245, 166, 35, 0.1); }
.service-card:nth-child(3) .service-icon { background: rgba(76, 175, 80, 0.1); }
.service-card:nth-child(4) .service-icon { background: rgba(123, 31, 162, 0.1); }
.service-card:nth-child(5) .service-icon { background: rgba(233, 30, 99, 0.1); }
.service-card:nth-child(6) .service-icon { background: rgba(26, 58, 92, 0.1); }

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.service-card > .service-card-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.service-features li:hover {
    transform: translateY(8px);
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    width: 26px;
    height: 26px;
    background: rgba(0, 151, 167, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-card:nth-child(2) .service-features li::before { color: var(--accent); background: rgba(245, 166, 35, 0.1); }
.service-card:nth-child(3) .service-features li::before { color: var(--success); background: rgba(76, 175, 80, 0.1); }
.service-card:nth-child(4) .service-features li::before { color: var(--purple); background: rgba(123, 31, 162, 0.1); }
.service-card:nth-child(5) .service-features li::before { color: #e91e63; background: rgba(233, 30, 99, 0.1); }
.service-card:nth-child(6) .service-features li::before { color: var(--secondary); background: rgba(26, 58, 92, 0.1); }

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 151, 167, 0.1);
    border-radius: 10px;
}

.learn-more:hover {
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    transform: translateY(5px);
}

.service-card:nth-child(2) .learn-more { color: var(--accent); background: rgba(245, 166, 35, 0.1); }
.service-card:nth-child(2) .learn-more:hover { background: var(--accent); color: white; }
.service-card:nth-child(3) .learn-more { color: var(--success); background: rgba(76, 175, 80, 0.1); }
.service-card:nth-child(3) .learn-more:hover { background: var(--success); color: white; }
.service-card:nth-child(4) .learn-more { color: var(--purple); background: rgba(123, 31, 162, 0.1); }
.service-card:nth-child(4) .learn-more:hover { background: var(--purple); color: white; }
.service-card:nth-child(5) .learn-more { color: #e91e63; background: rgba(233, 30, 99, 0.1); }
.service-card:nth-child(5) .learn-more:hover { background: #e91e63; color: white; }
.service-card:nth-child(6) .learn-more { color: var(--secondary); background: rgba(26, 58, 92, 0.1); }
.service-card:nth-child(6) .learn-more:hover { background: var(--secondary); color: white; }

/* Why Choose Us */
.why-section {
    padding: 120px 2rem;
    background: var(--bg-light);
}

/* Integrations Section */
.integrations-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, #f8fbfc 0%, #e8f4f8 100%);
}

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

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 60px;
}

@media (min-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.integration-category {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.integration-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.integration-category h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.integration-item:hover {
    background: var(--bg-light);
    transform: translateY(5px);
}

.integration-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.integration-logo.sap { background: linear-gradient(135deg, #0070f2, #0050b3); }
.integration-logo.oracle { background: linear-gradient(135deg, #f80000, #c00000); }
.integration-logo.salesforce { background: linear-gradient(135deg, #00a1e0, #0070d2); }
.integration-logo.zoho { background: linear-gradient(135deg, #e42527, #c01f21); }
.integration-logo.microsoft { background: linear-gradient(135deg, #00a4ef, #0078d4); }
.integration-logo.hubspot { background: linear-gradient(135deg, #ff7a59, #ff5c35); }
.integration-logo.pipedrive { background: linear-gradient(135deg, #1a1a1a, #333333); }
.integration-logo.google { background: linear-gradient(135deg, #4285f4, #34a853); }
.integration-logo.quickbooks { background: linear-gradient(135deg, #2ca01c, #108000); }
.integration-logo.xero { background: linear-gradient(135deg, #13b5ea, #0b8ec4); }
.integration-logo.rest { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.integration-logo.graphql { background: linear-gradient(135deg, #e535ab, #c41d8e); }
.integration-logo.webhook { background: linear-gradient(135deg, var(--accent), #e6940e); }
.integration-logo.database { background: linear-gradient(135deg, var(--purple), #6a1b9a); }
.integration-logo.legacy { background: linear-gradient(135deg, #607d8b, #455a64); }
.integration-logo.custom { background: linear-gradient(135deg, var(--success), #388e3c); }

.integration-item span {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.integration-cta {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--secondary), #0d2137);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.integration-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 151, 167, 0.2) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

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

.integration-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.integration-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.integration-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* API Flow Animation Styles */
.api-flow-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    overflow: hidden;
}

.api-flow-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.api-flow-header h3 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.api-flow-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.api-flow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 350px;
    position: relative;
}

.api-systems {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.api-system-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.4s;
    position: relative;
    min-width: 140px;
}

.api-system-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 151, 167, 0.2);
}

.left-systems .api-system-card {
    flex-direction: row;
}

.right-systems .api-system-card {
    flex-direction: row-reverse;
}

.system-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.system-icon.sap { background: linear-gradient(135deg, #0070f2, #0050b3); }
.system-icon.oracle { background: linear-gradient(135deg, #f80000, #c00000); }
.system-icon.zoho { background: linear-gradient(135deg, #e42527, #c01f21); }
.system-icon.salesforce { background: linear-gradient(135deg, #00a1e0, #0070d2); }
.system-icon.dynamics { background: linear-gradient(135deg, #00a4ef, #0078d4); }
.system-icon.custom { background: linear-gradient(135deg, var(--success), #388e3c); }

.api-system-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Data Packets Animation */
.data-packet {
    position: absolute;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.data-packet.outgoing {
    right: -40px;
    animation: packetMoveRight 3s ease-in-out infinite;
}

.data-packet.incoming {
    left: -40px;
    animation: packetMoveLeft 3s ease-in-out infinite;
}

.data-packet.delay-1 { animation-delay: 1s; }
.data-packet.delay-2 { animation-delay: 2s; }

@keyframes packetMoveRight {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(30px) scale(1.2); opacity: 0.7; }
}

@keyframes packetMoveLeft {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.7; }
}

/* API Lines */
.api-lines {
    width: 120px;
    height: 300px;
    position: relative;
    z-index: 1;
}

.api-lines svg {
    width: 100%;
    height: 100%;
}

.api-line {
    fill: none;
    stroke: var(--border);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    animation: lineDash 1s linear infinite;
}

.line-1, .line-4 { stroke: #0070f2; }
.line-2, .line-5 { stroke: #f80000; }
.line-3, .line-6 { stroke: #e42527; }

@keyframes lineDash {
    to { stroke-dashoffset: -12; }
}

.data-dot {
    fill: var(--primary);
    filter: drop-shadow(0 0 6px var(--primary));
}

.dot-1, .dot-4 { fill: #0070f2; }
.dot-2, .dot-5 { fill: #f80000; }
.dot-3, .dot-6 { fill: #e42527; }

/* AI Agent Hub */
.ai-agent-hub {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hub-outer-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(0, 151, 167, 0.15);
    border-radius: 50%;
    animation: hubRotate 20s linear infinite;
}

.hub-outer-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

.hub-middle-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(0, 151, 167, 0.25);
    border-radius: 50%;
    animation: hubRotate 15s linear infinite reverse;
}

.hub-inner-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 151, 167, 0.3);
    border-radius: 50%;
    animation: hubPulse 2s ease-in-out infinite, coreGlow 8s ease-in-out infinite;
}

@keyframes hubRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.hub-core {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--success));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 151, 167, 0.4);
    z-index: 4;
    animation: coreGlow 2s ease-in-out infinite, hubPulse 4s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 151, 167, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(0, 151, 167, 0.6), 0 0 30px rgba(0, 151, 167, 0.3); }
}

.hub-icon {
    font-size: 2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.hub-core span {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
}

.hub-status {
    position: absolute;
    bottom: -35px;
    white-space: nowrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.hub-data-display {
    position: absolute;
    top: -40px;
    display: flex;
    gap: 1rem;
}

.data-item {
    background: white;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.data-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

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

/* API Flow Description */
.api-flow-description {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.flow-step:hover {
    background: rgba(0, 151, 167, 0.1);
    transform: translateY(-3px);
}

.flow-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.flow-step-icon.fetch { background: linear-gradient(135deg, #0070f2, #0050b3); }
.flow-step-icon.process { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.flow-step-icon.push { background: linear-gradient(135deg, var(--success), #388e3c); }

.flow-step-content h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.flow-step-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 180px;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    animation: arrowPulse 3s ease-in-out infinite;
}
.flow-arrow:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes arrowPulse {
    0%{ opacity: 1; transform: translateX(0px); }
    50% { opacity: 0.0; transform: translateX(8px); }
    100% { opacity: 0.01; transform: translateX(-8px); }
}


/* API Live Stats */
.api-live-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--secondary), #0d2137);
    border-radius: 16px;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 151, 167, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.live-stat-info {
    display: flex;
    flex-direction: column;
}

.live-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.live-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive for API Flow */
@media (max-width: 1024px) {
    .api-flow-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .api-systems {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .api-lines {
        display: none;
    }

    .left-systems .api-system-card,
    .right-systems .api-system-card {
        flex-direction: column;
        text-align: center;
    }

    .data-packet {
        display: none;
    }

    .api-flow-description {
        flex-direction: column;
        gap: 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg)!important;
    }

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

@media (max-width: 768px) {
    .api-live-stats {
        grid-template-columns: 1fr;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
    }

    .flow-step-content p {
        max-width: 100%;
    }
    .flow-arrow {
        transform: rotate(90deg)!important;
    }
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 60px;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s;
}

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

.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, var(--accent), #ffd54f); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, var(--success), #81c784); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, var(--purple), #ba68c8); }
.why-card:nth-child(5) .why-icon { background: linear-gradient(135deg, var(--secondary), #546e7a); }
.why-card:nth-child(6) .why-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.why-card h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 120px 2rem;
    background: var(--bg-white);
}

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

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success), var(--purple), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    z-index: 0;
    border-radius: 2px;
}

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

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 20s linear infinite;
}

.step-number:hover {
    transform: scale(1.15);
}

.process-step:nth-child(1) .step-number { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.process-step:nth-child(2) .step-number { background: linear-gradient(135deg, var(--accent), #e6940e); }
.process-step:nth-child(3) .step-number { background: linear-gradient(135deg, var(--success), #388e3c); }
.process-step:nth-child(4) .step-number { background: linear-gradient(135deg, var(--purple), #6a1b9a); }
.process-step:nth-child(5) .step-number { background: linear-gradient(135deg, var(--primary), var(--accent)); }

.process-step h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-step .duration {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background: var(--bg-light);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 2rem;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 2rem;
    background: var(--bg-light);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-size: 1rem;
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 140px 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 151, 167, 0.05) 0%, rgba(245, 166, 35, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230097a7' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.cta-section > .cta-container > p {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 151, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 151, 167, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--secondary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}



/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .intro-grid,
    .roi-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }

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

    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    

    .hero-floating-elements {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stat::after {
        display: none;
    }

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

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

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

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

    .roi-comparison {
        grid-template-columns: 1fr;
    }

    .roi-benefits {
        grid-template-columns: 1fr;
    }
    .integrations-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
