/* Landing Page Simple CSS - No Animations */

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #e6f2ff;
    --success-color: #00d4aa;
    --danger-color: #dc3545;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --funky-purple: #7B2FF7;
    --funky-pink: #FF2E63;
    --funky-yellow: #FFD93D;
    --funky-cyan: #6BCFFB;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

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

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

/* Hero section button overrides */
.hero .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

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

@media (max-width: 480px) {
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(123, 47, 247, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 50%, #004a99 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    transform: rotate(45deg);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 207, 251, 0.08) 0%, transparent 70%);
    transform: rotate(-45deg);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #FFD93D, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .key-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Problem Section */
.problem {
    padding: 60px 0;
    background: white;
}

@media (max-width: 768px) {
    .problem {
        padding: 40px 0;
    }
}

.problem h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 46, 99, 0.15);
    border-color: rgba(255, 46, 99, 0.3);
}

.problem-item h3 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

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

.cost {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Solution Section */
.solution {
    padding: 60px 0;
    background: var(--light-gray);
}

@media (max-width: 768px) {
    .solution {
        padding: 40px 0;
    }
}

.solution h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.solution-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--funky-purple), var(--primary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(123, 47, 247, 0.3);
    transition: transform 0.3s ease;
}

.solution-step:hover .step-number {
    transform: scale(1.1);
}

@media (max-width: 968px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
}

@media (max-width: 768px) {
    .features {
        padding: 40px 0;
    }
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.feature i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--funky-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.25rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 768px) {
    .pricing {
        padding: 40px 0;
    }
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--funky-purple), var(--funky-cyan));
}

@media (max-width: 768px) {
    .pricing-box {
        padding: 2rem 1.5rem;
    }
}

.price {
    margin: 2rem 0;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .amount {
        font-size: 2.5rem;
    }
}

.period {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 400;
}

.includes {
    text-align: left;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.includes h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
}

.includes ul {
    list-style: none;
}

.includes li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 480px) {
    .includes li {
        font-size: 0.9rem;
    }
}

.includes i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.volume-discounts {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.05), rgba(0, 102, 204, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(123, 47, 247, 0.2);
}

.volume-discounts h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.volume-discounts p {
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 480px) {
    .volume-discounts p {
        font-size: 0.85rem;
    }
}

/* ROI Calculator */
.roi {
    padding: 60px 0;
    background: white;
}

@media (max-width: 768px) {
    .roi {
        padding: 40px 0;
    }
}

.roi h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.roi-calculator {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.calc-results {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
}

.result {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.result:last-child {
    border-bottom: none;
}

.result .label {
    color: var(--text-light);
}

.result .value {
    font-weight: 600;
    background: linear-gradient(90deg, var(--funky-purple), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 640px) {
    .calc-inputs {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: var(--light-gray);
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.contact-form button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

/* Removed shimmer animation */

.logo i {
    color: var(--primary-color);
}

/* Add floating animation to key stats */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat {
    animation: float 3s ease-in-out infinite;
}

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

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

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

/* Enhanced mobile responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .key-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}