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

/* Advanced CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --accent-light: #34d399;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --success-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --gradient-rainbow: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --backdrop-blur: blur(10px);
    --animation-speed: 0.3s;
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Advanced Animations and Effects */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

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

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

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0, -30px, 0); }
    70% { transform: translate3d(0, -15px, 0); }
    90% { transform: translate3d(0, -4px, 0); }
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px) rotate(360deg); opacity: 0; }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: var(--primary-color); }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    z-index: -1;
}

/* Particle Background */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-logo .logo-svg {
    /* width: 40px; */
    height: 56px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) var(--animation-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) var(--animation-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(42, 42, 42, 1);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: none;
}

.dashboard-mockup:hover {
    transform: none;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    background: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

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

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:last-child {
    background: #10b981;
}

.mockup-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    text-align: center;
}

.mockup-user {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.mockup-content {
    display: flex;
    height: 300px;
}

.mockup-sidebar {
    width: 200px;
    background: #f8fafc;
    padding: 20px 0;
    border-right: 1px solid var(--border-color);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 4px 12px;
}

.sidebar-item:hover {
    background: #f1f5f9;
    color: var(--text-primary);
    transform: translateX(4px);
}

.sidebar-item.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.sidebar-item i {
    width: 16px;
    text-align: center;
}

.sidebar-badge {
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
    min-width: 20px;
    text-align: center;
}

.sidebar-item.active .sidebar-badge {
    background: rgba(255, 255, 255, 0.2);
}

.mockup-main {
    flex: 1;
    padding: 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 200px;
}

.chart-bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: growUp 1s ease-out;
}

