/* Reset and Base Styles */
:root {
    /* Earthy Color Palette */
    --primary-sage: #87a96b;
    --primary-sage-dark: #6b8a4f;
    --secondary-terracotta: #d4a574;
    --secondary-terracotta-dark: #c19660;
    --accent-warm-cream: #f5f1eb;
    --accent-soft-brown: #8b7355;
    --neutral-warm-white: #fefcf8;
    --neutral-light-beige: #f7f3ed;
    --neutral-medium-brown: #6d5a47;
    --neutral-dark-charcoal: #3a3530;
    --success-forest: #5a7c65;
    --warning-amber: #d4a574;
    --error-rust: #c17b5a;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, var(--accent-warm-cream) 0%, var(--neutral-light-beige) 100%);
    --gradient-sage: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-sage-dark) 100%);
    --gradient-terracotta: linear-gradient(135deg, var(--secondary-terracotta) 0%, var(--secondary-terracotta-dark) 100%);
    
    /* Shadows */
    --shadow-soft: 0 8px 32px rgba(139, 115, 85, 0.1);
    --shadow-medium: 0 12px 40px rgba(139, 115, 85, 0.15);
    --shadow-strong: 0 20px 60px rgba(139, 115, 85, 0.2);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--neutral-dark-charcoal);
    background-color: var(--neutral-warm-white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--neutral-dark-charcoal);
    background: var(--gradient-sage);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    color: var(--neutral-dark-charcoal);
    position: relative;
}

h3 {
    font-size: 1.75rem;
    color: var(--neutral-medium-brown);
}

h4 {
    font-size: 1.375rem;
    color: var(--neutral-medium-brown);
}

p {
    margin-bottom: 1rem;
    color: var(--accent-soft-brown);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-medium);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

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

.btn-primary {
    background: var(--gradient-sage);
    color: var(--neutral-warm-white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--gradient-terracotta);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-large);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-sage);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-brand:hover {
    color: var(--primary-sage-dark);
    transform: scale(1.05);
}

.nav-brand i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-medium-brown);
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: var(--gradient-sage);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-primary {
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.75rem;
    color: var(--neutral-medium-brown);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    color: var(--primary-sage);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

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

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

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

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-warm-cream);
    color: var(--accent-soft-brown);
    padding: 12px 20px;
    border-radius: var(--radius-large);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.social-proof-badge i {
    color: var(--secondary-terracotta);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-soft-brown);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.benefit-list {
    margin: 2.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--neutral-medium-brown);
}

.benefit-item i {
    color: var(--success-forest);
    font-size: 1.4rem;
}

.hero-cta {
    margin-top: 3rem;
}

.risk-free {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: var(--accent-soft-brown);
    font-size: 1rem;
    font-weight: 500;
}

.risk-free i {
    color: var(--success-forest);
}

/* Hero Dashboard Preview */
.dashboard-preview {
    background: var(--neutral-warm-white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(8deg);
    transition: var(--transition-bounce);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.dashboard-preview:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(2deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.dashboard-header {
    background: var(--neutral-light-beige);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 0.75rem;
}

.dashboard-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.3);
}

.dashboard-dots span:first-child {
    background: var(--error-rust);
}

.dashboard-dots span:nth-child(2) {
    background: var(--warning-amber);
}

.dashboard-dots span:last-child {
    background: var(--success-forest);
}

.dashboard-title {
    font-weight: 700;
    color: var(--neutral-medium-brown);
}

.dashboard-stats {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--accent-warm-cream);
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-sage);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--accent-soft-brown);
    font-weight: 500;
}

.dashboard-screenshot {
    padding: 0 2.5rem 2.5rem;
}

.dashboard-screenshot img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: var(--transition-smooth);
}

.dashboard-screenshot img:hover {
    transform: scale(1.02);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: var(--neutral-warm-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-sage);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--accent-soft-brown);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.problem-card {
    background: linear-gradient(135deg, #fdf2f2 0%, #fef7f7 100%);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    text-align: center;
    border: 1px solid rgba(193, 123, 90, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(193, 123, 90, 0.1), transparent);
    transition: left 0.8s;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition-bounce);
}

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

.problem-icon i {
    color: var(--neutral-warm-white);
    font-size: 1.75rem;
}

