/* Modern SaaS Style CSS for BrightCRM */

:root {
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #3B82F6;
    --secondary: #7C3AED;
    --secondary-dark: #6D28D9;
    --accent: #10B981;
    --accent-dark: #059669;
    --text: #0F172A;
    --text-light: #64748B;
    --bg: #FFFFFF;
    --bg-gray: #F8FAFC;
    --bg-dark: #F1F5F9;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 10px 40px -10px rgba(37, 99, 235, 0.2);
    --shadow-colored-lg: 0 20px 60px -15px rgba(37, 99, 235, 0.3);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    overflow-x: hidden;
}

/* Smooth Page Transitions */
section {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Global Focus Styles */
*:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection Styling */
::selection {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary-dark);
}

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    width: 0%;
    z-index: 101;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 4px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

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

.nav-logo svg {
    transition: all 0.3s ease;
}

.nav-logo:hover svg {
    transform: rotate(5deg) scale(1.05);
}

.nav-logo span {
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    position: relative;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #4F46E5);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.06);
}

.nav-links a:hover::before {
    width: 60%;
}

.nav-links a:active {
    transform: scale(0.97);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-text {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-text::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-text:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.06);
}

.btn-text:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    color: white;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    border: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.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.6s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: white;
    color: var(--text);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

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

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}

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

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

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

/* Demo Scroll Button */
.demo-scroll-btn {
    cursor: pointer;
    border: none;
}

.demo-scroll-btn svg {
    width: 18px;
    height: 18px;
}

.demo-scroll-btn:hover svg {
    animation: bounce 0.6s ease-in-out;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.mobile-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 50%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 10px 20px 10px 12px;
    border-radius: 100px;
    border: 1.5px solid #E0E7FF;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: badgeSlideIn 0.6s ease-out;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: #C7D2FE;
}

.badge-icon-wrapper {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
    animation: iconBounce 2s ease-in-out infinite;
}