/* Tab Content Styles */
.tab-content {
    display: none;
    animation: fadeInScale 0.3s ease-out;
}

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

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.content-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.content-stats {
    display: flex;
    gap: 20px;
}

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

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Invoice List Styles */
.invoice-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invoice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.invoice-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.invoice-number {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.invoice-client {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.invoice-amount {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.invoice-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.invoice-status.paid {
    background: #dcfce7;
    color: #166534;
}

.invoice-status.pending {
    background: #fef3c7;
    color: #92400e;
}

/* Inventory Grid Styles */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.inventory-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.item-icon {
    font-size: 1.5rem;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.item-stock {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stock-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stock-indicator.high {
    background: #10b981;
}

.stock-indicator.medium {
    background: #f59e0b;
}

.stock-indicator.low {
    background: #ef4444;
}

/* E-way Bills Styles */
.eway-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eway-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.eway-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eway-number {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.eway-route {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.eway-amount {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.eway-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.eway-status.active {
    background: #dbeafe;
    color: #1e40af;
}

.eway-status.completed {
    background: #dcfce7;
    color: #166534;
}

/* API List Styles */
.api-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.api-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.api-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.api-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.api-endpoint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.api-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.api-status.online {
    background: #dcfce7;
    color: #166534;
}

.api-usage {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 60%); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

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

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--border-color);
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background: var(--primary-color);
}

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

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 16px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-logo .logo-svg {
    /* width: 40px;
    height: 40px; */
    object-fit: contain;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) and (min-width: 641px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
        align-items: start;
    }

    .hero-text {
        order: 1;
        padding: 0;
        max-width: 100%;
        text-align: left;
    }

    .hero-visual {
        order: 2;
        margin-top: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 24px;
        padding: 0;
        line-height: 1.5;
        max-width: 100%;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .hero-stats {
        justify-content: flex-start;
        flex-direction: row;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .stat {
        text-align: left;
        min-width: 100px;
        flex: 1;
    }

    .stat-number {
        font-size: 1.6rem;
        display: block;
    }

    .stat-label {
        font-size: 0.85rem;
        display: block;
        margin-top: 4px;
    }
    
    /* Dashboard Mockup for this range */
    .dashboard-mockup {
        transform: none;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .dashboard-mockup:hover {
        transform: none;
    }

    .hero {
        padding: 130px 0 50px;
        text-align: left;
        min-height: 100vh;
        margin-top: 0;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 12px 20px;
        margin: 4px 0;
        border-radius: 8px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 60px;
        text-align: left;
        min-height: 100vh;
        margin-top: 0;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
        align-items: start;
    }

    .hero-text {
        order: 1;
        padding: 0;
        max-width: 100%;
        text-align: left;
    }

    .hero-visual {
        order: 2;
        margin-top: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    /* Hide orbs on mobile for cleaner look */
    .hero-background {
        display: none;
    }

    /* Optimize hero section for mobile */
    .hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-attachment: scroll;
    }

    .hero::before {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 16px;
        padding: 0;
        max-width: 100%;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0;
        line-height: 1.5;
        max-width: 70%;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        justify-content: flex-start;
        flex-direction: row;
        gap: 16px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .stat {
        text-align: left;
        min-width: 90px;
        flex: 1;
    }

    .stat-number {
        font-size: 1.5rem;
        display: block;
    }

    .stat-label {
        font-size: 0.8rem;
        display: block;
        margin-top: 4px;
    }
    
    /* Dashboard Mockup Mobile */
    .dashboard-mockup {
        transform: none;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .dashboard-mockup:hover {
        transform: none;
    }

    .mockup-content {
        flex-direction: column;
        height: auto;
        max-height: 400px;
    }

    .mockup-sidebar {
        width: 100%;
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        overflow-x: auto;
        gap: 6px;
    }

    .sidebar-item {
        min-width: 120px;
        margin: 0 8px;
        padding: 10px 16px;
        flex-shrink: 0;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }

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

    .sidebar-item span {
        font-size: 0.8rem;
    }

    .sidebar-badge {
        position: absolute;
        top: 4px;
        right: 4px;
        font-size: 0.7rem;
        padding: 1px 4px;
        min-width: 16px;
    }

    .mockup-main {
        padding: 12px;
        min-height: 250px;
        max-height: 300px;
        overflow-y: auto;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .content-stats {
        width: 100%;
        justify-content: space-between;
    }

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

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Dashboard Items Mobile */
    .invoice-item,
    .eway-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px;
    }

    .invoice-info,
    .eway-info {
        width: 100%;
    }

    .invoice-amount,
    .eway-amount {
        font-size: 1.1rem;
    }

    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .inventory-item {
        padding: 15px;
    }

    .api-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px;
    }

    .api-info {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section ul {
        gap: 8px;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .developer-info {
        margin-top: 20px;
        text-align: center;
    }

    /* Other Sections Mobile */
    .why-this,
    .ecommerce-benefits,
    .b2b-integration,
    .inventory-importance,
    .eway-bill,
    .cta,
    .features,
    .pricing {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .why-grid,
    .benefits-grid,
    .integration-grid,
    .inventory-grid,
    .eway-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card,
    .benefit-card,
    .integration-card,
    .inventory-card,
    .eway-card {
        padding: 25px 20px;
    }

    .why-card h3,
    .benefit-card h3,
    .integration-card h3,
    .inventory-card h3,
    .eway-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .why-card p,
    .benefit-card p,
    .integration-card p,
    .inventory-card p,
    .eway-card p {
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* B2B Integration Section Mobile */
    .b2b-integration {
        padding: 60px 0;
    }

    .integration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .integration-text h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .integration-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .integration-features {
        gap: 20px;
        margin-bottom: 30px;
    }

    .integration-feature {
        gap: 12px;
    }

    .integration-feature i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .integration-feature h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .integration-feature p {
        font-size: 0.9rem;
    }

    .api-mockup {
        border-radius: 12px;
        max-width: 100%;
        overflow-x: auto;
    }

    .api-header {
        padding: 12px 16px;
    }

    .api-content {
        padding: 16px;
    }

    .api-code {
        padding: 12px;
    }

    .api-code pre {
        font-size: 0.75rem;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 25px;
        width: 100%;
        align-items: start;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.4;
        text-align: left;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 18px;
        align-items: flex-start;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 260px;
        padding: 12px 16px;
        font-size: 0.9rem;
        justify-content: flex-start;
    }

    .hero-stats {
        gap: 12px;
        margin-top: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .stat {
        min-width: 75px;
        text-align: left;
        flex: 1;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Extra small screens - stack stats vertically */
@media (max-width: 360px) {
    .hero {
        padding: 110px 0 30px;
        min-height: 100vh;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .stat {
        min-width: auto;
        flex: none;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        max-width: 100%;
    }
    
    .feature-card,
    .pricing-card,
    .why-card,
    .benefit-card,
    .integration-card,
    .inventory-card,
    .eway-card {
        padding: 20px 15px;
    }

    .dashboard-mockup {
        margin: 0 auto;
        border-radius: 8px;
        width: 100%;
        max-height: 350px;
    }

    .mockup-header {
        padding: 10px 12px;
    }

    .mockup-main {
        padding: 10px;
        max-height: 250px;
    }

    .sidebar-item {
        min-width: 100px;
        padding: 8px 12px;
    }

    .sidebar-item span {
        font-size: 0.75rem;
    }

    .invoice-item,
    .inventory-item,
    .eway-item,
    .api-item {
        padding: 12px;
    }

    .invoice-number,
    .eway-number,
    .api-name {
        font-size: 0.85rem;
    }

    .invoice-client,
    .eway-route,
    .api-endpoint {
        font-size: 0.75rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    /* B2B Integration Section Extra Small */
    .b2b-integration {
        padding: 50px 0;
    }

    .integration-text h2 {
        font-size: 1.8rem;
    }

    .integration-subtitle {
        font-size: 0.95rem;
    }

    .integration-features {
        gap: 16px;
    }

    .integration-feature i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .integration-feature h4 {
        font-size: 0.95rem;
    }

    .integration-feature p {
        font-size: 0.85rem;
    }

    .api-mockup {
        border-radius: 8px;
    }

    .api-header {
        padding: 10px 12px;
    }

    .api-content {
        padding: 12px;
    }

    .api-code {
        padding: 10px;
    }

    .api-code pre {
        font-size: 0.7rem;
    }
}

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

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

.feature-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Why This Section */
.why-this {
    padding: 100px 0;
    background: white;
}

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

.why-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--bg-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: white;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.why-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.why-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.why-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* E-commerce Benefits Section */
.ecommerce-benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefits-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.ecommerce-mockup {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.platform-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.platform-icon.shopify {
    background: linear-gradient(135deg, #96bf48, #7ab55c);
    color: white;
}

.platform-icon.woocommerce {
    background: linear-gradient(135deg, #96588a, #7c3a6b);
    color: white;
}

.platform-icon.magento {
    background: linear-gradient(135deg, #f26722, #e65100);
    color: white;
}

.platform-icon i {
    font-size: 2rem;
}

.platform-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.sync-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.sync-arrows i {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.invoicemate-center {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.invoicemate-center i {
    font-size: 2rem;
}

.invoicemate-center span {
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* B2B Integration Section */
.b2b-integration {
    padding: 100px 0;
    background: white;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.integration-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.integration-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.integration-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.integration-feature i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.integration-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.integration-feature p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.api-mockup {
    background: #1e1e1e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    width: 100%;
}

.api-header {
    background: #2d2d2d;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.api-dots {
    display: flex;
    gap: 8px;
}

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

.api-dots span:first-child {
    background: #ff5f56;
}

.api-dots span:nth-child(2) {
    background: #ffbd2e;
}

.api-dots span:last-child {
    background: #27ca3f;
}

.api-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.api-content {
    padding: 20px;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.method {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.url {
    color: #60a5fa;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.api-code {
    background: #0d1117;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.api-code pre {
    color: #e6edf3;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.api-response {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Inventory Importance Section */
.inventory-importance {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.inventory-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.inventory-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.inventory-problems {
    margin-bottom: 40px;
}

.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.problem-item i {
    width: 40px;
    height: 40px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.problem-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.problem-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.inventory-solution {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.inventory-solution h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.inventory-solution ul {
    list-style: none;
}

.inventory-solution li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.inventory-solution li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.inventory-chart {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.chart-bars {
    margin-bottom: 20px;
}

.chart-bar-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: end;
    height: 200px;
}

.bar {
    width: 60px;
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
}

.bar.before {
    background: linear-gradient(to top, #ef4444, #f87171);
}

.bar.after {
    background: linear-gradient(to top, #10b981, #34d399);
}

.bar-label {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.bar-value {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.chart-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* E-way Bill Section */
.eway-bill {
    padding: 100px 0;
    background: white;
}

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

.eway-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.eway-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.eway-benefit i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.eway-benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.eway-benefit p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.eway-stats {
    display: flex;
    gap: 40px;
}

.eway-stat {
    text-align: center;
}

.eway-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.eway-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.eway-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.eway-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eway-header i {
    font-size: 1.5rem;
}

.eway-header span {
    font-weight: 600;
}

.eway-form {
    padding: 30px;
}

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

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-secondary);
}

.form-field select {
    cursor: pointer;
}

.form-field select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.eway-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #166534;
}

.eway-status i {
    color: #10b981;
    font-size: 1.2rem;
}

/* E-way Bill Process Steps */
.eway-process {
    margin-top: 40px;
}

.eway-process h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.quick-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.quick-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.quick-link i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
}

/* Developer Info */
.developer-info {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #374151;
    margin-top: 20px;
}

.developer-info p {
    color: #9ca3af;
    margin: 0;
}

.developer-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.developer-info a:hover {
    text-decoration: underline;
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Legal Pages Styles */
.page-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.table-of-contents {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.table-of-contents h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-primary);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-section ul {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Cookie Policy Specific Styles */
.cookie-table {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-table td {
    color: var(--text-secondary);
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.browser-item {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
}

.browser-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.browser-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Coming Soon Page Styles */
.coming-soon-hero {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.coming-soon-icon i {
    font-size: 3rem;
    color: white;
}

.coming-soon-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 40px;
}

.coming-soon-features {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.coming-soon-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.coming-soon-features ul {
    list-style: none;
}

.coming-soon-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.coming-soon-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.coming-soon-cta {
    margin-bottom: 40px;
}

.coming-soon-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.notification-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.notification-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.notification-form button {
    white-space: nowrap;
}

.coming-soon-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .benefits-content,
    .integration-content,
    .inventory-content,
    .eway-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-icons {
        flex-direction: column;
        gap: 20px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .eway-stats {
        justify-content: center;
    }
    
    .chart-bar-group {
        gap: 20px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .eway-form {
        padding: 20px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-of-contents {
        position: static;
        order: 2;
    }
    
    .policy-content {
        order: 1;
        padding: 30px 20px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-content h1 {
        font-size: 2.5rem;
    }
    
    .notification-form {
        flex-direction: column;
    }
    
    .coming-soon-links {
        flex-direction: column;
        align-items: center;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
}
