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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Header Styles - Fixed scrolled background */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(24, 144, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-symbol {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 1;
}

.logo-symbol-white {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
}

.header.scrolled .logo-symbol {
    opacity: 0;
}

.header.scrolled .logo-symbol-white {
    opacity: 1;
}

.logo h2 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    margin: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.logo-subtitle {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -6px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.header.scrolled .logo h2 {
    color: #1890FF;
    font-size: 1.4rem;
}

.header.scrolled .logo-subtitle {
    color: #1890FF;
    opacity: 0.7;
}

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

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.header.scrolled .nav-menu a {
    color: #1e293b;
    font-weight: 600;
}

.nav-menu a:hover {
    color: #fff;
}

.header.scrolled .nav-menu a:hover {
    color: #1890FF;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1890FF;
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-signin {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.header.scrolled .btn-signin {
    color: #64748b;
    font-weight: 600;
}

.btn-signin:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .btn-signin:hover {
    color: #1890FF;
    background: rgba(24, 144, 255, 0.1);
}

/* Enhanced Button Styles for Header */
.header .btn-primary {
    background: #1890FF;
    color: white;
    box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
    font-weight: 600;
}

.header.scrolled .btn-primary {
    background: #1890FF;
    box-shadow: 0 3px 12px rgba(24, 144, 255, 0.4);
}

.header .btn-primary:hover {
    background: #0066CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.4);
}

/* Button Styles */
.btn-primary {
    background: #1890FF;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0066CC;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4A90E2 0%, #1890FF 50%, #0066CC 100%);
    color: white;
    overflow: hidden;
    padding-top: 120px; /* Add padding to account for fixed header */
    box-sizing: border-box;
}

.hero-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1890FF 0%, #40A9FF 50%, #69C0FF 100%);
    clip-path: ellipse(80% 60% at 20% 40%);
    z-index: 1;
}

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

.hero-content {
    max-width: 500px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Dashboard Mockup */
.hero-image {
    position: relative;
    z-index: 3;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.screen {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
}

.main-screen {
    width: 100%;
    height: 400px;
}

.popup-screen {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 280px;
    height: 320px;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

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

.screen-header {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screen-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.screen-controls {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.screen-content {
    padding: 1.5rem;
    height: calc(100% - 60px);
}

.chart-area {
    background: #f1f5f9;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1890FF, #40A9FF);
    border-radius: 8px;
    opacity: 0.8;
}

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

.stat-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Popup Screen Styles */
.popup-header {
    background: #1890FF;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.close-btn {
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-content {
    padding: 1.5rem;
    text-align: center;
}

.upgrade-chart {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#1890FF 0deg 280deg, #e5e7eb 280deg 360deg);
    margin: 0 auto 1rem;
    position: relative;
}

.upgrade-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
}

.popup-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.upgrade-btn {
    background: #1890FF;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.upgrade-btn:hover {
    background: #0066CC;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 1rem;
    background: transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.feature-icon {
    margin-bottom: 2rem;
}

.icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto;
    background: transparent;
    border: 2px solid #1890FF;
    color: #1890FF;
}

.icon-bg.blue { 
    border: 2px solid #1890FF;
    color: #1890FF;
    background: rgba(24, 144, 255, 0.05);
}
.icon-bg.purple { 
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}
.icon-bg.orange { 
    border: 2px solid #f59e0b;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Accent Elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(24, 144, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Subtle Blue Accents */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1890FF;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer p {
    color: #94a3b8;
    margin: 0;
}

.footer-contact a {
    color: #1890ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #40a9ff;
    text-decoration: underline;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: #fff;
}

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

.solution-image {
    position: relative;
}

.solution-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.solution-shape {
    position: absolute;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1890FF 0%, #40A9FF 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
}

.solution-screen {
    position: relative;
    width: 80%;
    height: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: 50px auto;
    z-index: 2;
}

.solution-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.3;
}

.solution-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-outline {
    background: transparent;
    color: #1890FF;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1890FF;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #1890FF;
    color: white;
    transform: translateY(-2px);
}

/* Features Detail Section */
.features-detail {
    padding: 100px 0;
    background: #f8fafc;
}

.features-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
    line-height: 1.3;
}

.features-detail-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.feature-bullet {
    color: #1890FF;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.features-detail-image {
    position: relative;
}

.features-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

.features-shape {
    position: absolute;
    right: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1890FF 0%, #40A9FF 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 1;
}

.features-screen {
    position: relative;
    width: 80%;
    height: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: 50px 0;
    z-index: 2;
}

/* Features Carousel Styles */
.features-carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    border-radius: 12px;
}

.features-carousel-track {
    position: relative;
    width: 100%;
    height: auto;
}

.features-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.features-carousel-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.features-carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
}

.features-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.features-carousel-btn svg {
    width: 16px;
    height: 16px;
    color: #1890FF;
}

.features-carousel-prev {
    left: -5px;
}

.features-carousel-next {
    right: -5px;
}

.features-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.features-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-indicator.active {
    background: #1890FF;
    transform: scale(1.2);
}

.features-indicator:hover {
    background: #1890FF;
}

/* Solution Carousel Styles */
.solution-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.solution-carousel-track {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px; /* Ensure minimum height */
}

.solution-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* Changed from 100% to auto */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.solution-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative; /* Make active slide relative to establish height */
}

.solution-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
}

.solution-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.solution-carousel-btn svg {
    width: 16px;
    height: 16px;
    color: #1890FF;
}

.solution-carousel-prev {
    left: -5px;
}

.solution-carousel-next {
    right: -5px;
}

.solution-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.solution-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-indicator.active {
    background: #1890FF;
    transform: scale(1.2);
}

.solution-indicator:hover {
    background: #1890FF;
}

/* Budget Carousel Styles */
.budget-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.budget-carousel-track {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px; /* Ensure minimum height */
}

.budget-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* Changed from 100% to auto */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.budget-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative; /* Make active slide relative to establish height */
}

.budget-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
}