.badge-icon {
    color: white;
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-avatars {
    display: flex;
    align-items: center;
    margin-right: 2px;
}

.badge-avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-left: -8px;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.badge-avatars img:first-child {
    margin-left: 0;
}

.badge-avatars img:hover {
    transform: scale(1.15);
    z-index: 10;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    line-height: 1.2;
}

.badge-text strong {
    font-weight: 700;
    color: #1E293B;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    transform: translate(0, -50%);
    animation: pulse 2s ease-in-out infinite;
}

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

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

@keyframes pulse {
    0% {
        transform: translate(0, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(0, -50%) scale(1.4);
        opacity: 0;
    }
    100% {
        transform: translate(0, -50%) scale(1);
        opacity: 0;
    }
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 15px;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-text strong {
    color: var(--text);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.hero-cta-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-price-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 2px solid var(--primary);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.hero-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--secondary);
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-label {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    padding-left: 2px;
    opacity: 0.8;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 150px;
    width: 600px;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    animation: floatAnimation 6s ease-in-out infinite;
}

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

.browser-chrome {
    padding: 12px 16px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #6B7280;
    font-weight: 500;
    border: 1px solid #E5E7EB;
}

.dashboard-content {
    padding: 20px;
    background: #FAFBFC;
}

.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.dashboard-stat-box {
    background: white;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    text-align: center;
    transition: all 0.2s ease;
}

.dashboard-stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-box-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-box-value {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
}

.stat-box-label {
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
}

.dashboard-table {
    background: white;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.table-header {
    padding: 14px 16px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
}

.table-title {
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
}

.view-all {
    font-size: 11px;
    color: #6366F1;
    font-weight: 600;
    cursor: pointer;
}

.table-rows {
    padding: 8px;
}

.table-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.table-row:hover {
    background: #F9FAFB;
}

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

.row-info {
    flex: 1;
}

.row-name {
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 2px;
}

.row-plan {
    font-size: 11px;
    color: #64748B;
}

.row-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.row-status.active {
    background: #D1FAE5;
    color: #065F46;
}

.row-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

/* Stats Section */
.stats-section {
    width: 100%;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
    padding: 60px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.stats-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.08'%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");
    opacity: 1;
    animation: backgroundScroll 60s linear infinite;
}

@keyframes backgroundScroll {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -100px;
    animation: floatShape 25s ease-in-out infinite;
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-icon {
    font-size: 36px;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-number-static {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-plus {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin-left: 2px;
}

.stat-currency {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    display: inline-block;
    margin-right: 4px;
}

.stat-rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rating-stars-large {
    font-size: 20px;
    color: #FCD34D;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-suffix {
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

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

/* Responsive Stats Section */
@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 35px 20px;
    }

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

    .stat-item {
        gap: 6px;
    }

    .stat-icon {
        font-size: 24px;
    }

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

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

    .stat-plus {
        font-size: 20px;
    }

    .stat-currency {
        font-size: 20px;
    }

    .rating-stars-large {
        font-size: 18px;
    }

    .rating-suffix {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 30px 20px;
    }

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

    .stat-item {
        gap: 6px;
    }

    .stat-icon {
        font-size: 26px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-number-static {
        font-size: 30px;
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-gray);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits {
    background: var(--bg-gray);
}

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

.benefit-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

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

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

.benefit-card:hover {
    box-shadow: 0 20px 50px -12px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.1);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-title {
    color: var(--primary);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Features */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-box.reverse {
    direction: rtl;
}

.feature-box.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

.feature-image {
    border-radius: var(--radius-xl);
    padding:15px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover .feature-image::before {
    opacity: 1;
}

.feature-box:hover .feature-image {
    transform: scale(1.02);
    box-shadow: 0 20px 50px -15px rgba(59, 130, 246, 0.2);
}

.mini-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(0,0,0,0.05);
}

.mini-header {
    padding: 16px 20px;
    background: var(--bg-gray);
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.mini-rows {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: 8px;
    font-size: 14px;
}

.badge-active {
    background: #D1FAE5;
    color: #065F46;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.badge-due {
    background: #FEE2E2;
    color: #991B1B;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.invoice-body {
    padding: 20px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.invoice-row.total {
    border-top: 2px solid var(--text);
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 16px;
    color: var(--text);
}

.invoice-button, .portal-button {
    margin: 16px 20px 20px;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.invoice-button:hover, .portal-button:hover {
    background: var(--primary-dark);
}

.collection-stats {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collection-item {
    padding: 16px;
    background: var(--bg-gray);
    border-radius: 8px;
}

.collection-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.collection-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.ticket-info {
    padding: 20px;
}

.ticket-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.ticket-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    background: #DBEAFE;
    color: #1E40AF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.sync-flow {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sync-step {
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow);
    width: 100%;
    text-align: center;
}

.sync-arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

.portal-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-gray);
    border-radius: 8px;
    font-size: 14px;
}

.portal-item strong {
    color: var(--primary);
    font-weight: 700;
}

.payment-methods {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.payment-icon {
    font-size: 24px;
}

.payment-success {
    margin: 12px 20px 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.feature-heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

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

.feature-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-points li {
    font-size: 15px;
    color: var(--text-light);
    padding-left: 8px;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-gray);
}

.pricing-calculator {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.15);
    border: 2px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.pricing-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
}

.pricing-calculator::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    pointer-events: none;
}

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

.calculator-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.calculator-header p {
    font-size: 18px;
    color: var(--text-light);
}

.calculator-input {
    margin-bottom: 40px;
}

#subSlider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    outline: none;
    -webkit-appearance: none;
}

#subSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow);
}

#subSlider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
}

.slider-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-value-top {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.input-wrapper {
    position: relative;
    display: inline-block;
}

#subInput {
    width:240px;
    padding: 20px 24px;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    border: 3px solid var(--primary);
    border-radius: 16px;
    color: var(--primary);
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

#subInput:hover {
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

#subInput:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 12px 28px rgba(37, 99, 235, 0.25);
}

.input-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 4px;
}

.range-labels span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.slider-value span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.calculator-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.result-card {
    flex: 1;
    padding:20px;
    border-radius: var(--radius);
    text-align: center;
}

.result-card.your-price {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border: 3px solid var(--primary);
}

.result-card.other-price {
    background: var(--bg-gray);
    border: 2px solid var(--border);
}

.result-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.result-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.result-vs {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.calculator-savings {
    background: #ECFDF5;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.savings-icon {
    font-size: 32px;
}

.savings-text {
    flex: 1;
    font-size: 18px;
    color: var(--text);
}

.savings-text strong {
    display: block;
    font-size: 24px;
    color: var(--accent);
}

.pricing-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.breakdown-card {
    background: var(--bg-gray);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid var(--border);
    transition: 0.2s;
}

.breakdown-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.breakdown-range {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.breakdown-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

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

.pricing-cta {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-includes {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.pricing-includes p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 16px;
}

.includes-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.includes-list span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.author-company {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.author-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* FAQ */
.faq-section {
    background: var(--bg-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    transition: 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.cta-buttons .btn-primary:hover {
    background: var(--bg-gray);
}

.cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

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

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    opacity: 0.9;
}

.cta-features span {
    font-size: 15px;
}

/* Footer */
.footer {
    background: #071b4d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: white;
    opacity: 0.7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 16px 0;
    z-index: 98;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
}

.sticky-cta-text strong {
    font-size: 18px;
    font-weight: 700;
}

.sticky-cta-text span {
    font-size: 14px;
    opacity: 0.9;
}

.sticky-cta-bar .btn-primary {
    background: white;
    color: var(--primary);
    white-space: nowrap;
    animation: pulse-glow 2s ease-in-out infinite;
}

.sticky-cta-bar .btn-primary:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563EB 0%, #4F46E5 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
    animation: bounceUp 0.6s ease-in-out infinite;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 60px;
    }

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

    .feature-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-box.reverse {
        direction: ltr;
    }

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

@media (max-width: 850px) {
    .hero {
        padding: 55px 0 70px;
    }

    .hero-badge {
        margin-bottom: 18px;
        padding: 9px 18px 9px 11px;
    }

    .badge-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .badge-avatars img {
        width: 22px;
        height: 22px;
        margin-left: -7px;
    }

    .badge-text {
        font-size: 13px;
    }

    .hero-title {
        font-size: 44px;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .hero-cta-section {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 20px;
    }

    .hero-price-card {
        width: 100%;
        padding: 18px 24px;
    }

    .price-label {
        font-size: 10px;
    }

    .price-amount {
        font-size: 40px;
    }

    .rating-stars {
        font-size: 17px;
    }

    .rating-score {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .nav-content {
        height: 72px;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 76px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 4px;
        padding: 24px 20px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        border-bottom: none;
        transition: all 0.3s ease;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(37, 99, 235, 0.08);
        transform: translateX(4px);
    }

    .nav-actions {
        position: fixed;
        top: auto;
        bottom: 0;
        right: -100%;
        width: 300px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-actions.active {
        right: 0;
    }

    .nav-actions .btn-text {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }

    .nav-actions .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }

    /* Mobile menu overlay */
    .mobile-overlay {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }

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

    .hero {
        padding: 50px 0 60px;
    }

    .hero-badge {
        padding: 8px 16px 8px 10px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .badge-icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .badge-icon {
        width: 16px;
        height: 16px;
    }

    .badge-avatars img {
        width: 20px;
        height: 20px;
        margin-left: -6px;
    }

    .badge-text {
        font-size: 12px;
    }

    .badge-pulse {
        left: 10px;
        width: 28px;
        height: 28px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-cta-section {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 20px;
    }

    .hero-price-card {
        padding: 18px 22px;
        width: 100%;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
    }

    .price-label {
        font-size: 10px;
    }

    .price-amount {
        font-size: 38px;
    }

    .price-period {
        font-size: 17px;
    }

    .price-note {
        font-size: 11px;
    }

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

    .calculator-result {
        flex-direction: column;
    }

    .result-vs {
        transform: rotate(90deg);
    }

    .pricing-breakdown {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

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

    /* Sticky CTA Bar Mobile */
    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sticky-cta-text strong {
        font-size: 16px;
    }

    .sticky-cta-text span {
        font-size: 13px;
    }

    .sticky-cta-bar .btn-primary {
        width: 100%;
    }

    .back-to-top {
        bottom: 170px;
        right: 24px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
	 .sticky-cta-content {
        flex-direction: unset;
        gap: 12px;
        text-align: left;
    }
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-calculator {
        padding: 32px 24px;
    }

    .back-to-top {
        bottom: 160px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Demo Page Styles */
.demo-page {
    padding: 60px 0 100px;
    background: var(--bg-gray);
    min-height: calc(100vh - 72px);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Benefits */
.demo-benefits {
    position: sticky;
    top: 100px;
}

.demo-header {
    margin-bottom: 40px;
}

.demo-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}

.demo-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.benefit-item-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

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

.demo-trust {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

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

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

.trust-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.demo-testimonial {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary);
}

.testimonial-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.testimonial-author-small img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
}

.testimonial-author-small strong {
    display: block;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 2px;
}

.testimonial-author-small span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

/* Right Side - Form */
.demo-form-container {
    position: relative;
}

.demo-form-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-light);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-input,
.form-textarea {
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: all 0.2s;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

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

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

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-gray);
    border-radius: 8px;
    margin-top: -6px;
}

.form-privacy svg {
    flex-shrink: 0;
    color: var(--primary);
}

.form-privacy span {
    font-size: 13px;
    color: var(--text-light);
}

.form-alternate {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.form-alternate p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.alternate-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.contact-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-gray);
}

.contact-link.whatsapp-link:hover {
    border-color: #25D366;
    color: #25D366;
    background: #F0FFF4;
}

/* Success Overlay */
.form-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}

.form-success-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.form-success-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.form-success-overlay.visible .form-success-card {
    transform: scale(1);
}

.success-icon {
    margin-bottom: 24px;
}

.form-success-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.form-success-card > p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.success-details {
    background: var(--bg-gray);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    text-align: left;
}

.success-details p {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.success-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-details li {
    font-size: 15px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.success-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

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

    .demo-benefits {
        position: relative;
        top: 0;
    }

    .demo-form-card {
        position: relative;
        top: 0;
    }

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

@media (max-width: 768px) {
    .demo-page {
        padding: 40px 0 60px;
    }

    .demo-title {
        font-size: 36px;
    }

    .demo-subtitle {
        font-size: 18px;
    }

    .demo-form-card {
        padding: 24px 20px;
    }

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

    .form-header h2 {
        font-size: 22px;
    }

    .demo-form {
        gap: 16px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-success-card {
        padding: 32px 24px;
    }

    .form-success-card h2 {
        font-size: 24px;
    }

    .alternate-contact {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 28px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-item-content h3 {
        font-size: 16px;
    }

    .demo-form-card {
        padding: 20px 16px;
    }

    .form-header {
        margin-bottom: 16px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .demo-form {
        gap: 14px;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg) 100%);
    min-height: calc(100vh - 72px);
}

.thank-you-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.success-icon-large {
    margin-bottom: 32px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

.thank-you-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.thank-you-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Next Steps Card */
.next-steps-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    margin-bottom: 40px;
    text-align: left;
}

.next-steps-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 32px;
    text-align: center;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: start;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 50px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
}

.timeline-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Quick Contact Card */
.quick-contact-card {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    margin-bottom: 40px;
}

.quick-contact-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.quick-contact-card > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.contact-option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.contact-option-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-option-btn.whatsapp:hover {
    border-color: #25D366;
}

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

.contact-option-btn.whatsapp svg {
    color: #25D366;
}

.contact-option-btn div {
    text-align: left;
}

.contact-option-btn strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-option-btn span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* Resources Section */
.resources-section {
    margin-bottom: 40px;
}

.resources-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

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

.resource-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.resource-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

.thank-you-actions {
    margin-top: 48px;
}

/* Thank You Page Responsive */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 36px;
    }

    .thank-you-subtitle {
        font-size: 18px;
    }

    .next-steps-card {
        padding: 32px 24px;
    }

    .next-steps-card h2 {
        font-size: 24px;
    }

    .timeline-item {
        gap: 16px;
    }

    .timeline-icon {
        width: 48px;
        height: 48px;
    }

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

    .timeline-item:not(:last-child)::after {
        left: 23px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 15px;
    }

    .quick-contact-card {
        padding: 28px 20px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .success-icon-large svg {
        width: 80px;
        height: 80px;
    }

    .thank-you-title {
        font-size: 28px;
    }

    .thank-you-subtitle {
        font-size: 16px;
    }

    .next-steps-card {
        padding: 24px 20px;
    }

    .steps-timeline {
        gap: 24px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .quick-contact-card h3 {
        font-size: 20px;
    }

    .contact-option-btn {
        padding: 16px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0 100px;
    background: var(--bg-gray);
    min-height: calc(100vh - 72px);
}

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

.contact-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

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

/* Contact Information Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-section-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.contact-method-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
}

.email-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
}

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

.location-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.contact-method-content {
    flex: 1;
}

.contact-method-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-method-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

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

.contact-method-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-address {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

/* Quick Links */
.contact-quick-links {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-quick-links h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.quick-link-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(4px);
}

.quick-link-btn svg {
    flex-shrink: 0;
}

/* Contact Form Section */
.contact-form-section {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.form-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-card-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

    .contact-form-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0 60px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 17px;
    }

    .contact-section-title {
        font-size: 24px;
    }

    .contact-method-card {
        padding: 20px;
    }

    .contact-form-card {
        padding: 28px 24px;
    }

    .form-card-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-method-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-form-card {
        padding: 24px 20px;
    }
}
