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

:root {
    --primary-color: #000000;
    --primary-light: #333333;
    --accent-color: #6366f1;
    --orange-color: #b65843;
    --orange-light: #d86c52;
    --hero-bg: #f4f2f1;
    --text-dark: #0f0f0f;
    --text-gray: #525252;
    --text-light: #737373;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --border-light: #e5e5e5;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --accent-gradient: linear-gradient(135deg, var(--accent-color) 0%, #8b5cf6 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--hero-bg);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
}

/* Global Overflow Fix */
html, body, main, section, div, article, aside, nav, header, footer {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

p, span, div, a, button, .btn, .badge, .section-badge, .hero-badge {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-color) 0%, var(--orange-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(182, 88, 67, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.section-badge::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;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(182, 88, 67, 0.4);
}

.section-badge {
    animation: slideInFromTop 0.8s ease forwards;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(182, 88, 67, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(182, 88, 67, 0.5);
    }
}

.section-badge {
    animation: slideInFromTop 0.8s ease forwards, pulse 3s ease-in-out infinite 1s;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-header .section-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideInFromTop 0.8s ease forwards, pulsePricing 3s ease-in-out infinite 1s;
}

.section-header .section-badge:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulsePricing {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Buttons */
.btn-primary {
    background: var(--orange-light);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--hero-bg);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange-color);
}

.nav-cta {
    background: transparent;
    color: var(--orange-color);
    border: 1px solid var(--orange-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--orange-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

.nav-contact {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-contact:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--orange-color);
    font-weight: 500;
    color: var(--orange-color);
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.hero-cta-enhanced {
    margin-bottom: 4rem;
}

.btn-primary-enhanced {
    background: var(--orange-light);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 108, 82, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 108, 82, 0.4);
    background: var(--orange-color);
}









/* Main Features Section */
.main-features {
    padding: 80px 0;
    background: var(--hero-bg);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.features-content {
    text-align: left;
}

.features-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.features-list-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-compact {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.feature-icon-compact.red {
    background: #ff6b6b;
}

.feature-icon-compact.purple {
    background: #9775fa;
}

.feature-icon-compact.green {
    background: #51cf66;
}

.feature-icon-compact.blue {
    background: #339af0;
}

.feature-text-compact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-text-compact p {
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Interactive Simulator */
.interactive-simulator {
    position: relative;
}

.simulator-container {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.simulator-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.simulator-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.simulator-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.simulator-content {
    display: flex;
    min-height: 400px;
}

.simulator-sidebar {
    width: 160px;
    background: #fafafa;
    border-right: 1px solid var(--border-light);
    padding: 1rem 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.nav-item:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

.nav-item.active {
    background: var(--orange-color);
    color: white;
}

.nav-item i {
    width: 16px;
    font-size: 0.8rem;
}

.simulator-main {
    flex: 1;
    padding: 1.5rem;
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.stat-box {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.chart-area {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-light);
}

.chart-placeholder-interactive {
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

#salesChart {
    max-width: 100%;
    height: auto;
}

.sales-content,
.inventory-content,
.compliance-content {
    padding: 1rem 0;
}

.sales-content h3,
.inventory-content h3,
.compliance-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.transaction-list,
.inventory-list,
.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transaction-item,
.inventory-item,
.compliance-item {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-gray);
    border: 1px solid var(--border-light);
}

/* Powerful Features Section */
.powerful-features {
    padding: 80px 0;
    background: var(--hero-bg);
    position: relative;
}

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

.powerful-features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Features Carousel */
.features-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

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

.slide-image {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

/* Mockup Styles */
.dashboard-mockup,
.compliance-mockup,
.ecommerce-mockup {
    width: 100%;
    height: 100%;
    background: white;
}

.mockup-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-dots {
    display: flex;
    gap: 0.5rem;
}

.header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.header-dots span:first-child { background: #ff5f57; }
.header-dots span:nth-child(2) { background: #ffbd2e; }
.header-dots span:last-child { background: #28ca42; }

.header-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.mockup-body {
    padding: 2rem;
    height: calc(100% - 60px);
}

/* Dashboard Mockup */
.chart-area {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-mini {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-mini {
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    color: var(--orange-color);
    border: 1px solid var(--border-light);
    text-align: center;
    flex: 1;
    font-size: 0.9rem;
}

/* Compliance Mockup */
.compliance-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

.compliance-item-mock {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.compliance-item-mock.green {
    border-left: 4px solid #51cf66;
    color: #2b8a3e;
}

.compliance-item-mock.orange {
    border-left: 4px solid #fd7e14;
    color: #e8590c;
}

/* E-commerce Mockup */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
}

.product-card {
    background: var(--bg-light);
    height: 120px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

/* POS Mockup */
.pos-mockup {
    width: 100%;
    height: 100%;
    background: white;
}

.pos-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}

.pos-cart {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-light);
    flex: 1;
}

.cart-header {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.item-name {
    color: var(--text-dark);
    font-weight: 500;
}

.item-price {
    color: var(--orange-color);
    font-weight: 600;
}

.cart-total {
    border-top: 1px solid var(--border-light);
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.total-line.final {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-light);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.total-line.final span:last-child {
    color: var(--orange-color);
}

.pos-actions {
    display: flex;
    gap: 0.75rem;
}

.pos-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.pos-btn.primary {
    background: var(--orange-color);
    color: white;
}

.pos-btn.primary:hover {
    background: var(--orange-light);
}

.pos-btn.secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.pos-btn.secondary:hover {
    background: var(--bg-light);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

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

.indicator.active {
    background: var(--orange-color);
}

.indicator:hover {
    background: var(--orange-light);
}

/* Features Content Right */
.features-content-right {
    text-align: left;
}

.section-header-right {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-header-right .section-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, #8b5cf6 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    animation: slideInFromTop 0.8s ease forwards, pulseFeatures 3s ease-in-out infinite 1s;
}

.section-header-right .section-badge:hover {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

@keyframes pulseFeatures {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
    }
}

.section-title-right {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
}

.section-description-right {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

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

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

.feature-item-right {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item-right:hover {
    transform: translateX(5px);
}

.feature-icon-check {
    width: 24px;
    height: 24px;
    background: var(--orange-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-content-right h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-content-right p {
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--hero-bg);
    position: relative;
}

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


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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: left;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--orange-color);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-header {
    padding: 2rem 2rem 0;
    background: white;
}

.plan-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plan-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
}

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

.pricing-features {
    background: #f8f9fa;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-item:last-child {
    padding-bottom: 0;
}

.feature-check {
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-btn {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.pricing-btn.basic {
    background: var(--orange-color);
    color: white;
}

.pricing-btn.basic:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

.pricing-btn.pro {
    background: var(--text-dark);
    color: white;
}

.pricing-btn.pro:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Savings Indicator */
.savings-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 0.8rem;
    animation: slideInFromBottom 0.3s ease;
}

.savings-text {
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.savings-amount {
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.2rem;
    color: var(--orange-color);
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.billing-label {
    font-weight: 500;
    color: var(--orange-color);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.billing-label:hover {
    color: var(--orange-light);
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ccc, #999);
    transition: all 0.4s ease;
    border-radius: 34px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: all 0.4s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, var(--orange-color), var(--orange-light));
    box-shadow: 0 0 10px rgba(182, 88, 67, 0.3);
}

input:checked + .slider:before {
    transform: translateX(26px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider:hover {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(182, 88, 67, 0.2);
}

input:checked + .slider:hover {
    box-shadow: 0 0 15px rgba(182, 88, 67, 0.4);
}

/* Join Waitlist Section */
.join-waitlist {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.waitlist-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.waitlist-content .btn-primary {
    background: var(--orange-light);
    border-color: var(--orange-light);
}

.waitlist-content .btn-primary:hover {
    background: var(--orange-color);
    border-color: var(--orange-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand img:hover {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(15deg);
    transform: scale(1.05);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-email {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--orange-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    background: var(--orange-light);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .features-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .powerful-features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-content-right {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-title-right {
        text-align: center;
        font-size: 2rem;
    }
    
    .section-description-right {
        text-align: center;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .simulator-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .simulator-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }
    
    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .nav-item {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .mockup-container {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Containers */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content-centered {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-enhanced {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
        max-width: 280px;
    }
    
    .hero-badge {
        margin-top: 1.5rem;
    }
    
    /* Main Features */
    .main-features {
        padding: 60px 0;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0;
    }
    
    .features-content {
        text-align: center;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
        width: 100%;
    }
    
    .features-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .features-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .features-list-compact {
        gap: 1.5rem;
        max-width: 100%;
        padding: 0;
    }
    
    .feature-item-compact {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
        padding: 0.8rem 0.5rem;
        box-sizing: border-box;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .feature-icon-compact {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .feature-text-compact {
        text-align: center;
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }
    
    .feature-text-compact h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text-compact p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
        padding: 0 0.3rem;
    }
    
    /* Powerful Features */
    .powerful-features {
        padding: 60px 0;
    }
    
    .powerful-features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-content-right {
        text-align: center;
        max-width: 100%;
    }
    
    .section-title-right {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-description-right {
        margin-bottom: 2rem;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .feature-item-right {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
    }
    
    /* Pricing */
    .pricing {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand img {
        margin: 0 auto 1rem;
    }
    
    /* Join Waitlist */
    .join-waitlist {
        padding: 60px 0;
        text-align: center;
    }
    
    .waitlist-content h2 {
        font-size: 2rem;
    }
    
    .waitlist-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Containers */
    .container {
        padding: 0 0.8rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content-centered {
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary-enhanced {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    /* Main Features */
    .main-features {
        padding: 40px 0;
    }
    
    .features-content {
        padding: 0 0.3rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .features-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .features-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .features-list-compact {
        gap: 1.25rem;
        padding: 0;
    }
    
    .feature-item-compact {
        padding: 0.8rem;
        gap: 0.6rem;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .feature-text-compact h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-text-compact p {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        padding: 0 0.3rem;
    }
    
    /* Powerful Features */
    .powerful-features {
        padding: 40px 0;
    }
    
    .section-title-right {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-description-right {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Pricing */
    .pricing {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-grid {
        gap: 1rem;
        max-width: 320px;
    }
    
    .pricing-header {
        padding: 1.25rem 1.25rem 0;
    }
    
    .plan-title {
        font-size: 1.4rem;
    }
    
    .price-main {
        font-size: 1.8rem;
    }
    
    .pricing-btn {
        width: calc(100% - 2.5rem);
        margin: 0 1.25rem 1.25rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .pricing-features {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .feature-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
        max-width: 280px;
    }
    
    .billing-label {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-email {
        font-size: 0.9rem;
    }
    
    /* Join Waitlist */
    .join-waitlist {
        padding: 40px 0;
    }
    
    .waitlist-content h2 {
        font-size: 1.5rem;
    }
    
    .waitlist-content p {
        font-size: 0.9rem;
    }
    
    /* Section Badges */
    .section-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Floating Waitlist Button */
.floating-waitlist-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: floatUp 0.8s ease-out 1.5s both;
    border: none;
    outline: none;
    background: none;
}

.floating-btn-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange-color) 0%, var(--orange-light) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    outline: none;
}

.floating-btn-link::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;
}

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


.floating-btn-link:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.floating-btn-link:focus {
    outline: none;    
}

.floating-btn-link * {
    border: none;
    outline: none;
}

.floating-btn-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.floating-btn-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

.floating-btn-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Floating Button Animations */
@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(182, 88, 67, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(182, 88, 67, 0.4);
    }
}

/* Responsive Floating Button */
@media (max-width: 768px) {
    .floating-waitlist-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-btn-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .floating-btn-text {
        font-size: 0.85rem;
    }
    
    .floating-btn-link i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-waitlist-btn {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn-link {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .floating-btn-text {
        font-size: 0.8rem;
    }
    
    .floating-btn-link i {
        font-size: 0.85rem;
    }
}

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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .join-waitlist,
    .footer {
        display: none;
    }
    
    .hero,
    .main-features,
    .powerful-features,
    .pricing {
        page-break-inside: avoid;
    }
}