.budget-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.budget-carousel-btn svg {
    width: 16px;
    height: 16px;
    color: #1890FF;
}

.budget-carousel-prev {
    left: -5px;
}

.budget-carousel-next {
    right: -5px;
}

.budget-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.budget-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.budget-indicator.active {
    background: #1890FF;
    transform: scale(1.2);
}

.budget-indicator:hover {
    background: #1890FF;
}

/* Settings Carousel Styles */
.settings-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.settings-carousel-track {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px; /* Ensure minimum height */
}

.settings-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* Changed from 100% to auto */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.settings-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative; /* Make active slide relative to establish height */
}

.settings-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
}

.settings-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.settings-carousel-btn svg {
    width: 16px;
    height: 16px;
    color: #1890FF;
}

.settings-carousel-prev {
    left: -5px;
}

.settings-carousel-next {
    right: -5px;
}

.settings-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.settings-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-indicator.active {
    background: #1890FF;
    transform: scale(1.2);
}

.settings-indicator:hover {
    background: #1890FF;
}

/* Budget Planning Section */
.budget-planning-section {
    padding: 100px 0;
    background: #fff;
}

.budget-planning-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.budget-planning-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.budget-planning-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.budget-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.benefit-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1890FF;
    margin-bottom: 0;
}

.benefit-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.benefit-section p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

.budget-list {
    list-style: none;
    margin-bottom: 2rem;
}

.budget-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #1e293b;
}

.budget-bullet {
    color: #1890FF;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.budget-planning-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.budget-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.budget-screen-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Campaign Insights Section */
.campaign-insights-section {
    padding: 100px 0;
    background: #f8fafc;
}

.campaign-insights-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.campaign-insights-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.campaign-insights-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.campaign-insights-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.insight-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1890FF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.insight-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.insight-section p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Features Detail Features - Same styling as Campaign Insights Features */
.features-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.feature-detail-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1890FF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-detail-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-detail-section p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.campaign-insights-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.insights-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.insights-screen-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Media Plan Features */
.media-plan-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.feature-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1890FF;
    margin-bottom: 0;
}

