/* index.css - Landing Page Specific Styles */

:root {
    /* Local overrides if any, otherwise uses globals.css */
}

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

/* Glass Nav */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.glass-nav .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent);
}

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

.landing-page .hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.landing-page h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.landing-page .btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.landing-page .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.landing-page .btn-secondary {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.landing-page .btn-secondary:hover {
    background: var(--bg);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.landing-page .btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2rem;
    color: var(--primary);
    font-family: 'Outfit';
}

.stat span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-visual .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid white;
}

.hero-visual img {
    width: 100%;
    display: block;
}

/* WhatsApp Demo */
.whatsapp-demo {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.chat-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: center;
}

.phone-mockup {
    background: #E5DDD5;
    border: 12px solid #333;
    border-radius: 40px;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 3rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: contain;
}

.msg {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.9rem;
    position: relative;
}

.msg.bot {
    background: white;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

.opt {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.6rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.opt:hover {
    background: var(--accent);
    color: white;
}

.feature-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: var(--bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
}

.info-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Daily Updates */
.daily-updates-section {
    padding: 60px 0;
    background: #F1F5F9;
}

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

.update-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border-top: 4px solid var(--secondary);
    box-shadow: var(--shadow);
}

.update-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.update-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.update-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Features Grid */
.features-grid {
    padding: 100px 0;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

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

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .landing-page .hero h1 { font-size: 3rem; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .chat-container { grid-template-columns: 1fr; }
    .phone-mockup { margin: 0 auto; }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured::after {
    content: "Most Popular";
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
}

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

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
}

