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

:root {
    --primary: #0EA5C9;
    --primary-dark: #0891B2;
    --profit: #10B981;
    --loss: #EF4444;
    --warning: #F59E0B;
    --dispatcher: #8B5CF6;
    --dark-bg: #0A0F1E;
    --dark-card: #1A2332;
    --light-bg: #FFFFFF;
    --light-card: #F9FAFB;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.6);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Hero Section */
.hero {
    padding: 140px 0 50px;
    text-align: center;
    background: linear-gradient(135deg, #0f1729 0%, #1e2847 50%, #2d3a5f 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(15, 23, 41, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 40, 71, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease infinite;
}

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

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.2rem;
    animation: slideDown 0.8s ease-out, floatBadge 3s ease-in-out infinite 0.8s;
    color: #1e3a8a;
}

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

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

.hero-logo {
    margin: 0 auto 1.2rem;
    animation: scaleIn 0.8s ease-out 0.2s both;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-logo img {
    width: 180px;
    height: auto;
    animation: glow 2s ease-in-out infinite;
}

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    }
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    animation: slideUp 0.8s ease-out 0.3s both;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 200%;
}

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

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 2rem;
    animation: slideUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.stat {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out both;
}

.stat:nth-child(1) {
    animation-delay: 0.5s;
}

.stat:nth-child(2) {
    animation-delay: 0.6s;
}

.stat:nth-child(3) {
    animation-delay: 0.7s;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: slideUp 0.8s ease-out 0.8s both;
}

.hero-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    perspective: 1200px;
    max-width: 1000px;
    margin: 0 auto;
}

.phone-mockup {
    flex-shrink: 0;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 10px solid #1f2937;
    animation: phoneFloat 0.8s ease-out both;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

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

.phone-left {
    width: 140px;
    transform: rotateY(18deg) translateX(30px);
    animation-delay: 0.9s;
}

.phone-center {
    width: 180px;
    z-index: 2;
    transform: scale(1.15);
    animation-delay: 1s;
}

.phone-right {
    width: 140px;
    transform: rotateY(-18deg) translateX(-30px);
    animation-delay: 1.1s;
}

@keyframes phoneFloat {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
    }
}