.feature-section:last-child {
    margin-bottom: 0;
}

.feature-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.feature-section p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Customisable Settings Section */
.customisable-settings-section {
    padding: 100px 0;
    background: #f8fafc;
}

.customisable-settings-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.customisable-settings-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.customisable-settings-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.customisable-settings-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.settings-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.settings-screen-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Customisable Settings Features */
.customisable-settings-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.settings-feature-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1890FF;
    margin-bottom: 0;
}

.settings-feature-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.settings-feature-section p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(24, 144, 255, 0.2);
}

.why-choose-icon {
    margin-bottom: 1.5rem;
}

.icon-simple {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    background: #1890FF;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

.icon-simple.blue {
    background: #1890FF;
    color: white;
}

.why-choose-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.4;
}

.why-choose-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Why Choose Disclaimer */
.why-choose-disclaimer {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-disclaimer p {
    background: white;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    border-left: 4px solid #1890FF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    border-right: 1px solid rgba(226, 232, 240, 0.6);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #fff;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
}

.toggle-label {
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    background: #f1f5f9;
    border: 2px solid #f1f5f9;
}

.toggle-label:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid #e2e8f0;
}

.toggle-label:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 1px solid #e2e8f0;
}

.toggle-label.active {
    color: white;
    background: #1890FF;
    border-color: #1890FF;
}

.toggle-switch {
    display: none;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1890FF;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
    background-color: #ccc;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #1890FF;
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1890FF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1890FF;
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-icon.available {
    background: #10b981;
    color: white;
}

.feature-icon.unavailable {
    background: #ef4444;
    color: white;
}

.feature-item span:last-child {
    color: #64748b;
    font-size: 0.9rem;
}

.pricing-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

.pricing-card.featured .pricing-btn {
    background: #1890FF;
    color: white;
    border: 2px solid #1890FF;
}

.pricing-card.featured .pricing-btn:hover {
    background: #0066CC;
    border-color: #0066CC;
}

/* Toolkits Carousel Section */
.toolkits-carousel {
    padding: 100px 0;
    background: linear-gradient(135deg, #1890FF 0%, #40A9FF 100%);
    color: white;
    overflow: hidden;
}

.toolkits-carousel .section-header h2 {
    color: white;
}

.toolkits-carousel .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.toolkit-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-btn:hover,
.category-btn.active {
    background: white;
    color: #1890FF;
    border-color: white;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 500px;
    isolation: isolate;
}

.carousel-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: grab;
    user-select: none;
    touch-action: pan-y pinch-zoom;
    isolation: isolate;
    z-index: 1;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: auto;
}

/* Side preview cards */
.preview-card {
    width: 250px;
    height: 350px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.5rem;
    transform: scale(0.8);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    z-index: 0;
    position: relative;
}

.preview-card:hover {
    transform: scale(0.85);
    opacity: 0.9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.preview-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.preview-card .card-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: #1890FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.preview-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.preview-card .preview-content {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
    flex: 1;
}

.toolkit-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #1e293b;
    min-height: 400px;
    width: 100%;
}

.toolkit-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
    border: 2px solid #1890FF;
}

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

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #1890FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* Navigation buttons */
.carousel-nav-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1890FF;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-nav-btn:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.carousel-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* Hide the old carousel navigation */
.carousel-nav {
    display: none;
}

/* Pagination Dots */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.pagination-dot.active {
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.pagination-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #1890FF;
    border-radius: 50%;
}

