/* EaseAssets Landing Page - Premium Version with Fancy Styling */

:root {
    --primary: #4F6BF2;
    --primary-dark: #3d56d4;
    --primary-light: #e8ebfd;
    --primary-gradient: linear-gradient(135deg, #4F6BF2 0%, #7c3aed 50%, #a855f7 100%);
    --success: #22c55e;
    --success-light: #dcfce7;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --purple: #a855f7;
    --purple-light: #f3e8ff;
    --teal: #14b8a6;
    --teal-light: #ccfbf1;
    --orange: #f97316;
    --orange-light: #ffedd5;
    --pink: #ec4899;
    --pink-light: #fce7f3;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #999999;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 40px rgba(79, 107, 242, 0.3);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(79, 107, 242, 0.3); }
    50% { box-shadow: 0 0 40px rgba(79, 107, 242, 0.5); }
}

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

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

/* Header with Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.header-scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s;
}

.logo:hover { transform: scale(1.02); }

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(79, 107, 242, 0.3);
}

.logo-text { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav { display: flex; gap: 32px; }
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; }

/* Buttons with Premium Effects */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
    background: var(--primary-gradient);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 107, 242, 0.4);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 107, 242, 0.5);
    animation: gradient-shift 2s ease infinite;
}
.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-xl); }
.btn-full { width: 100%; }

/* Section Styles with Fancy Headers */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: var(--primary);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(79, 107, 242, 0.15);
}

.section-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.section-badge.light {
    background: rgba(255,255,255,0.15);
    color: white;
    backdrop-filter: blur(10px);
}
.section-badge.light::before { background: white; }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero with Mesh Gradient Background */
.hero {
    padding: 140px 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 107, 242, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}


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

.hero-badges { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-badge {
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.hero-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-badge.green { background: var(--success-light); color: var(--success); border: 1px solid rgba(34, 197, 94, 0.2); }
.hero-badge.blue { background: var(--primary-light); color: var(--primary); border: 1px solid rgba(79, 107, 242, 0.2); }
.hero-badge.purple { background: var(--purple-light); color: var(--purple); border: 1px solid rgba(168, 85, 247, 0.2); }

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}
.hero-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; }

/* Dashboard Preview with 3D Effect */
.hero-visual {
    animation: float 6s ease-in-out infinite;
}

.dashboard-preview {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    box-shadow:
        var(--shadow-2xl),
        0 0 0 1px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.8);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
    box-shadow:
        var(--shadow-2xl),
        0 40px 60px -20px rgba(79, 107, 242, 0.3),
        0 0 0 1px rgba(79, 107, 242, 0.1);
}

.preview-header {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.preview-dots { display: flex; gap: 8px; }
.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}
.preview-dots span:nth-child(1) { background: linear-gradient(180deg, #ff6b6b 0%, #ef4444 100%); }
.preview-dots span:nth-child(2) { background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%); }
.preview-dots span:nth-child(3) { background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%); }
.preview-title { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.3px; }
.preview-body { display: grid; grid-template-columns: 56px 1fr; min-height: 300px; }
.preview-sidebar {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    border-right: 1px solid var(--border);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-item {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.6);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}
.sidebar-item.active {
    background: var(--primary-gradient);
    box-shadow: 0 4px 12px rgba(79, 107, 242, 0.4);
}
.preview-main { padding: 20px; background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); }
.preview-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.stat-card {
    padding: 14px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card.blue { background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%); }
