/**
 * Main Stylesheet
 * Custom global styles for Apana WhatsApp SaaS Website
 */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #25D366;
    --primary-dark: #1DA851;
    --secondary-color: #128C7E;
    --dark-color: #0F172A;
    --light-color: #F8FAFC;
    --gray-color: #64748B;
    --border-color: #E2E8F0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scrolling */
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

[class*="col-"] {
    max-width: 100%;
}

/* ===== Utility Classes ===== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Header & Navigation ===== */
.navbar {
    padding: 1rem 0;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===== Hero Section (Landing Hero) ===== */
.hero-section {
    min-height: calc(100vh - 75px);
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(27, 120, 86, 0.12) 0%, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badges {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #4A5568;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
    cursor: default;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    background-color: #F8FAFC;
}

.hero-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: rgba(27, 120, 86, 0.08);
    color: #1B7856;
    font-size: 0.9rem;
}

.hero-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B7856, #25D366);
}

.hero-badge-text {
    white-space: nowrap;
}

.hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #2D3436;
    margin-bottom: 1rem;
}

.hero-title-highlight {
    color: #1B7856;
}

.hero-subtitle {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: #666666;
    max-width: 480px;
    margin-bottom: 1.75rem;
}

.hero-cta-wrapper {
    position: relative;
    z-index: 2;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 48px;
    border-radius: 8px;
    border: none;
    background-color: #1B7856;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 12px 30px rgba(27, 120, 86, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-hero-primary:hover {
    background-color: #155D43;
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 18px 40px rgba(27, 120, 86, 0.45);
}

.btn-hero-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 8px 18px rgba(27, 120, 86, 0.3);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #1B7856;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.btn-hero-secondary:hover {
    color: #155D43;
    transform: translateY(-1px) scale(1.05);
}

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

.hero-dashboard-wrapper {
    position: relative;
    z-index: 2;
}

.hero-dashboard-mockup {
    max-width: 1000px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

.hero-dashboard-mockup img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== New Hero Section Styles ===== */
.hero-section-new {
    min-height: calc(100vh - 75px);
    padding: 120px 0 80px;
    margin-top: 75px;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 50%, #F5F7FA 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Decorative Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(18, 140, 126, 0.05) 100%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.hero-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgba(37, 211, 102, 0.06) 0%, rgba(18, 140, 126, 0.03) 100%);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-circle-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(37, 211, 102, 0.05) 0%, transparent 100%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content-new {
    position: relative;
    z-index: 2;
}

/* Badges - New Style */
.hero-badges-new {
    position: relative;
    z-index: 2;
}

.hero-badge-new {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-badge-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #1B7856;
}

.hero-badge-icon-new {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B7856, #25D366);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.hero-badge-icon-new.bg-success {
    background: linear-gradient(135deg, #25D366, #1DA851);
}

.hero-badge-icon-new.bg-primary {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.hero-badge-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, #D1D5DB, transparent);
}

/* Title - New Style */
.hero-title-new {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 3.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #1B7856 0%, #25D366 50%, #128C7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Subtitle - New Style */
.hero-subtitle-new {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* CTA Buttons - New Style */
.hero-cta-wrapper-new {
    position: relative;
    z-index: 2;
}

.btn-hero-primary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #1B7856 0%, #25D366 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(27, 120, 86, 0.3), 0 0 0 0 rgba(27, 120, 86, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary-new:hover {
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 120, 86, 0.4), 0 0 0 4px rgba(27, 120, 86, 0.1);
    background: linear-gradient(135deg, #155d43 0%, #1DA851 100%);
}

.btn-hero-primary-new:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-hero-secondary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    border: 2px solid #1B7856;
    background: #FFFFFF;
    color: #1B7856;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-secondary-new:hover {
    color: #FFFFFF;
    background: #1B7856;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(27, 120, 86, 0.2);
}

.btn-hero-secondary-new:active {
    transform: translateY(-1px) scale(0.98);
}

/* Trust Indicators */
.hero-trust-indicators {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin-top: 30px;
}

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

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1B7856;
    line-height: 1.2;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.trust-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hero-visual-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-visual-shadow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(27, 120, 86, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-radius: 30px;
    filter: blur(40px);
    z-index: -1;
    animation: pulse-shadow 3s ease-in-out infinite;
}

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

.hero-visual-mockup {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-visual-mockup:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.hero-visual-mockup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title-new {
        font-size: 2.75rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.125rem;
    }
    
    .hero-badge-divider {
        display: none;
    }
    
    .hero-badges-new {
        flex-direction: column;
        gap: 12px !important;
    }
    
    .hero-trust-indicators {
        gap: 30px !important;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .hero-circle-1,
    .hero-circle-2,
    .hero-circle-3 {
        opacity: 0.5;
    }
}

@media (max-width: 575.98px) {
    .hero-section-new {
        padding: 80px 0 50px;
        margin-top: 75px;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 1rem;
    }
    
    .btn-hero-primary-new,
    .btn-hero-secondary-new {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .hero-cta-wrapper-new {
        flex-direction: column;
        gap: 12px !important;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 20px !important;
        padding: 30px 0;
    }
    
    .hero-visual-wrapper {
        margin-top: 40px;
    }
}

/* ===== Features Section ===== */
.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    text-align: left;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: left;
}

/* ===== How It Works Section ===== */
.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* ===== Testimonials Section ===== */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

/* ===== Pricing Section ===== */
.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== Enhanced Pricing Section - Design Variations ===== */
/* Color Schemes for Plans */
:root {
    --basic-color: #FFD700;
    --basic-light: #FFF8DC;
    --advanced-color: #10B981;
    --advanced-light: #A7F3D0;
    --premium-color: #4B5563;
    --premium-light: #D1D5DB;
}

.text-basic {
    color: var(--basic-color) !important;
}

.text-advanced {
    color: var(--advanced-color) !important;
}

.text-premium {
    color: var(--premium-color) !important;
}

/* Pricing Card Variations */
.pricing-card-basic {
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.pricing-card-basic::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 0 16px 0 100%;
    z-index: 1;
}

.pricing-card-advanced {
    border: 2px solid #10B981;
    position: relative;
    overflow: hidden;
}

.pricing-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--advanced-color);
    border-radius: 0 16px 0 100%;
    z-index: 1;
}

.pricing-card-premium {
    border: 2px solid var(--premium-color);
    position: relative;
    overflow: hidden;
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--premium-color);
    border-radius: 0 16px 0 100%;
    z-index: 1;
}