/* SEO Metrics styling */
.seo-metrics {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

/* Responsive carousel styles */
@media (max-width: 768px) {
    .carousel-container {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }
    
    .preview-card {
        display: none; /* Hide preview cards on mobile */
    }
    
    .carousel-wrapper {
        max-width: 100%;
        order: 1;
    }
    
    .carousel-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
    
    .carousel-prev {
        left: -30px;
    }
    
    .carousel-next {
        right: -30px;
    }
    
    .toolkit-categories {
        order: 2;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-pagination {
        order: 3;
        margin-top: 1rem;
    }
}

/* Progress Image Styling */
.progress-image {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
}

.progress-image img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
}

/* Ensure carousel slides maintain proper containment */
.carousel-slide .toolkit-card {
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure carousel wrapper maintains proper boundaries */
.carousel-wrapper {
    overflow: hidden;
    isolation: isolate;
}

/* Prevent content overflow in carousel slides */
.carousel-slide {
    box-sizing: border-box;
    overflow: hidden;
}

/* Base image responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Progressive image enhancement */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Touch-friendly interactive elements */
@media (max-width: 767px) {
    .clickable-image:hover {
        transform: none !important;
    }
    
    .clickable-image:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Ensure buttons are touch-friendly */
    .btn-primary, .btn-signin, .btn-outline {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile-optimized carousel */
    .carousel-slide {
        padding: 0 0.5rem;
    }
    
    /* Better mobile spacing */
    .hero, .features, .solution-section, 
    .features-detail, .budget-planning-section, 
    .why-choose, .cta-section {
        padding: 60px 0;
    }
    
    /* Mobile typography improvements */
    h1, h2, h3 {
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Clickable Image Effects */
.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.image-modal-close:hover {
    opacity: 0.7;
}

.image-modal-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
    backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.modal-nav-btn svg {
    width: 22px;
    height: 22px;
    color: rgba(0, 0, 0, 0.8);
}

.modal-prev-btn {
    left: 40px;
}

.modal-next-btn {
    right: 40px;
}

/* Modal Indicators */
.modal-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.modal-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.modal-indicator:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.7);
}

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

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

/* Mobile responsive for image modal */
@media (max-width: 768px) {
    .image-modal-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
    
    .image-modal-caption {
        font-size: 16px;
        margin-top: 15px;
    }
    
    .modal-image {
        max-height: 70vh;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .modal-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .modal-prev-btn {
        left: 10px;
    }
    
    .modal-next-btn {
        right: 10px;
    }
    
    .modal-indicators {
        gap: 8px;
        margin-top: 20px;
    }
    
    .modal-indicator {
        width: 12px;
        height: 12px;
    }
}

.metric-card {
    text-align: center;
}

.metric-title {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.circular-progress {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#1890FF 0deg 220deg, #e5e7eb 220deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circular-progress::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
}

.progress-value {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: #1890FF;
}

.metric-grid {
    display: grid;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    color: #64748b;
    font-size: 0.85rem;
}

.metric-value {
    font-weight: 600;
    color: #1e293b;
}

.cta-btn {
    background: #1890FF;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.cta-btn:hover {
    background: #0066CC;
}

/* Content generator styling */
.content-generator {
    margin-bottom: 2rem;
}

.generator-header {
    margin-bottom: 1rem;
}

.generator-title {
    font-size: 0.9rem;
    color: #64748b;
}

.idea-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.idea-tab {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.idea-tab.active {
    background: #1890FF;
    color: white;
}

.content-score {
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.content-metrics {
    display: flex;
    gap: 1rem;
}

.content-metrics span {
    padding: 0.25rem 0.5rem;
    background: #f1f5f9;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #64748b;
}

/* Local metrics, charts, and other components remain the same */
.local-metrics {
    text-align: center;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.metric-header .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1890FF;
}

.chart-area {
    height: 120px;
    background: linear-gradient(135deg, #1890FF, #40A9FF);
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.traffic-chart,
.performance-chart {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
}

.review-analytics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.review-count {
    font-size: 2rem;
    font-weight: 700;
    color: #1890FF;
}

.review-label {
    color: #64748b;
    font-size: 0.9rem;
}

.ai-visualization,
.social-metrics,
.ad-metrics {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.ai-node,
.platform,
.metric {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #64748b;
}

/* Contact Modal Styles - With Background Blur */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 999999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important; /* Safari support */
}

.modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
}

.modal-content {
    background: white !important;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 75px rgba(0, 0, 0, 0.4) !important;
    position: relative !important;
    z-index: 1000000 !important;
    margin: auto !important;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

/* Additional blur effect for body content when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

body.modal-open > * :not(.modal) {
    filter: blur(3px);
    transition: filter 0.3s ease;
}

body.modal-open .modal {
    filter: none !important;
}

/* Alternative approach: blur specific content areas */
body.modal-open .header,
body.modal-open main,
body.modal-open .footer {
    filter: blur(3px) brightness(0.7);
    transition: filter 0.3s ease, brightness 0.3s ease;
}

/* Ensure modal content is never blurred */
.modal,
.modal * {
    filter: none !important;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 1000001;
}

.modal-header h2 {
    color: #1e293b;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    padding: 0;
}

.close-modal:hover {
    color: #1e293b;
    background: #f1f5f9;
}

.modal-body {
    padding: 1rem 2rem 2rem;
    background: white;
}

.modal-body > p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1890FF;
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

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

/* Customer Type Selector Styling */
.customer-type-selector {
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
    transition: color 0.3s ease;
}

.radio-option:hover {
    color: #1890FF;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #1890FF;
    background-color: #1890FF;
}

.radio-option input[type="radio"]:checked + .radio-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.radio-option input[type="radio"]:focus + .radio-custom {
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

.radio-label {
    font-weight: 500;
    user-select: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-submit,
.btn-cancel {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-submit {
    background: #1890FF;
    color: white;
}

.btn-submit:hover:not(:disabled) {
    background: #0066CC;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-cancel {
    background: transparent;
    color: #64748b;
    border: 2px solid #e5e7eb;
}

.btn-cancel:hover {
    background: #f8fafc;
    border-color: #d1d5db;
}

/* Customer Type Switch */
.customer-type-switch {
    margin-top: 0.5rem;
}

.customer-type-switch input[type="radio"] {
    display: none;
}

.switch-wrapper {
    position: relative;
    display: flex;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 4px;
    width: 220px;
    height: 44px;
    border: 1px solid #e2e8f0;
}

.switch-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    border-radius: 50px;
}

.switch-option:hover {
    color: #334155;
}

.switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #1890FF;
    border-radius: 50px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(24, 144, 255, 0.2);
}

.customer-type-switch input[name="customerType"]:checked + input + .switch-wrapper .switch-slider {
    transform: translateX(100%);
}

.customer-type-switch input[name="customerType"]:checked + input + .switch-wrapper .switch-option:nth-child(2),
.customer-type-switch input[name="customerType"]:nth-child(2):checked + .switch-wrapper .switch-option:nth-child(2) {
    color: white;
    font-weight: 600;
}

.customer-type-switch input[name="customerType"]:nth-child(1):checked + input + .switch-wrapper .switch-option:nth-child(1) {
    color: white;
    font-weight: 600;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.success-message h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.success-message p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Enhanced animation for modal appearance */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal.show {
    animation: modalFadeIn 0.3s ease-out;
}

.modal.show .modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

/* Responsive design */
@media (max-width: 768px) {
    .modal-content {
        width: 95% !important;
        margin: 1rem !important;
        max-height: calc(100vh - 2rem) !important;
    }
    
    .modal-header,
    .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-height: 650px) {
    .modal-content {
        max-height: 95vh !important;
    }
    
    .modal-header {
        padding: 1.5rem 2rem 1rem;
    }
    
    .modal-body {
        padding: 1rem 2rem 1.5rem;
    }
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(8px)) {
    .modal {
        background-color: rgba(0, 0, 0, 0.8) !important;
    }
    
    body.modal-open .header,
    body.modal-open main,
    body.modal-open .footer {
        filter: blur(2px) brightness(0.5);
    }
}