.phone-mockup:hover {
    transform: scale(1.1) rotateY(0deg) translateX(0) translateZ(50px);
    z-index: 3;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
.section {
    padding: 80px 0;
    animation: fadeIn 0.8s ease-out;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background: white;
}

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

.problem-card {
    padding: 2rem;
    background: var(--light-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.problem-card:nth-child(1) {
    animation-delay: 0.1s;
}

.problem-card:nth-child(2) {
    animation-delay: 0.2s;
}

.problem-card:nth-child(3) {
    animation-delay: 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.problem-stat {
    font-weight: 600;
    color: var(--loss);
    font-size: 0.875rem;
}

/* Features Section */
.features-section {
    background: var(--light-card);
}

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

.feature-card {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.feature-list li:hover {
    color: var(--text-primary);
    padding-left: 2rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--profit);
    font-weight: 700;
}

.mode-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.light-mode {
    background: #FEF3C7;
    color: #92400E;
}

.dark-mode {
    background: #1F2937;
    color: #E5E7EB;
}

/* App Showcase */
.app-section {
    background: white;
}

/* Theme Selector Feature */
.theme-selector-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.theme-selector-content {
    padding: 0.5rem;
}

.theme-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.theme-selector-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.theme-selector-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.theme-selector-screen {
    text-align: center;
}

.theme-selector-screen img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.screen-caption {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.app-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-screen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    margin: 0 auto;
}

.showcase-screen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 550px;
}

.screen-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.screen-badge.dark {
    background: rgba(10, 15, 30, 0.9);
    color: white;
}

.screen-badge.light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

.showcase-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.showcase-content h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.showcase-content h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Workflow Section */
.workflow-section {
    background: var(--light-card);
}

.workflow {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 1.25rem;
    align-items: start;
    position: relative;
}

.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    bottom: -24px;
    width: 2px;
    background: linear-gradient(180deg, #1e3a8a 0%, #DBEAFE 100%);
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

.step-screenshot {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--light-card);
    border-radius: 8px;
}

.step-screenshot img {
    width: 50px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.step-screenshot-info {
    flex: 1;
}

.step-screenshot-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.step-screenshot-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Core Features Grid */
.core-features {
    background: white;
}

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

.feature-item {
    padding: 2rem;
    background: var(--light-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.feature-icon-small {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
    background: var(--light-card);
}

.roadmap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-item {
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.roadmap-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.roadmap-item.complete {
    border-color: var(--profit);
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.roadmap-item.complete:hover {
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.3);
}

.roadmap-item.active {
    border-color: #1e3a8a;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.2);
}

.roadmap-item.active:hover {
    box-shadow: 0 16px 32px rgba(30, 58, 138, 0.3);
}

.roadmap-phase {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.roadmap-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #1e3a8a;
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.roadmap-item.complete .roadmap-icon {
    background: var(--profit);
    animation: successPulse 2s ease-in-out infinite;
}

.roadmap-item.active .roadmap-icon {
    background: #1e3a8a;
    animation: rotate 2s linear infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

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

.roadmap-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.roadmap-item p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.roadmap-status {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.roadmap-item.complete .roadmap-status {
    background: var(--profit);
    color: white;
}

.roadmap-item.active .roadmap-status {
    background: #1e3a8a;
    color: white;
}

.roadmap-item:not(.complete):not(.active) .roadmap-status {
    background: var(--light-card);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.roadmap-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-check, .feature-pending {
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-left: 3px solid;
    padding-left: 0.75rem;
}

.feature-check {
    border-color: var(--profit);
    color: #166534;
    font-weight: 500;
}

.feature-pending {
    border-color: var(--text-muted);
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1729 0%, #1e2847 100%);
    color: white;
    text-align: center;
}

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

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

.cta-buttons {
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    background: white;
    color: #1e3a8a;
}

.cta-section .btn-primary:hover {
    background: var(--light-card);
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-links a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.cta-links a:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-content .btn-primary {
        display: none;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 32px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-logo img {
        width: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .stat {
        padding: 1rem;
    }

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

    .hero-cta {
        flex-direction: column;
        padding: 0 1rem;
    }

    .hero-phones {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .phone-mockup {
        width: 100% !important;
        max-width: 280px !important;
        transform: none !important;
        margin: 0 auto !important;
        border-width: 8px;
    }

    .phone-left,
    .phone-center,
    .phone-right {
        width: 100% !important;
        max-width: 280px !important;
        transform: none !important;
        margin: 0 auto;
    }

    .problem-grid,
    .features-grid,
    .features-grid-small,
    .roadmap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roadmap-item {
        padding: 1.5rem;
    }

    .app-showcase {
        gap: 3rem;
    }

    .showcase-item,
    .workflow-step {
        grid-template-columns: 1fr;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-screen {
        max-width: 100%;
    }

    .theme-selector-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .theme-selector-screen img {
        max-width: 250px;
    }

    .workflow {
        padding: 0 1rem;
    }

    .workflow-step {
        gap: 1rem;
    }

    .workflow-step:not(:last-child) {
        margin-bottom: 3rem;
    }

    .workflow-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-content {
        padding: 1rem;
    }

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

    .section-subtitle {
        font-size: 1.25rem;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .hero-logo img {
        width: 100px;
    }

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

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

    .phone-mockup {
        max-width: 260px !important;
    }

    .phone-left,
    .phone-center,
    .phone-right {
        max-width: 260px !important;
    }

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

    .roadmap-item {
        padding: 1rem;
    }

    .roadmap-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .roadmap-item h3 {
        font-size: 0.95rem;
    }

    .roadmap-item p {
        font-size: 0.7rem;
    }
}
