:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --secondary: #60a5fa;
    --dark: #f8fafc;
    --darker: #f1f5f9;
    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --bg-color: #0f172a;
    --white: #1e293b;
    --border: #334155;
    scroll-behavior: smooth;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
    --gradient-secondary: linear-gradient(135deg, #4facfe 0%, #60a5fa 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -5px rgba(37, 99, 235, 0.08);
    --shadow-lg: 0 25px 40px -10px rgba(37, 99, 235, 0.15);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);
}

.res-box {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-app {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

.base-heading {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.base-a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.base-ul {
    list-style: none;
}

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

/* Utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

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

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-12 {
    padding: 3rem;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-xl {
    font-size: 1.25rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-white {
    color: #fff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-green-500 {
    color: #10b981;
}

.bg-dark {
    background-color: var(--dark);
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-3xl {
    border-radius: 24px;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.border-t {
    border-top: 1px solid;
}

.border-gray-800 {
    border-color: #1f2937;
}

.mt-12 {
    margin-top: 3rem;
}

.pt-8 {
    padding-top: 2rem;
}

.text-sm {
    font-size: 0.875rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-bg {
    background: var(--gradient-primary);
    color: white;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.rounded-img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 200px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

/* Shine Effect for Buttons */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shine-effect:hover::after {
    transform: rotate(30deg) translate(800%, 0);
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo.white-logo {
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--text);
    font-size: 15px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-btn,
.cart-btn {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.cart-btn {
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
}

.cart-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    position: relative;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 50%, #020617 100%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #38bdf8;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #60a5fa;
    top: 50%;
    left: 20%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.savings-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    animation: fadeInDown 0.8s ease;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 0 rgba(56, 189, 248, 0.4);
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.pricing-display {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    color: var(--dark);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.currency {
    font-size: 28px;
    font-weight: 800;
    margin-top: 10px;
}

.price {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.period {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 15px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45px;
}

.time-box span {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.time-box label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.colon {
    font-size: 32px;
    font-weight: 800;
    color: #cbd5e1;
    margin-top: -20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    padding: 18px 48px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-decoration: none;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 35px rgba(56, 189, 248, 0.3);
    color: var(--white);
}

.guarantee {
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.guarantee i {
    color: #10b981;
    font-size: 18px;
}

/* Hero Image & Mockup */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 10;
    animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.mockup-window {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.4);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.7);
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f56;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #27c93f;
}

.img-body {
    padding: 10px;
    position: relative;
}

.dashboard-img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.floating-badge {
    position: absolute;
    padding: 12px 24px 12px 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.9);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.gradient-1 {
    background: var(--gradient-primary);
}

.gradient-2 {
    background: var(--gradient-secondary);
}

.badge-1 {
    top: 15%;
    right: -30px;
    animation: float 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    left: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

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

.section-top {
    margin-bottom: 70px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--white);
    border: 1px solid var(--border);
    z-index: 1;
}

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

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-1 {
    background: rgba(37, 99, 235, 0.2);
    top: 0;
    right: 0;
}

.glow-2 {
    background: rgba(56, 189, 248, 0.2);
    top: 0;
    right: 0;
}

.glow-3 {
    background: rgba(0, 242, 254, 0.2);
    top: 0;
    right: 0;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Split Section */
.split-section {
    padding: 120px 0;
    background: var(--bg-color);
}

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

.rotate-hover {
    transition: transform 0.5s ease;
}

.rotate-hover:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.02);
}

.feature-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feat-li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.feat-li .feat-icon {
    font-size: 20px;
}

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

.pricing-cards.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 60px auto 0;
    gap: 40px;
}

.plan-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--white);
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.highlighted {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient-primary) border-box;
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    z-index: 10;
}

.premium-glow {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.1);
    top: -50px;
    right: -50px;
    filter: blur(60px);
    opacity: 1;
    z-index: -1;
}

.most-popular {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.plan-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.plan-header p {
    color: var(--text-muted);
    font-size: 16px;
    min-height: 48px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.discounted-price {
    font-size: 56px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -2px;
}

.discounted-price.gradient-text {
    font-size: 64px;
}

.regular-price del {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text);
    margin-top: 20px;
}

.plan-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.plan-btn.primary {
    border: none;
}

.plan-features h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
}

.plan-features .plan-ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.plan-features .plan-li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
}

.plan-features .plan-li .plan-icon {
    margin-top: 4px;
    font-size: 16px;
}

.premium-check {
    color: #2563eb;
}

.bottom-cta {
    position: relative;
    padding: 100px 0;
    background: var(--bg-color);
}

.dark-glass {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

/* Footer */
.modern-footer {
    background: #000000;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #93c5fd;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(147, 197, 253, 0.2);
    color: white;
    transform: translateY(-3px);
}

.footer-links .foot-ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links .foot-a {
    color: #93c5fd;
    /* Light Blue */
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links .foot-a:focus,
.footer-links .foot-a:hover {
    color: white;
    padding-left: 5px;
}

.legal-links a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 56px;
    }

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

    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .pricing-cards.three-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        transition: all 0.3s ease;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 16px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 32px;
    }

    .countdown {
        padding: 12px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards.three-columns {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .contact-wrapper {
        padding: 30px 20px;
        gap: 30px;
    }

    .contact-info {
        gap: 20px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .info-item i {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .footer-brand p {
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-top: 30px;
    }

    .legal-links {
        justify-content: center;
        width: 100%;
        gap: 24px !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .modal-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .features-grid,
    .pricing-cards.three-columns {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Login Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Semi-transparent dark background */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 32px;
    margin: 0;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: white;
}

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

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 18px;
}

.input-wrapper input {
    width: 100%;
    background: rgba(15, 23, 42, 0.5);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px 14px 48px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.toggle-password {
    position: absolute;
    right: 16px;
    left: auto !important;
    /* Override the left icon position */
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary);
}

.error-msg {
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    display: none;
}

.form-group.invalid input {
    border-color: #ef4444;
}

.form-group.invalid .error-msg {
    display: block;
}

.forgot-link,
.signup-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.forgot-link:hover,
.signup-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.full-width {
    width: 100% !important;
    margin-top: 10px;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    z-index: 1;
}

.divider span {
    background: #1e293b;
    padding: 0 16px;
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.social-btn img {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.modal-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    padding: 60px;
    border-radius: var(--radius-lg);
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.info-item h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-form-static {
    flex: 1.5;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.contact-form-static textarea {
    width: 100%;
    min-height: 150px;
    background: rgba(15, 23, 42, 0.5);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px 14px 48px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    resize: vertical;
    transition: all 0.3s ease;
}

.contact-form-static textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    width: 100%;
}

.mobile-link {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.login-mobile {
    color: var(--primary);
    margin-top: 20px;
    padding: 16px 40px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 20px;
    display: inline-block;
}

.mobile-menu-btn i {
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    /* Above overlay */
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
    }
}