.problem-card h3 {
    color: var(--error-rust);
    margin-bottom: 1.5rem;
}

.problem-card .stat {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--error-rust);
    font-size: 1.2rem;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--gradient-warm);
    position: relative;
}

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

.solution-features {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(254, 252, 248, 0.7);
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
    background: var(--neutral-warm-white);
}

.feature-item i {
    color: var(--success-forest);
    font-size: 1.75rem;
    margin-top: 0.25rem;
    transition: var(--transition-smooth);
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h4 {
    color: var(--neutral-dark-charcoal);
    margin-bottom: 0.5rem;
}

/* Product Screenshot */
.product-screenshot {
    position: relative;
    background: var(--neutral-warm-white);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: var(--transition-smooth);
}

.product-screenshot:hover {
    transform: scale(1.02);
}

.product-screenshot img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    transition: var(--transition-smooth);
}

.screenshot-overlay {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(135, 169, 107, 0.95);
    border-radius: var(--radius-medium);
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.product-screenshot:hover .screenshot-overlay {
    opacity: 1;
}

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

.step-badge {
    background: var(--neutral-warm-white);
    color: var(--primary-sage);
    padding: 1rem 2rem;
    border-radius: var(--radius-large);
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
}

.step-badge:hover {
    transform: scale(1.05);
}

/* Product Showcase Carousel */
.product-showcase {
    padding: 100px 0;
    background: var(--neutral-warm-white);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--neutral-warm-white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.carousel-slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-warm);
}

.slide-text h3 {
    color: var(--neutral-dark-charcoal);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.slide-text p {
    color: var(--accent-soft-brown);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

.slide-text ul {
    list-style: none;
    padding: 0;
}

.slide-text li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--neutral-medium-brown);
    font-weight: 500;
    font-size: 1.1rem;
}

.slide-text li::before {
    content: "✓";
    color: var(--success-forest);
    font-weight: 800;
    font-size: 1.3rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(254, 252, 248, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-sage);
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--neutral-warm-white);
    box-shadow: var(--shadow-strong);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.pagination-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(254, 252, 248, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.pagination-dot.active {
    background: var(--neutral-warm-white);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: rgba(254, 252, 248, 0.9);
    transform: scale(1.1);
}

/* Features Section Updates */
.feature-card {
    background: var(--gradient-warm);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.1);
    overflow: hidden;
    position: relative;
}

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

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

.feature-image {
    margin: 2rem 0;
    border-radius: var(--radius-medium);
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow-soft);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--neutral-warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--gradient-warm);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-sage);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: var(--transition-bounce);
}

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

.feature-icon i {
    color: var(--neutral-warm-white);
    font-size: 1.75rem;
}

.feature-card h3 {
    color: var(--neutral-dark-charcoal);
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--gradient-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: var(--neutral-warm-white);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-sage);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rating i {
    color: var(--warning-amber);
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--neutral-medium-brown);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
}

.author-name {
    font-weight: 700;
    color: var(--neutral-dark-charcoal);
    font-size: 1.1rem;
}

.author-title {
    color: var(--accent-soft-brown);
    font-size: 1rem;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.logo-item {
    font-weight: 700;
    color: var(--accent-soft-brown);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
}

.logo-item:hover {
    color: var(--primary-sage);
    transform: scale(1.05);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--neutral-warm-white);
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    background: var(--neutral-warm-white);
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-sage);
}

.pricing-header {
    background: var(--gradient-warm);
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.4rem;
    color: var(--accent-soft-brown);
    margin-right: 0.25rem;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neutral-dark-charcoal);
}

.period {
    font-size: 1.4rem;
    color: var(--accent-soft-brown);
    margin-left: 0.25rem;
    font-weight: 600;
}

.pricing-subtitle {
    color: var(--accent-soft-brown);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.savings-badge {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: var(--success-forest);
    padding: 12px 20px;
    border-radius: var(--radius-large);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.pricing-features {
    padding: 2.5rem;
}

.pricing-features h4 {
    margin-bottom: 2rem;
    color: var(--neutral-dark-charcoal);
    font-size: 1.3rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--neutral-medium-brown);
}

.pricing-features i {
    color: var(--success-forest);
    font-size: 1.3rem;
}

.pricing-cta {
    padding: 2.5rem;
    text-align: center;
    background: var(--gradient-warm);
    border-top: 1px solid rgba(139, 115, 85, 0.1);
}

.urgency-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--accent-soft-brown);
    border-radius: var(--radius-medium);
    font-weight: 600;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 115, 85, 0.2);
}