.pricing-card-basic:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 25px -5px rgba(255, 215, 0, 0.3);
}

.pricing-card-advanced:hover {
    border-color: var(--advanced-color);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.2);
}

.pricing-card-premium:hover {
    border-color: var(--premium-color);
    box-shadow: 0 20px 25px -5px rgba(75, 85, 99, 0.2);
}

/* Pricing Icons */
.pricing-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 2;
}

.pricing-icon-basic {
    background: var(--basic-color);
}

.pricing-icon-advanced {
    background: var(--advanced-color);
}

.pricing-icon-premium {
    background: var(--premium-color);
}

/* Pricing Price Styles */
.pricing-price-basic {
    color: var(--basic-color);
}

.pricing-price-advanced {
    color: var(--advanced-color);
}

.pricing-price-premium {
    color: var(--premium-color);
}

/* Button Styles for Plans */
.btn-basic-custom {
    background-color: var(--basic-color);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-basic-custom:hover {
    background-color: #6B3410;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

.btn-advanced-custom {
    background-color: var(--advanced-color);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-advanced-custom:hover {
    background-color: #059669;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-premium-custom {
    background-color: var(--premium-color);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-premium-custom:hover {
    background-color: #374151;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(75, 85, 99, 0.3);
}

.bg-advanced-custom {
    background-color: var(--advanced-color) !important;
}

/* Conversation Pricing Card */
.conversation-pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.conversation-type-box {
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    height: 100%;
}

.conversation-type-box h4 {
    color: var(--dark-color);
    font-size: 1.25rem;
}

/* Onboarding Benefits */
.onboarding-benefits-list {
    list-style: none;
    padding: 0;
}

.onboarding-benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.onboarding-illustration {
    text-align: center;
    padding: 40px;
}

.illustration-placeholder {
    background: var(--light-color);
    border-radius: 16px;
    padding: 60px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Comparison Table */
.pricing-comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.pricing-comparison-table thead th {
    background: var(--light-color);
    font-weight: 700;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
}

.pricing-comparison-table tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.pricing-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-column {
    font-weight: 600;
    width: 40%;
}

.plan-basic-header {
    background: rgba(139, 69, 19, 0.1) !important;
    color: var(--basic-color) !important;
}

.plan-advanced-header {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--advanced-color) !important;
}

.plan-premium-header {
    background: rgba(75, 85, 99, 0.1) !important;
    color: var(--premium-color) !important;
}

.pricing-comparison-table tbody tr:hover {
    background: var(--light-color);
}

/* ===== Design Variation 2: Minimalist Style ===== */
.pricing-card-minimal {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

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

.pricing-minimal-basic {
    border: 2px solid var(--basic-color);
}

.pricing-minimal-advanced {
    border: 2px solid var(--advanced-color);
}

.pricing-minimal-premium {
    border-top: 3px solid var(--premium-color);
}

.featured-minimal {
    border: 2px solid var(--advanced-color);
    transform: scale(1.05);
}

.popular-badge-minimal {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--advanced-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-price-minimal {
    margin: 25px 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.pricing-divider {
    height: 1px;
    background: var(--border-color);
    margin: 25px 0;
}

.pricing-features-minimal {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features-minimal li {
    padding: 8px 0;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.pricing-features-minimal li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.85rem;
}

.btn-outline-basic {
    border: 2px solid var(--basic-color);
    color: var(--basic-color);
    background: transparent;
}

.btn-outline-basic:hover {
    background: var(--basic-color);
    color: white;
}

.btn-advanced-minimal {
    background: var(--advanced-color);
    color: white;
    border: none;
}

.btn-advanced-minimal:hover {
    background: #059669;
    color: white;
}

.btn-outline-premium {
    border: 2px solid var(--premium-color);
    color: var(--premium-color);
    background: transparent;
}

.btn-outline-premium:hover {
    background: var(--premium-color);
    color: white;
}

/* ===== Design Variation 3: Modern Gradient Style ===== */
.pricing-card-gradient {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 1;
}

.gradient-basic-overlay {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
}

.gradient-advanced-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.gradient-premium-overlay {
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.1) 0%, rgba(75, 85, 99, 0.05) 100%);
}

.pricing-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    background: white;
    margin-top: 80px;
    border-radius: 20px 20px 0 0;
}

.plan-icon-gradient {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-gradient-basic .plan-icon-gradient {
    background: linear-gradient(135deg, var(--basic-color) 0%, #6B3410 100%);
}

.pricing-gradient-advanced .plan-icon-gradient {
    background: linear-gradient(135deg, var(--advanced-color) 0%, #059669 100%);
}

.pricing-gradient-premium .plan-icon-gradient {
    background: linear-gradient(135deg, var(--premium-color) 0%, #374151 100%);
}

.featured-gradient {
    border: 2px solid var(--advanced-color);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--advanced-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-price-gradient {
    margin: 20px 0;
}

.pricing-price-gradient .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price-gradient .amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-price-gradient .period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.features-gradient-wrapper {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.pricing-features-gradient {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features-gradient li {
    padding: 10px 0;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.pricing-features-gradient li i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.pricing-gradient-basic .pricing-features-gradient li i {
    color: var(--basic-color);
}

.pricing-gradient-advanced .pricing-features-gradient li i {
    color: var(--advanced-color);
}

.pricing-gradient-premium .pricing-features-gradient li i {
    color: var(--premium-color);
}

.btn-gradient-basic {
    background: linear-gradient(135deg, var(--basic-color) 0%, #6B3410 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gradient-basic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
    color: white;
}

.btn-gradient-advanced {
    background: linear-gradient(135deg, var(--advanced-color) 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gradient-advanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-gradient-premium {
    background: linear-gradient(135deg, var(--premium-color) 0%, #374151 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gradient-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(75, 85, 99, 0.3);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .pricing-comparison-table {
        font-size: 0.9rem;
    }
    
    .pricing-comparison-table thead th,
    .pricing-comparison-table tbody td {
        padding: 10px 8px;
    }
    
    .featured-minimal {
        transform: scale(1);
    }
    
    .pricing-content-wrapper {
        margin-top: 60px;
        padding: 30px 20px;
    }
    
    .plan-icon-gradient {
        width: 60px;
        height: 60px;
        font-size: 24px;
        top: -25px;
    }
}

/* ===== Footer ===== */
.footer {
    /* Match footer background with "Call now" button color */
    background-color: #1B7856;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer a {
    color: #E2E8F0;
    transition: var(--transition);
}

.footer a:hover {
    color: #ffffff;
}

.footer p,
.footer li,
.footer span {
    color: #E2E8F0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* ===== Blog Section ===== */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.blog-card-excerpt {
    flex: 1;
    margin-bottom: 20px;
}

/* ===== Contact Form ===== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .section-padding {
        padding: 60px 0;
    }

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

    .pricing-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* ===== Hero Responsive Typography ===== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem; /* ~56px */
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.625rem; /* ~42px */
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem; /* ~28px */
    }

    .hero-subtitle {
        font-size: 0.875rem; /* ~14px */
    }

    .hero-cta-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-badge-text {
        white-space: normal;
    }
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   HERO SECTION VARIATIONS STYLES
   ============================================ */

/* HERO VARIATION 1: Centered Design (DoubleTick.io Style) */
.hero-variation-1 {
    min-height: calc(100vh - 75px);
    padding: 100px 0 80px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-content-v1 {
    position: relative;
    z-index: 2;
}

.hero-partnership-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.partnership-badge-inner i:first-child {
    color: #0081F1;
    font-size: 1.1rem;
}

.partnership-badge-inner i:last-child {
    color: #1B7856;
}

.hero-platform-badges {
    margin-bottom: 2rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-badge-whatsapp {
    background: #E8F5E9;
    color: #1B7856;
    border: 1px solid #C8E6C9;
}

.platform-badge-meta {
    background: #E3F2FD;
    color: #0081F1;
    border: 1px solid #BBDEFB;
}

.platform-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-title-v1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2D3436;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-underline {
    position: relative;
    display: inline-block;
}

.hero-title-underline::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(27, 120, 86, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle-v1 {
    font-size: 1.125rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta-v1 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-demo-v1 {
    background: #1B7856;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-demo-v1:hover {
    background: #155d43;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 120, 86, 0.3);
}

.btn-hero-plans-v1 {
    background: transparent;
    color: #2D3436;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-hero-plans-v1:hover {
    color: #1B7856;
    transform: translateY(-2px);
}

.hero-bg-checkmark {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B7856'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* HERO VARIATION 2: Split Layout */
.hero-variation-2 {
    min-height: calc(100vh - 75px);
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    position: relative;
}

.hero-badges-v2 {
    margin-bottom: 1.5rem;
}

.badge-v2 {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-meta {
    background: #E3F2FD;
    color: #0081F1;
}

.badge-whatsapp {
    background: #E8F5E9;
    color: #1B7856;
}

.hero-title-v2 {
    font-size: 3.25rem;
    font-weight: 800;
    color: #2D3436;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-primary-green {
    color: #1B7856;
}

.hero-subtitle-v2 {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.hero-features-v2 li {
    padding: 10px 0;
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features-v2 li i {
    color: #1B7856;
    font-size: 1.2rem;
}

.hero-cta-v2 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary-v2 {
    background: #1B7856;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-primary-v2:hover {
    background: #155d43;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 120, 86, 0.3);
}

.btn-hero-outline-v2 {
    background: transparent;
    color: #1B7856;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid #1B7856;
    transition: all 0.3s ease;
}

.btn-hero-outline-v2:hover {
    background: #1B7856;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-stats-v2 {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1B7856;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual-v2 {
    position: relative;
}

.visual-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
}

.visual-card img {
    display: block;
    width: 100%;
    height: auto;
}

.visual-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(27, 120, 86, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
}

/* HERO VARIATION 3: Minimalist Design */
.hero-variation-3 {
    min-height: calc(100vh - 75px);
    padding: 120px 0 80px;
    background: #FFFFFF;
    position: relative;
}

.hero-badge-v3 {
    display: inline-block;
    padding: 8px 20px;
    background: #F5F5F5;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666666;
}

.hero-title-v3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2D3436;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle-v3 {
    font-size: 1.25rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-cta-v3 {
    margin-bottom: 2rem;
}

.btn-hero-minimal {
    background: #1B7856;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-minimal:hover {
    background: #155d43;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 120, 86, 0.3);
}

.cta-note {
    font-size: 0.875rem;
    color: #999999;
    margin-top: 1rem;
}

.hero-visual-v3 {
    margin-top: 3rem;
}

.visual-minimal {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.visual-minimal img {
    display: block;
    width: 100%;
    height: auto;
}

/* HERO VARIATION 4: Gradient Background Design */
.hero-variation-4 {
    min-height: calc(100vh - 75px);
    padding: 100px 0;
    background: linear-gradient(135deg, #1B7856 0%, #25D366 50%, #128C7E 100%);
    position: relative;
    overflow: hidden;
}

.hero-content-v4 {
    position: relative;
    z-index: 2;
}

.hero-badge-v4 {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-title-v4 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-v4 {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-v4 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero-gradient {
    background: #FFFFFF;
    color: #1B7856;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-gradient:hover {
    background: #F5F5F5;
    color: #155d43;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-white {
    background: transparent;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-proof-v4 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

.proof-item i {
    font-size: 1.2rem;
}

.hero-visual-v4 {
    position: relative;
    z-index: 2;
}

.visual-gradient {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    background: #FFFFFF;
}

.visual-gradient img {
    display: block;
    width: 100%;
    height: auto;
}

.gradient-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.gradient-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

/* HERO VARIATION 5: Reach and Notify Customers at Scale */
.hero-variation-5 {
    min-height: calc(100vh - 75px);
    padding: 0 0 80px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-content-v5 {
    position: relative;
    z-index: 2;
    padding-left: 60px;
}

.hero-partnership-badge-v5 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.partnership-badge-inner-v5 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.partnership-badge-inner-v5:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #1B7856;
}

.partnership-badge-inner-v5 i:first-child {
    color: #0081F1;
    font-size: 1.1rem;
}

.partnership-badge-inner-v5 i:last-child {
    color: #1B7856;
}

.hero-platform-badges-v5 {
    margin-bottom: 2.5rem;
}

.platform-badge-v5 {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.platform-badge-whatsapp-v5 {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #1B7856;
    border: 1px solid #A5D6A7;
}

.platform-badge-meta-v5 {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: #0081F1;
    border: 1px solid #90CAF9;
}

.platform-badge-v5:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hero-title-v5 {
    font-size: 3.75rem;
    font-weight: 800;
    color: #2D3436;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-highlight-v5 {
    position: relative;
    display: inline-block;
    color: #1B7856;
}

.hero-title-highlight-v5::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 14px;
    background: rgba(27, 120, 86, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle-v5 {
    font-size: 1.25rem;
    color: #666666;
    max-width: 750px;
    margin: 0 0 2.5rem 0;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta-v5 {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-demo-v5 {
    background: linear-gradient(135deg, #1B7856 0%, #25D366 100%);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(27, 120, 86, 0.3);
}

.btn-hero-demo-v5:hover {
    background: linear-gradient(135deg, #155d43 0%, #1DA851 100%);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 120, 86, 0.4);
}

.btn-hero-plans-v5 {
    background: #FFFFFF;
    color: #2D3436;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid #E5E7EB;
}

.btn-hero-plans-v5:hover {
    color: #1B7856;
    border-color: #1B7856;
    background: #F9FAFB;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-trust-v5 {
    padding: 40px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin-top: 2rem;
}

.trust-item-v5 {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.trust-icon-v5 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(27, 120, 86, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B7856;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-content-v5 {
    display: flex;
    flex-direction: column;
}

.trust-number-v5 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1B7856;
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
}

.trust-label-v5 {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-bg-elements-v5 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-circle-v5-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 120, 86, 0.08) 0%, rgba(37, 211, 102, 0.04) 100%);
    top: -250px;
    right: -250px;
    animation: float-v5 20s ease-in-out infinite;
}

.hero-circle-v5-2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgba(27, 120, 86, 0.06) 0%, rgba(18, 140, 126, 0.03) 100%);
    bottom: -150px;
    left: -150px;
    animation: float-v5 15s ease-in-out infinite reverse;
}

.hero-pattern-v5 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, #1B7856 10px, #1B7856 20px);
    z-index: 0;
}

@keyframes float-v5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Styles for All Variations */
@media (max-width: 991.98px) {
    .hero-title-v1,
    .hero-title-v2,
    .hero-title-v3,
    .hero-title-v4,
    .hero-title-v5 {
        font-size: 2.5rem;
    }
    
    .hero-stats-v2 {
        gap: 2rem;
    }
    
    .hero-visual-v2,
    .hero-visual-v4 {
        margin-top: 3rem;
    }
    
    .hero-content-v5 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-trust-v5 {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 2rem !important;
        padding: 35px 0 !important;
    }
    
    .hero-trust-v5.justify-content-start {
        justify-content: center !important;
    }
    
    .trust-item-v5 {
        flex: 0 0 auto !important;
        justify-content: center !important;
        text-align: center !important;
        min-width: 140px;
    }
    
    .hero-platform-badges-v5 {
        justify-content: center !important;
    }
    
    .hero-cta-v5 {
        justify-content: center !important;
    }
    
    /* Hero Variation 2 - Tablet Responsive */
    .hero-variation-2 {
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-badges-v2 {
        margin-bottom: 1.25rem;
    }
    
    .badge-v2 {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }
    
    .hero-subtitle-v2 {
        font-size: 1.0625rem;
    }
    
    .hero-features-v2 li {
        font-size: 0.9375rem;
        padding: 8px 0;
    }
    
    .hero-stats-v2 {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-variation-1,
    .hero-variation-2,
    .hero-variation-3,
    .hero-variation-4,
    .hero-variation-5 {
        padding: 80px 0 50px;
    }
    
    .hero-content-v5 {
        padding-left: 15px;
    }
    
    .hero-title-v1,
    .hero-title-v2,
    .hero-title-v3,
    .hero-title-v4,
    .hero-title-v5 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-v1,
    .hero-subtitle-v2,
    .hero-subtitle-v3,
    .hero-subtitle-v4,
    .hero-subtitle-v5 {
        font-size: 1rem;
    }
    
    .btn-hero-demo-v1,
    .btn-hero-plans-v1,
    .btn-hero-primary-v2,
    .btn-hero-outline-v2,
    .btn-hero-minimal,
    .btn-hero-gradient,
    .btn-hero-white,
    .btn-hero-demo-v5,
    .btn-hero-plans-v5 {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .hero-cta-v1,
    .hero-cta-v2,
    .hero-cta-v4,
    .hero-cta-v5 {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats-v2 {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .hero-proof-v4 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-trust-v5 {
        flex-direction: column !important;
        gap: 1.25rem !important;
        padding: 25px 0 !important;
        margin-top: 1.5rem !important;
    }
    
    .hero-trust-v5.justify-content-start {
        justify-content: center !important;
    }
    
    .hero-trust-v5.gap-5 {
        gap: 1.25rem !important;
    }
    
    .trust-item-v5 {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        flex: 1 1 100% !important;
    }
    
    .hero-platform-badges-v5 {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .platform-badge-v5 {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-cta-v5 {
        flex-direction: column !important;
        gap: 0.625rem !important;
    }
    
    .btn-hero-demo-v5,
    .btn-hero-plans-v5 {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Medium devices (tablets, 576px to 767.98px) */
@media (max-width: 767.98px) {
    .hero-variation-5 {
        padding: 50px 0 40px;
    }
    
    .hero-content-v5 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title-v5 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle-v5 {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-platform-badges-v5 {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .platform-badge-v5 {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-cta-v5 {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .btn-hero-demo-v5,
    .btn-hero-plans-v5 {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hero-trust-v5 {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-around !important;
        gap: 1.5rem !important;
        padding: 30px 15px !important;
    }
    
    .hero-trust-v5.justify-content-start {
        justify-content: space-around !important;
    }
    
    .trust-item-v5 {
        flex: 0 0 calc(50% - 0.75rem) !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-variation-2 {
        padding: 70px 0;
    }
    
    .hero-title-v2 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-v2 {
        font-size: 1.0625rem;
    }
    
    .hero-badges-v2 {
        gap: 0.75rem;
    }
    
    .badge-v2 {
        font-size: 0.8125rem;
        padding: 7px 14px;
    }
    
    .hero-stats-v2 {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.875rem;
    }
}

@media (max-width: 575.98px) {
    /* Hero Variation 2 - Mobile Responsive */
    .hero-variation-2 {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-badges-v2 {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .badge-v2 {
        font-size: 0.75rem;
        padding: 6px 12px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-title-v2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-subtitle-v2 {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .hero-features-v2 {
        margin-bottom: 1.5rem;
    }
    
    .hero-features-v2 li {
        font-size: 0.875rem;
        padding: 8px 0;
        gap: 8px;
    }
    
    .hero-features-v2 li i {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .hero-cta-v2 {
        gap: 0.75rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .hero-visual-v2 {
        margin-top: 2rem;
    }
}

/* Extra small devices (phones, less than 400px) */
@media (max-width: 399.98px) {
    .hero-variation-2 {
        padding: 50px 0 30px;
    }
    
    .hero-title-v2 {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle-v2 {
        font-size: 0.875rem;
    }
    
    .hero-features-v2 li {
        font-size: 0.8125rem;
    }
    
    .badge-v2 {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }
    
    .btn-hero-primary-v2,
    .btn-hero-outline-v2 {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}
