@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #10b981;
    --primary-rgb: 16, 185, 129;
    --primary-light: #ecfdf5;
    --primary-dark: #059669;
    --secondary: #1e293b;
    --secondary-rgb: 30, 41, 59;
    --accent: #3b82f6;
    --accent-rgb: 59, 130, 246;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout --- */
.top-bar {
    background: linear-gradient(90deg, #064e3b 0%, #10b981 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar strong {
    font-weight: 800;
    color: #fbbf24;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 120px 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.35; /* Increased to prevent Marathi characters from being cut off */
    letter-spacing: -0.02em;
    padding-top: 0.1em; /* Extra space for Marathi Shirorekha */
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* --- Navbar --- */
nav {
    height: 90px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 38px; /* Adjusted for top-bar */
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(var(--secondary-rgb), 0.05);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

nav.scrolled {
    height: 75px;
    top: 40px; /* Keep below top-bar */
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 850;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    opacity: 0.8;
}

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

.mobile-menu-btn {
    display: none;
}


/* --- Hero --- */
.hero {
    padding-top: 200px;
    padding-bottom: 100px;
    background: 
        radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(var(--accent-rgb), 0.08) 0%, transparent 40%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm20-46c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM10 50c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm90-10c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM80 80c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM54 20c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM6 80c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm94-46c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM8 2c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm88 88c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM28 20c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm56 61c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM54 80c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%2310b981' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 80px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFadeUp 1s ease-out;
}

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

.hero p {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(var(--primary-rgb), 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 1px solid rgba(var(--secondary-rgb), 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.hero-mockup {
    margin-top: 40px;
    perspective: 2000px;
}

.mockup-img {
    max-width: 1100px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transform: rotateX(10deg) translateY(0);
    transition: var(--transition);
    border: 8px solid rgba(255, 255, 255, 0.5);
}

.mockup-img:hover {
    transform: rotateX(0deg) translateY(-20px);
}

/* --- Features --- */
.features {
    background: var(--bg-light);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

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

.feature-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(var(--secondary-rgb), 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 32px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-10deg) scale(1.1);
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 24px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 17px;
}

/* --- Benefits Section with Alternating Layout --- */
.benefit-row {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 140px;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-img {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 12px solid var(--white);
}

.benefit-img img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.benefit-img:hover img {
    transform: scale(1.05);
}

.benefit-content {
    flex: 1;
}

.benefit-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.benefit-list i {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* --- Stats --- */
.stats {
    background: var(--secondary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item h2 {
    font-size: 64px;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 850;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Pricing Section --- */
.pricing {
    background-color: var(--bg-light);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pricing-info h2 {
    font-size: 56px;
    margin-bottom: 32px;
}

.pricing-info p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

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

.pricing-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.p-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow);
    flex-shrink: 0;
    font-size: 20px;
}

.p-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.p-text p {
    font-size: 15px;
    margin-bottom: 0;
}

.pricing-card-wrap {
    position: relative;
}

.pricing-card {
    background: var(--white);
    border-radius: 40px;
    padding: 70px 50px 50px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(var(--secondary-rgb), 0.05);
}

.card-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    margin: -70px -50px 50px;
    padding: 70px 50px 50px;
    color: white;
    text-align: center;
    position: relative;
}

.card-top::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.special-label {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
}

.price-main {
    font-size: 96px;
    font-weight: 900;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1;
}

.price-main span {
    font-size: 44px;
    font-weight: 700;
}

.price-real {
    color: var(--text-muted);
    font-size: 26px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.price-real span {
    text-decoration: line-through;
    font-weight: 800;
    font-size: 36px;
    color: #ef4444;
}

.pricing-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.p-badge {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
}

.p-badge:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.p-badge i {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 24px;
}

.p-badge span {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}

.offer-ribbon {
    position: absolute;
    top: 40px;
    right: -50px;
    background: #ef4444;
    color: white;
    padding: 12px 100px;
    transform: rotate(45deg);
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    z-index: 10;
    letter-spacing: 1px;
}

.save-badge {
    position: absolute;
    top: 190px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
    z-index: 11;
    border: 4px dashed rgba(255,255,255,0.4);
    animation: float 3s ease-in-out infinite;
}

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

.save-badge span {
    font-size: 14px;
    opacity: 0.9;
}

.trusted-tag {
    background: #fbbf24;
    color: var(--secondary);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* --- CTA Section --- */
.cta-section {
    padding: 140px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    padding: 100px 60px;
    border-radius: 48px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-card h2 {
    color: white;
    font-size: 56px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 22px;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-card .hero-btns {
    position: relative;
    z-index: 1;
}

/* --- Footer --- */
footer {
    padding: 100px 0 60px;
    background: #0f172a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 32px;
    font-size: 32px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 350px;
    font-size: 17px;
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    margin-bottom: 32px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 15px;
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .pricing-grid {
        gap: 40px;
    }
    .hero h1 {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 48px;
    }
    .hero p {
        font-size: 18px;
    }
    .benefit-row {
        flex-direction: column !important;
        gap: 60px;
    }
    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--secondary);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        display: block;
        text-align: center;
        width: 100%;
    }
    .cta-card {
        padding: 60px 32px;
    }
    .cta-card h2 {
        font-size: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-card .hero-btns {
        flex-direction: column !important;
        width: 100%;
        gap: 12px !important;
    }
    .cta-card .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 16px !important;
    }
}

/* Floating Language Button */
.floating-lang-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-lang-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5);
}

/* Hide Google Translate Top Bar & Tooltips */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