.stat-card.green { background: linear-gradient(135deg, var(--success-light) 0%, #d1fae5 100%); }
.stat-card.amber { background: linear-gradient(135deg, var(--warning-light) 0%, #fed7aa 100%); }
.stat-card.purple { background: linear-gradient(135deg, var(--purple-light) 0%, #e9d5ff 100%); }
.stat-number { display: block; font-size: 22px; font-weight: 800; }
.stat-label { font-size: 10px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.preview-chart { display: flex; align-items: flex-end; gap: 14px; height: 110px; padding-top: 20px; }
.chart-bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: 6px 6px 0 0;
    min-height: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}
.chart-bar:hover { filter: brightness(1.1); }

/* Hero Stats with Glass Effect */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 48px 56px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.hero-stats::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(79, 107, 242, 0.1) 0%, transparent 50%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.hero-stat { text-align: center; padding: 0 8px; }
.hero-stat-value {
    display: block;
    font-size: 40px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.hero-stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.hero-stat-divider { width: 1px; background: linear-gradient(180deg, transparent, var(--border), transparent); }

/* Modules with Premium Cards */
.modules {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

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

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(79, 107, 242, 0.1);
    border-color: transparent;
}

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

.module-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(79, 107, 242, 0.05) 0%, rgba(168, 85, 247, 0.03) 100%);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md), 0 0 30px rgba(79, 107, 242, 0.1);
}

.module-card.featured::before { transform: scaleX(1); }

.module-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.module-card:hover .module-icon { transform: scale(1.1); }

.module-icon svg { width: 26px; height: 26px; }
.module-icon.blue { background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%); color: var(--primary); box-shadow: 0 4px 12px rgba(79, 107, 242, 0.2); }
.module-icon.green { background: linear-gradient(135deg, var(--success-light) 0%, #d1fae5 100%); color: var(--success); box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2); }
.module-icon.purple { background: linear-gradient(135deg, var(--purple-light) 0%, #e9d5ff 100%); color: var(--purple); box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2); }
.module-icon.amber { background: linear-gradient(135deg, var(--warning-light) 0%, #fed7aa 100%); color: var(--warning); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2); }
.module-icon.teal { background: linear-gradient(135deg, var(--teal-light) 0%, #99f6e4 100%); color: var(--teal); box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2); }
.module-icon.red { background: linear-gradient(135deg, var(--danger-light) 0%, #fecaca 100%); color: var(--danger); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2); }
.module-icon.orange { background: linear-gradient(135deg, var(--orange-light) 0%, #fed7aa 100%); color: var(--orange); box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2); }
.module-icon.pink { background: linear-gradient(135deg, var(--pink-light) 0%, #fbcfe8 100%); color: var(--pink); box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2); }
.module-icon.gray { background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); color: #6b7280; box-shadow: 0 4px 12px rgba(107, 114, 128, 0.1); }
.module-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
.module-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.module-features { list-style: none; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.module-features li {
    font-size: 12px;
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 16px;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s;
}
.module-features li:hover { background: var(--primary-light); color: var(--primary); }

/* Compliance Section with Premium Design */
.compliance-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.compliance-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.compliance-text .section-title, .compliance-text .section-subtitle { text-align: left; margin-left: 0; }
.compliance-metrics { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.metric-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.metric-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.metric-label { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.metric-value { font-size: 28px; font-weight: 800; }
.metric-value.green { color: var(--success); }
.metric-value.amber { color: var(--warning); }
.metric-value.red { color: var(--danger); }
.metric-bar { height: 10px; background: var(--bg-light); border-radius: 5px; overflow: hidden; }
.metric-fill { height: 100%; border-radius: 5px; transition: width 1s ease; }
.metric-fill.green { background: linear-gradient(90deg, var(--success) 0%, #4ade80 100%); }
.metric-fill.amber { background: linear-gradient(90deg, var(--warning) 0%, #fbbf24 100%); }
.metric-formula { font-size: 11px; color: var(--text-light); margin-top: 10px; display: block; font-family: monospace; }

.compliance-target {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--success-light) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: var(--radius-lg);
    color: var(--success);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.compliance-target svg { width: 22px; height: 22px; }

/* Compliance Dashboard Card */
.compliance-dashboard-card { background: var(--bg-white); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.dashboard-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.dashboard-card-header h4 { font-size: 16px; font-weight: 600; }
.overall-score { font-size: 14px; font-weight: 600; color: var(--success); background: var(--success-light); padding: 4px 12px; border-radius: 12px; }
.risk-chart { display: flex; align-items: center; gap: 32px; margin-bottom: 24px; }
.risk-pie { width: 120px; height: 120px; }
.risk-pie svg { transform: rotate(-90deg); }
.risk-legend { display: flex; flex-direction: column; gap: 8px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: var(--danger); }
.dot.amber { background: var(--warning); }
.dot.green { background: var(--success); }
.dashboard-card-footer { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid var(--border); }
.footer-stat { text-align: center; flex: 1; }
.footer-value { display: block; font-size: 24px; font-weight: 700; }
.footer-value.red { color: var(--danger); }
.footer-value.amber { color: var(--warning); }
.footer-value.blue { color: var(--primary); }
.footer-label { font-size: 11px; color: var(--text-muted); }

/* Features with Fancy Cards */
.features {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::after { opacity: 1; }
.feature-card:hover { background: var(--bg-white); }

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}

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

.feature-icon-wrapper svg { width: 26px; height: 26px; }
.feature-icon-wrapper.red { background: linear-gradient(135deg, var(--danger-light) 0%, #fecaca 100%); color: var(--danger); }
.feature-icon-wrapper.blue { background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%); color: var(--primary); }
.feature-icon-wrapper.purple { background: linear-gradient(135deg, var(--purple-light) 0%, #e9d5ff 100%); color: var(--purple); }
.feature-icon-wrapper.green { background: linear-gradient(135deg, var(--success-light) 0%, #d1fae5 100%); color: var(--success); }
.feature-icon-wrapper.amber { background: linear-gradient(135deg, var(--warning-light) 0%, #fed7aa 100%); color: var(--warning); }
.feature-icon-wrapper.teal { background: linear-gradient(135deg, var(--teal-light) 0%, #99f6e4 100%); color: var(--teal); }
.feature-icon-wrapper.orange { background: linear-gradient(135deg, var(--orange-light) 0%, #fed7aa 100%); color: var(--orange); }
.feature-icon-wrapper.pink { background: linear-gradient(135deg, var(--pink-light) 0%, #fbcfe8 100%); color: var(--pink); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}
.tag:hover { transform: scale(1.05); }
.tag.red { background: var(--danger-light); color: var(--danger); }
.tag.amber { background: var(--warning-light); color: var(--warning); }
.tag.green { background: var(--success-light); color: var(--success); }
.tag.blue { background: var(--primary-light); color: var(--primary); }
.tag.purple { background: var(--purple-light); color: var(--purple); }
.tag.teal { background: var(--teal-light); color: var(--teal); }
.tag.orange { background: var(--orange-light); color: var(--orange); }
.tag.pink { background: var(--pink-light); color: var(--pink); }

/* Forms Section with Numbered Cards */
.forms-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.forms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(79, 107, 242, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.form-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(79, 107, 242, 0.1);
    border-color: var(--primary);
}

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

.form-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    transition: all 0.3s;
}

.form-card:hover .form-number { opacity: 0.3; transform: scale(1.1); }

.form-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; padding-right: 50px; }
.form-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.forms-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px;
    background: rgba(79, 107, 242, 0.04);
    border-radius: var(--radius-xl);
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}
.form-feature svg { width: 20px; height: 20px; color: var(--success); }

/* Reports Section with Fancy Cards */
.reports-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.reports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.report-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.report-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(79, 107, 242, 0.15);
    border-color: var(--primary);
}

.report-card:hover::before { opacity: 0.03; }

.report-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(79, 107, 242, 0.2);
}

.report-card:hover .report-icon { transform: scale(1.1); }

.report-icon svg { width: 30px; height: 30px; }
.report-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.report-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; position: relative; z-index: 1; }

/* Matrix Section with Premium Table */
.matrix-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.matrix-table-wrapper {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.matrix-table { width: 100%; border-collapse: collapse; }
.matrix-table th, .matrix-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.matrix-table th {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.matrix-table td { font-size: 14px; transition: all 0.2s; }
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table tr:hover td { background: rgba(79, 107, 242, 0.03); }
.matrix-table td:first-child { font-weight: 600; color: var(--text-dark); }
.matrix-table td:nth-child(2) { color: var(--text-muted); }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-badge.green {
    background: linear-gradient(135deg, var(--success-light) 0%, rgba(34, 197, 94, 0.15) 100%);
    color: var(--success);
}
.status-badge.green::before { background: var(--success); }

/* Integrations */
.integrations { padding: 100px 0; background: var(--bg-white); }
.integrations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.integration-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}
.integration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.integration-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.integration-icon svg { width: 28px; height: 28px; }
.integration-card.whatsapp .integration-icon { background: #dcfce7; color: #25D366; }
.integration-card.email .integration-icon { background: var(--warning-light); color: var(--warning); }
.integration-card.social .integration-icon { background: var(--primary-light); color: var(--primary); }
.integration-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.integration-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.integration-features { list-style: none; }
.integration-features li { font-size: 13px; color: var(--text-muted); padding: 8px 0; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.integration-features li::before { content: ''; width: 6px; height: 6px; background: var(--success); border-radius: 50%; }

/* Testimonials with Premium Cards */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(79, 107, 242, 0.08);
}

.testimonial-quote {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 72px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(79, 107, 242, 0.3);
}

.testimonial-author strong { display: block; font-size: 15px; color: var(--text-dark); font-weight: 700; }
.testimonial-author span { font-size: 13px; color: var(--text-muted); }

/* CTA Section with Premium Gradient */
.cta-section {
    padding: 120px 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(79, 107, 242, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, #a855f7 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.cta-text h2 { font-size: 42px; font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.2; }
.cta-text p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
.cta-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
}
.cta-features svg { width: 20px; height: 20px; color: #4ade80; }

.cta-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: 44px;
    box-shadow:
        var(--shadow-2xl),
        0 0 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-form input, .cta-form select {
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    width: 100%;
    transition: all 0.3s;
}
.cta-form input:focus, .cta-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.cta-form input::placeholder { color: var(--text-light); }

/* Footer */
.footer { background: var(--text-dark); color: white; padding: 80px 0 40px; }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { color: white; margin-bottom: 20px; }
.footer-brand .logo-icon { background: var(--primary); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; transition: background 0.2s; }
.social-links a:hover { background: var(--primary); }
.social-links svg { width: 18px; height: 18px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-column h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; color: white; }
.footer-column a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* WhatsApp Float with Pulse Animation */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.4),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}
.whatsapp-float svg { width: 34px; height: 34px; }

/* About Page Styles */
.about-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 107, 242, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-story { padding: 100px 0; background: var(--bg-white); }
.story-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.story-text h2 { font-size: 36px; font-weight: 800; margin-bottom: 24px; }
.story-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

.story-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: var(--radius-2xl);
    padding: 40px;
    text-align: center;
}
.story-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(79, 107, 242, 0.3);
}
.story-card-icon svg { width: 40px; height: 40px; color: white; }
.story-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.story-card p { color: var(--text-muted); }

.about-mission { padding: 100px 0; background: var(--bg-light); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mission-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.mission-icon svg { width: 28px; height: 28px; color: var(--primary); }
.mission-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.mission-card p { color: var(--text-muted); line-height: 1.7; }

.about-stats { padding: 80px 0; background: var(--primary-gradient); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .stat-number { display: block; font-size: 48px; font-weight: 800; color: white; }
.stat-item .stat-label { font-size: 16px; color: rgba(255,255,255,0.8); }

.about-why { padding: 100px 0; background: var(--bg-white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.3s;
    position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.why-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 24px;
}
.why-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--text-muted); line-height: 1.7; }

.about-team { padding: 100px 0; background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(79, 107, 242, 0.3);
}
.team-avatar span { color: white; font-weight: 700; font-size: 14px; }
.team-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--text-muted); }

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    text-align: center;
}
.about-cta h2 { font-size: 40px; font-weight: 800; color: white; margin-bottom: 16px; }
.about-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.about-cta-buttons { display: flex; gap: 16px; justify-content: center; }
.about-cta .btn-secondary { background: white; color: var(--primary); border: none; }

.nav-link.active { color: var(--primary); font-weight: 600; }

/* Blogs Page Styles */
.blogs-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 107, 242, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.blogs-hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blogs-hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.customer-testimonials {
    padding: 80px 0 120px;
    background: var(--bg-white);
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.customer-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 48px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(79, 107, 242, 0.08);
    border-color: var(--primary);
}

.customer-card:nth-child(even) {
    flex-direction: row-reverse;
}

.customer-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 8px 24px rgba(79, 107, 242, 0.25);
    position: relative;
}

.customer-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--primary-gradient);
    z-index: -1;
}

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

.customer-feedback {
    flex: 1;
    position: relative;
}

.feedback-quote {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 80px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.feedback-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.customer-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.customer-info span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.customer-info .customer-location {
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
}

.blogs-cta {
    padding: 100px 0;
    background: var(--primary-gradient);
    text-align: center;
}

.blogs-cta h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.blogs-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* ========== NEW HYPE LANDING PAGE STYLES ========== */

/* Hero - Minimal Centered Style */
.hero.hero-minimal {
    padding: 180px 0 100px;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79, 107, 242, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--text-dark);
    color: white;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero-headline {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
    color: var(--text-dark);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 17px;
    border-radius: var(--radius-xl);
}

.hero-cta-note {
    font-size: 13px;
    color: var(--text-light);
}

/* Trust Bar */
.trust-bar {
    padding: 48px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
}

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

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

.problem-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

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

.problem-card {
    padding: 40px 32px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    text-align: left;
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: var(--danger-light);
    color: var(--danger);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: var(--text-dark);
    color: white;
}

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

.section-badge.dark {
    background: rgba(255,255,255,0.1);
    color: white;
}

.solution-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
}

.solution-subtext {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.solution-teasers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

.teaser-card {
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.teaser-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.teaser-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.teaser-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.teaser-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.teaser-hint {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

/* Difference Section */
.difference-section {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.difference-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.difference-text > p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.diff-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-icon.check {
    background: var(--success-light);
    color: var(--success);
}

.diff-icon svg { width: 16px; height: 16px; }

.difference-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.difference-item span {
    font-size: 14px;
    color: var(--text-muted);
}

.difference-visual {
    display: flex;
    gap: 24px;
}

.comparison-card {
    flex: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.comparison-header.others {
    background: var(--bg-light);
    color: var(--text-muted);
}

.comparison-header.ease {
    background: var(--primary);
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 24px;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

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

.comparison-card.featured .comparison-list li {
    color: var(--text-dark);
    font-weight: 500;
}

/* Results Section */
.results-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.result-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border);
}

.result-number {
    font-size: 56px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.result-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 120px;
    font-family: Georgia, serif;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-content blockquote {
    font-size: 24px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 32px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

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

.quote-author strong {
    display: block;
    font-size: 16px;
}

.quote-author span {
    font-size: 14px;
    color: var(--text-muted);
}

/* What You Get Section */
.whatyouget-section {
    padding: 120px 0;
    background: var(--bg-white);
}

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

.wyg-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s;
}

.wyg-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.wyg-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.wyg-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wyg-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.cta-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
}

.cta-benefits svg {
    width: 20px;
    height: 20px;
    color: #4ade80;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form input,
.demo-form select {
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    transition: all 0.2s;
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
}

/* Blog Section */
.blog-section { padding: 120px 0; background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--purple-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.1;
}
.blog-image svg { width: 48px; height: 48px; color: var(--primary); opacity: 0.5; }
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}
.blog-content { padding: 28px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 13px; color: var(--text-light); }
.blog-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.2s;
}
.blog-link:hover { gap: 10px; }
.blog-link svg { width: 16px; height: 16px; }

.blog-cta {
    text-align: center;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .compliance-content, .cta-content { grid-template-columns: 1fr; gap: 40px; }
    .modules-grid, .integrations-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .forms-grid { grid-template-columns: repeat(2, 1fr); }
    .reports-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat-divider { display: none; }
    .story-content { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 1024px) {
    .problem-grid { grid-template-columns: 1fr; }
    .solution-teasers { grid-template-columns: 1fr; }
    .difference-content { grid-template-columns: 1fr; gap: 48px; }
    .difference-visual { flex-direction: column; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .whatyouget-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta-content { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .nav, .header-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-title { font-size: 32px; }
    .hero-cta { flex-direction: column; }
    .modules-grid, .features-grid, .forms-grid, .integrations-grid, .testimonials-grid, .reports-grid, .blog-grid { grid-template-columns: 1fr; }
    .module-card.featured { grid-column: span 1; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-features { grid-template-columns: 1fr; }
    .section-title { font-size: 28px; }
    .container { padding: 0 16px; }
    .preview-stats { grid-template-columns: repeat(2, 1fr); }
    .about-hero h1 { font-size: 32px; }
    .mission-grid, .team-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-cta-buttons { flex-direction: column; }
    .blogs-hero h1 { font-size: 32px; }
    .customer-card { flex-direction: column !important; text-align: center; padding: 32px; }
    .customer-image { margin: 0 auto; width: 120px; height: 120px; }
    .feedback-quote { left: 50%; transform: translateX(-50%); }
    .feedback-text { font-size: 16px; }

    /* New hype page responsive */
    .hero.hero-minimal { padding: 140px 0 80px; }
    .hero-headline { font-size: 36px; }
    .hero-subtext { font-size: 16px; }
    .trust-logos { gap: 24px; }
    .trust-logo { font-size: 14px; }
    .problem-content h2 { font-size: 28px; }
    .solution-content h2 { font-size: 28px; }
    .difference-text h2 { font-size: 28px; }
    .results-grid { grid-template-columns: 1fr; }
    .result-number { font-size: 40px; }
    .quote-content blockquote { font-size: 18px; }
    .whatyouget-grid { grid-template-columns: 1fr; }
    .cta-left h2 { font-size: 28px; }
    .cta-benefits { grid-template-columns: 1fr; }
}