.urgency-notice i {
    color: var(--warning-amber);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--gradient-warm);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--neutral-warm-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(139, 115, 85, 0.1);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-strong);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--accent-warm-cream);
}

.faq-question h4 {
    margin: 0;
    color: var(--neutral-dark-charcoal);
    font-weight: 600;
    font-size: 1.2rem;
}

.faq-question i {
    color: var(--accent-soft-brown);
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-sage);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--accent-soft-brown);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-sage);
    color: var(--neutral-warm-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 252, 248, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final-cta h2 {
    color: var(--neutral-warm-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.final-cta p {
    color: rgba(254, 252, 248, 0.9);
    font-size: 1.3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-warm-cream);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: rgba(254, 252, 248, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

.trial-form {
    max-width: 550px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group input {
    flex: 1;
    padding: 20px;
    border: none;
    border-radius: var(--radius-medium);
    font-size: 1.1rem;
    background: var(--neutral-warm-white);
    color: var(--neutral-dark-charcoal);
    font-weight: 500;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(254, 252, 248, 0.3);
    transform: scale(1.02);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(254, 252, 248, 0.9);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.form-footer i {
    color: var(--accent-warm-cream);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(254, 252, 248, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.guarantee i {
    color: var(--warning-amber);
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--neutral-dark-charcoal);
    color: var(--neutral-warm-white);
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-sage);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.footer-brand .brand:hover {
    transform: scale(1.05);
}

.footer-brand .brand i {
    font-size: 2rem;
}

.footer-brand p {
    color: rgba(254, 252, 248, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.link-group h4 {
    color: var(--neutral-warm-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.link-group a {
    display: block;
    color: rgba(254, 252, 248, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 1.05rem;
}

.link-group a:hover {
    color: var(--primary-sage);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(254, 252, 248, 0.2);
}

.footer-bottom p {
    color: rgba(254, 252, 248, 0.6);
    margin: 0;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: rgba(254, 252, 248, 0.7);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    padding: 8px;
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--primary-sage);
    background: rgba(135, 169, 107, 0.1);
    transform: scale(1.2);
}

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .dashboard-preview {
        transform: none;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
    }
    
    .slide-image {
        height: 250px;
    }
    
    .slide-text {
        padding: 2rem;
    }
    
    .carousel-wrapper {
        height: auto;
        min-height: 400px;
    }
    
    .problem-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .pricing-card {
        margin: 0 15px;
    }
}

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

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

.page-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.page-header h1 i {
    color: #2563eb;
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Documentation Styles */
.content-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.content-sidebar {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 120px;
}

.content-sidebar h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sidebar-nav a:hover {
    color: #2563eb;
}

.content-main {
    max-width: none;
}

.doc-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.doc-section:last-child {
    border-bottom: none;
}

.doc-section h2 {
    color: #111827;
    margin-bottom: 1rem;
}

.doc-section h3 {
    color: #374151;
    margin: 2rem 0 1rem;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-box h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.code-example {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.code-example h4 {
    margin-bottom: 1rem;
    color: #374151;
}

.code-example pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.troubleshoot-item {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.troubleshoot-item h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.troubleshoot-item p {
    color: #78350f;
    margin: 0;
}

/* Help Center Styles */
.help-search {
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #2563eb;
}

.help-categories {
    margin-bottom: 4rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.category-card h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.article-list {
    list-style: none;
    margin-top: 1.5rem;
}

.article-list li {
    margin-bottom: 0.5rem;
}

.article-list a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-list a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.popular-articles {
    margin-bottom: 4rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.popular-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.popular-item i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.popular-item h4 {
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.popular-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.contact-support-section {
    text-align: center;
}

.support-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.support-card h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #e5e7eb;
    color: #111827;
}

/* Contact Support Styles */
.contact-options {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-card h3 {
    color: #111827;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 1.5rem 0;
    font-weight: 600;
    color: #2563eb;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.response-time i {
    color: #059669;
}

.support-form-section {
    padding: 2.5rem 0;
    margin-top: 2.5rem;
    background: var(--neutral-warm-white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.support-form-section h2 {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

.support-form-section p {
    margin-bottom: 1.5rem;
    color: var(--neutral-charcoal);
    font-size: 1.1rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
}

.form-container h2 {
    text-align: center;
    color: #111827;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.support-form .form-group {
    margin-bottom: 1rem;
}

.support-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neutral-charcoal);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.support-form .btn-primary {
    margin-top: 1.5rem;
    width: 100%;
}

.support-resources {
    margin-bottom: 4rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.resource-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.resource-item h4 {
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.resource-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.resource-item a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.resource-item a:hover {
    text-decoration: underline;
}

.support-guarantee {
    text-align: center;
}

.guarantee-card {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
}

.guarantee-card i {
    color: #0284c7;
    font-size: 3rem;
    margin-top: 0.5rem;
}

.guarantee-card h3 {
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: #075985;
    margin-bottom: 1.5rem;
}

.guarantee-card ul {
    list-style: none;
    color: #075985;
}

.guarantee-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.guarantee-card li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #111827;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.legal-section h3 {
    color: #374151;
    margin: 2rem 0 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box i {
    color: #0284c7;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.highlight-box h4 {
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.highlight-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.highlight-box li {
    color: #075985;
}

.contact-info-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method i {
    color: #2563eb;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.contact-method strong {
    color: #111827;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #2563eb;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method address {
    font-style: normal;
    color: #6b7280;
    line-height: 1.5;
}

/* Security Page Styles */
.security-overview {
    margin-bottom: 4rem;
}

.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.security-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.security-section {
    background: white;
}

.security-section h2 {
    color: #111827;
    margin-bottom: 1.5rem;
}

.security-features {
    margin-top: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-feature {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.security-feature h4 {
    color: #111827;
    margin-bottom: 1rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
}

.compliance-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.compliance-logo i {
    color: white;
    font-size: 1.5rem;
}

.compliance-card h4 {
    color: #111827;
    margin-bottom: 1rem;
}

.compliance-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 500;
    color: #059669;
}

.compliance-status i {
    color: #059669;
}

.infrastructure-features {
    margin-top: 2rem;
}

.infra-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.infra-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.infra-item h4 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.infra-item p {
    color: #6b7280;
    margin: 0;
}

.app-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-security-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.app-security-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.app-security-item h4 i {
    color: #2563eb;
}

.app-security-item ul {
    list-style: none;
    padding: 0;
}

.app-security-item li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.app-security-item li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
}

.privacy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.principle-item h4 {
    color: #111827;
    margin-bottom: 1rem;
}

.incident-response {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.response-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card i {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.resource-card h4 {
    color: #111827;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.security-contact {
    text-align: center;
    margin-top: 4rem;
}

.contact-card {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card h3 {
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #075985;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Article Hero Carousel */
.article-hero-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--neutral-warm-white);
}

.article-hero-carousel .carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.article-hero-carousel .carousel-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.article-hero-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
}

.article-hero-carousel .carousel-slide.active {
    opacity: 1;
}

.article-hero-carousel .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-hero-carousel .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-hero-carousel .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.article-hero-carousel .slide-content {
    text-align: center;
    color: var(--neutral-warm-white);
    max-width: 800px;
    padding: 2rem;
}

.article-hero-carousel .slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-hero-carousel .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.article-hero-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--neutral-warm-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.article-hero-carousel .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.article-hero-carousel .carousel-prev {
    left: 2rem;
}

.article-hero-carousel .carousel-next {
    right: 2rem;
}

.article-hero-carousel .carousel-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.article-hero-carousel .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.article-hero-carousel .pagination-dot.active {
    background: var(--neutral-warm-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.article-hero-carousel .pagination-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.article-tile {
    background: var(--neutral-warm-white);
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: var(--radius-medium);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.article-tile .article-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.article-tile:hover .article-image img {
    transform: scale(1.05);
}

.article-tile .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tile .article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.article-tile .article-excerpt {
    font-size: 0.9rem;
    color: var(--neutral-slate);
    margin-bottom: 1rem;
    line-height: 1.5;
    flex: 1;
}

.article-tile .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.article-tile .article-date,
.article-tile .article-category {
    color: var(--neutral-slate);
}

.article-tile .article-link {
    color: var(--primary-sage);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    flex-shrink: 0;
}

.article-tile .article-link:hover {
    color: var(--primary-sage-dark);
    transform: translateX(3px);
}

.article-hero-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-large);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
}

.article-hero-image img {
    width: 100%;
    height: 300px;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
}

.article-image {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    border-radius: var(--radius-medium);
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
}

.article-image img {
    width: 100%;
    height: 250px;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments for article hero carousel */
@media (max-width: 768px) {
    .article-hero-carousel {
        height: 300px;
    }
    
    .article-hero-carousel .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .article-hero-carousel .slide-content p {
        font-size: 1rem;
    }
    
    .article-hero-carousel .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .article-hero-carousel .carousel-prev {
        left: 1rem;
    }
    
    .article-hero-carousel .carousel-next {
        right: 1rem;
    }
    
    .article-hero-image {
        height: 200px;
    }
    
    .article-hero-image img {
        height: 200px;
        max-height: 200px;
    }
    
    .article-image {
        max-height: 180px;
        margin: 1.5rem 0;
    }
    
    .article-image img {
        height: 180px;
        max-height: 180px;
    }
}

/* Articles CTA */

/* Brand Colors for Articles */
:root {
    --article-primary: var(--primary-sage);
    --article-accent: var(--accent-gold);
    --article-text: var(--neutral-charcoal);
    --article-text-light: var(--neutral-slate);
    --article-bg: var(--neutral-warm-white);
}

.article-page {
    padding: 2rem 0;
    background: var(--neutral-warm-white);
    min-height: 100vh;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
    line-height: 1.7;
    font-size: 1.1rem;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--article-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--neutral-slate);
}

.article-hero-image img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.article-body {
    margin-top: 3rem;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--article-primary);
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--article-accent);
    position: relative;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--article-accent);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--article-primary);
    margin: 2rem 0 1rem 0;
}

/* Alternating Image Layout */
.article-media-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 154, 139, 0.03), rgba(218, 165, 32, 0.03));
    border-radius: var(--radius-large);
    border: 1px solid rgba(139, 154, 139, 0.1);
}

.article-media-wrapper:nth-of-type(even) {
    flex-direction: row-reverse;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.03), rgba(139, 154, 139, 0.03));
}

.article-media-wrapper .article-image {
    flex: 0 0 40%;
    max-width: 400px;
}

.article-media-wrapper .article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-media-wrapper .article-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.article-media-wrapper .article-media-text {
    flex: 1;
}

.article-media-wrapper .article-media-text h3 {
    margin-top: 0;
    color: var(--article-primary);
    font-size: 1.6rem;
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
}

.image-caption {
    font-size: 0.9rem;
    color: var(--neutral-slate);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Image Animations */
.animated-image {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated-image.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.article-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--article-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 154, 139, 0.05), rgba(218, 165, 32, 0.05));
    border-left: 4px solid var(--article-accent);
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.article-section {
    margin-bottom: 2.5rem;
}

.article-section ul li {
    color: var(--article-text);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.article-section ul li::before {
    content: '▸';
    color: var(--article-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.article-section ul li strong {
    color: var(--article-primary);
    font-weight: 600;
}

.article-cta {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
    border-radius: var(--radius-large);
    text-align: center;
    color: white;
    margin: 3rem 0;
    box-shadow: var(--shadow-large);
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-media-wrapper {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .article-media-wrapper .article-image {
        flex: none;
        max-width: 100%;
    }
    
    .article-media-wrapper .article-image img {
        height: 200px;
    }
    
    .article-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .article-header h1 {
        font-size: 2.2rem;
    }
    
    .article-body h2 {
        font-size: 1.7rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
    
    .article-hero-image img {
        max-height: 250px;
    }
    
    .article-image img {
        max-height: 200px;
    }
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
        order: 2;
    }
    
    .content-main {
        order: 1;
    }
    
    .security-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-header h1 i {
        font-size: 2rem;
    }
    
    .category-grid,
    .contact-grid,
    .compliance-grid,
    .app-security-grid,
    .privacy-principles,
    .incident-response,
    .resource-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-options,
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-card i {
        margin-top: 0;
    }
    
    .security-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-container,
    .support-card,
    .guarantee-card,
    .contact-card {
        padding: 2rem;
    }
    
    .security-section {
        padding: 0 1rem;
    }
}