:root {
    /* Serverspot Brand Colors */
    --color-primary: #003D6B;
    --color-primary-dark: #002a4d;
    --color-primary-light: #0066b3;
    --color-secondary: #003D6B;
    --color-secondary-dark: #002a4d;
    --color-accent: #0066b3;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --starter-color: #0ea5e9;
    --advanced-color: #6366f1;
    --pro-color: #16a34a;
    --starter-bg: #f8f8ff;
    --advanced-bg: #eef2ff;
    --pro-bg: #ecfdf5;
    --professional-bg: #E3E7FE;
    --professional-color: #1B4AA2;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #003D6B 0%, #0066b3 100%);
    --gradient-light: linear-gradient(135deg, #e6f0f7 0%, #f0f7ff 100%);
}

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

body {
    font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
    background: #f5f7f9;
}

/* ===============================
   HEADER / NAVBAR
================================ */
header {
    position: fixed;
    top: 1.2rem;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

nav {
    pointer-events: auto;
    max-width: 1100px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(18, 20, 28, 0.78), rgba(12, 13, 20, 0.65));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 0 1.4rem;
    border: 1px solid #00D37F;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 160px;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, rgba(10, 34, 57, 0.95), rgba(7, 22, 38, 0.95));
    color: #e6f6ff;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 18px rgba(2, 22, 40, 0.6), inset 0 -2px 0 rgba(255, 255, 255, 0.02);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-btn .icon {
    display: none;
}

.mobile-menu-btn .icon.active {
    display: block;
}
/* ===============================
   HERO SECTION (IMAGE + OVERLAY)
================================ */
.hero {
    min-height: 100vh;
    padding: 9rem 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('/assets/images/hero-img.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    color: #ddf0df;
    filter: grayscale(60%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
    opacity: 0.35;
    animation: float 25s linear infinite;
    mix-blend-mode: overlay;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
    padding-left: 2rem;
}


.hero-badge {
    display: inline-block;
    background: rgba(191, 188, 188, 0.08);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(8px);
    color: #f7fbff;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

span.ssh-btn {
    display: inline-block;
    background: #003D6B;
    padding: 0.15rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
    color: #f7fbff;
    border: 1px solid rgba(255, 255, 255, 0.04);
}


.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    line-height: 1.02;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    letter-spacing: -0.6px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-highlight {
    background: var(--pill-blue);
    color: #06202a;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    display: inline-block;
    font-weight: 700;
    transform: translateY(6px);
    box-shadow: 0 18px 30px rgba(14, 165, 233, 0.16);
}

.hero .hero-em {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.98);
    display: inline-block;
    margin-top: 6px;
}

.hero p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 560px;
}

.meta-pill {
    display: inline-block;
    background: rgba(14, 165, 233, 0.12);
    color: var(--color-primary);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-top: 0.6rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.btn-hero {
    padding: 0.55rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(.2, .9, .3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #ffffff;
}

.btn-hero-primary {
    background: #014751;
    color: white;
    box-shadow: 0 14px 35px rgba(0, 61, 107, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid #00D37F;
}

.btn-hero .icon {
    display: inline-block;
    transform: translateX(0);
    transition: transform .22s;
}

.btn-hero-primary:hover .icon {
    transform: translateX(6px);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* ===============================
   DASHBOARD PREVIEW
================================ */
/* .hero-image {
    margin-top: 4rem;
}

.dashboard-preview {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    border: 4px solid rgba(255,255,255,0.08);
}

.mock-browser {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.browser-header {
    background: #f0f0f0;
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

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

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.dashboard-content {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    color: white;
}

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

.stat-card {
    background: rgba(255,255,255,0.12);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
} */

/* ===============================
   ANIMATIONS
================================ */
@keyframes float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-120px) rotate(360deg);
    }
}

/* ===============================
   Features Section
================================ */
.features {

    padding: 6rem 2rem;
}

.section-divider {
    height: 40px;
    background: linear-gradient(135deg, #003D6B 0%, #0066b3 100%);
    margin-bottom: 30px;
}

.features-header {
    text-align: center;
    margin-bottom: 35px;
}

.features-header h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.features-header p {
    font-size: 1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

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

.feature-card {
    background: white;
    min-height: 220px;
    border-radius: 18px;
    padding: 25px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.feature-content h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   Use Cases Cards (Built for...)
================================ */

.use-cases {
    background: #DEF0F9;
    padding: 80px 40px;
}

.use-cases-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.use-cases-header {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.3;
    max-width: 400px;
}

.boomger-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    margin-top: 8px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.use-case {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.use-case-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.use-case h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.use-case p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* ===============================
   CTA SECTION
================================ */
.cta {
    background: #014751;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: rotate 60s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}


footer {
    background: #1A202C;
    color: white;
    padding: 0;
}

.footer-newsletter {
    background: #1A202C;
    padding: 60px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.05rem;
    color: #b8c5d6;
    line-height: 1.6;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    min-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 16px 35px;
    background: #003D6B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    color: #003D6B;
    background-color: #ffffff;
    border: 2px solid #003D6B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 107, 0.3);
}

.footer-main {
    padding: 70px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #00D37F;
}

.footer-section a {
    display: block;
    color: #b8c5d6;
    text-decoration: none;
    margin-bottom: 18px;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: #00D37F;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 30px;
}

.social-label {
    font-size: 1.1rem;
    color: #b8c5d6;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #0066b3;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* ==============================
    PRICING PAGE STYLINGS 
================================ */
.pricing-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.pricing-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4.5rem;
}

.pricing-header h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-header p {
    color: #64748b;
    margin-top: 1rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    font-weight: 400;
}

.pricing-toggles {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.toggle {
    display: inline-flex;
    background: #e2e8f0;
    border-radius: 50px;
    padding: 0.35rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.toggle button {
    border: none;
    background: transparent;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    position: relative;
}

.toggle button:hover {
    color: #1e293b;
}

.toggle button.active {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.pricing-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--starter-color), var(--advanced-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.1);
}

.plan-starter {
    background: linear-gradient(180deg, var(--starter-bg) 0%, #ffffff 30%);
    border: 2px solid rgba(14, 165, 233, 0.15);
}

.plan-starter::before {
    background: var(--starter-color);
}

.plan-starter h3 {
    color: var(--starter-color);
}

.plan-starter .amount {
    color: var(--starter-color);
}

.plan-starter .cta-btn {
    background: var(--starter-color);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

.plan-starter .cta-btn:hover {
    background: #0284c7;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.plan-advanced {
    background: linear-gradient(180deg, var(--advanced-bg) 0%, #ffffff 30%);
    border: 2px solid rgba(99, 102, 241, 0.15);
}

.plan-advanced::before {
    background: var(--advanced-color);
}

.plan-advanced h3 {
    color: var(--advanced-color);
}

.plan-advanced .amount {
    color: var(--advanced-color);
}

.plan-advanced .cta-btn {
    background: var(--advanced-color);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
}

.plan-advanced .cta-btn:hover {
    background: #4f46e5;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}
.plan-professional {
    background: linear-gradient(135deg, #E3E7FE 0%, #F0F4FF 100%);
    border: 2px solid var(--professional-color);
}

.plan-professional::before {
    background: var(--professional-color);
    opacity: 1;
}

.plan-professional h3 {
    color: var(--professional-color);
}

.plan-professional .amount {
    color: var(--professional-color);
}

.plan-professional .users {
    color: #475569;
}

.plan-professional .cta-btn {
    background: var(--professional-color);
    box-shadow: 0 4px 14px rgba(27, 74, 162, 0.25);
}

.plan-professional .cta-btn:hover {
    background: #153a7f;
    box-shadow: 0 6px 20px rgba(27, 74, 162, 0.35);
}
.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.featured:hover {
    transform: translateY(-12px) scale(1.07);
}

.pricing-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.users {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0.5rem 0 2rem;
    font-weight: 500;
}

.price {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.currency {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    vertical-align: super;
    margin-top: 0.5rem;
}

.amount {
    font-size: clamp(3rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.duration {
    color: #94a3b8;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    text-align: left;
}

.features li {
    margin-bottom: 1rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}
.features li::before {
    content: "✓";
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-success);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin-top: 2px;
}
.cta-btn {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn:active {
    transform: translateY(0);
}

.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}
/* Billing dropdown */
.billing-currency-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.billing-tabs {
    display: inline-flex;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    overflow: hidden;
}
.billing-tabs .tab {
    padding: 10px 25px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.billing-tabs .tab:hover {
    background: #cce5e5;
}
.billing-tabs .tab.active {
    background: #0F766E;
    color: #fff;
    font-weight: 600;
}
.billing-tabs .tab .save-badge {
    display: inline-block;
    background: #10b981;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
}
.billing-tabs .tab.active .save-badge {
    background: #fff;
    color: #0F766E;
}
/* Pricing styling ends here */

/* =========================
    Enterprise Modal Styling 
========================== */

.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.custom-modal-content {
    background: #0f3f1f;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    animation: fadeIn 0.25s ease-in-out;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    color: #b7ffb7;
}

.tip-header i {
    font-size: 18px;
}

.tip-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.tip-text > strong{
    color: #b7ffb7;
}


.tip-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.contact-btn {
    background: #1db954;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.contact-btn:hover {
    background: #17a64a;
}

.close-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
    background: rgba(255,255,255,0.1);
}

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

/* ================================
   WAITLIST SECTION
================================ */

.waitlist-section {
    padding: 5rem 1.25rem;
    background: linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );
}
.waitlist-card {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.08),
        0 4px 10px rgba(15, 23, 42, 0.04);
}
.waitlist-header {
    text-align: center;
    margin-bottom: 2rem;
}

.waitlist-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.waitlist-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.waitlist-header p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: #334155;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.7rem 0.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #475569;
}
.checkbox-group input {
    margin-top: 0.25rem;
}
.btn-primary {
    background: #003D6B;
    color: #fff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
    background: #ffffff;
    border: 1px solid #003D6B;
    color: #003D6B;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 61, 107, 0.25);
}

.btn-block {
    width: 100%;
}

.form-footnote {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.75rem;
}
/* Waitlist styling ends here */


/* =============================
    END OF LANDING PAGE STYLES
=============================*/

/* ==============================
    SIGNIN PAGES STYLES
=============================== */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #003D6B;
}
.auth-left {
    flex: 1;
    background: linear-gradient(180deg, #003d6b 0%, #00284a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 60px;
    color: white;
    position: relative;
}
.auth-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 100, 200, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.brand-content {
    position: relative;
    z-index: 1;
    max-width: 450px;
    width: 100%;
}

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

.logo-section img {
    max-width: 300px;
    width: 100%;
    height: auto;
}
.tagline {
    font-size: 19px;
    line-height: 1.4;
    text-align: center;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}
.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #f5f7fa;
}
.auth-card {
    background: white;
    border-radius: 24px;
    padding: 48px 56px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.auth-header {
    margin-bottom: 32px;
}
.auth-header h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f1419;
    letter-spacing: -0.5px;
}

.auth-header .subtitle {
    color: #5f6368;
    font-size: 15px;
    line-height: 1.5;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-social {
    padding: 13px 20px;
    border: 1.5px solid #dadce0;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #3c4043;
    text-decoration: none;
}

.btn-social:hover {
    border-color: #9aa0a6;
    background: #fafbfc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-social svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e7eb;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
    background: #fff;
    padding: 0 12px;
    font-size: 12px;
    color: #6b7280;
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dadce0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
    color: #202124;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #003d6b;
    box-shadow: 0 0 0 3px rgba(0, 61, 107, 0.1);
}

.form-group input::placeholder {
    color: #9aa0a6;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #5f6368;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #202124;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #003d6b;
}

.remember-me span {
    color: #3c4043;
    font-size: 14px;
}

/* ===================
    Forgot Password styling part
====================== */

.forgot-password {
    color: #003d6b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #002a4d;
    text-decoration: underline;
}
/* ===================
    End Forgot Password styling part
====================== */
.btn-signin {
    width: 100%;
    padding: 10px;
    background: #003d6b;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.btn-signin:hover {
    background: #002a4d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 61, 107, 0.3);
}

.btn-signin:active {
    transform: translateY(0);
}

.signup-link {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #5f6368;
}

.signup-link a {
    color: #003d6b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.signup-link a:hover {
    color: #002a4d;
    text-decoration: underline;
}

.is-invalid {
    border-color: #d93025 !important;
}

.invalid-feedback {
    display: block;
    color: #d93025;
    font-size: 13px;
    margin-top: 6px;
}

/* ==============================
    SIGNUP PAGES STYLES
=============================== */
.auth-split {
    display: flex;
    min-height: 100vh;
    background: #003D6B;
}

.auth-left {
    width: 40%;
    background: linear-gradient(160deg, #003D6B, #002a4d);
    color: #fff;
    padding: 70px;
    display: flex;
    align-items: center;
}

.auth-left-inner {
    max-width: 420px;
}

.auth-left p {
    font-size: 18px;
    line-height: 1.6;
    opacity: .9;
}

.auth-left img.illustration {
    width: 100%;
    max-width: 520px;
    height: auto;
}

.auth-right {
    width: 60%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.auth-card {
    width: 100%;
    max-width: 540px;
    background: #fff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.social-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-social {
    flex: 1;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-social:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}
.btn-social svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

.btn-social span {
    line-height: 1;
    white-space: nowrap;
}

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

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e7eb;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
    background: #fff;
    padding: 0 12px;
    font-size: 12px;
    color: #6b7280;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-col {
    flex: 1;
}

.form-control-lg {
    height: 48px;
    border-radius: 10px;
}

.btn-primary {
    background: #003D6B;
    border: none;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
}

/* ===================
    Reset Password styling part
====================== */
.otp-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}
.otp-group input {
    width: 48px;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #94a3b8;
    text-align: center;
    font-size: 18px;
}
.timer {
    text-align: right;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 25px;
}
.btn-verify {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background: #003D6B;
    color: #fff;
    font-weight: 600;
}
.btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* =============================
    MOBILE RESPONSIVE
============================== */
@media (min-width: 1400px) {
    .pricing-grid {
        gap: 3rem;
    }
    
    .pricing-card {
        padding: 3.5rem 3rem;
    }
}
@media (max-width: 1200px) {
    nav {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: #002a4d;
        flex-direction: column;
        align-items: flex-start;

        padding: 0 1.5rem;
        gap: 1rem;

        /* CRITICAL PART */
        display: flex;
        max-height: 0;
        overflow: hidden;

        opacity: 0;
        transform: translateY(-10px);

        transition:
            max-height 0.4s ease,
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1.5rem;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        font-size: 1rem;
    }
    .use-cases-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .use-cases-header {
        text-align: center;
        align-items: center;
    }

    .section-subtitle {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .boomger-image {
        max-width: 350px;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content p {
        margin: 0 auto;
    }

    .newsletter-form {
        min-width: 100%;
        max-width: 600px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
     .auth-left {
        padding: 50px 60px;
    }

    .logo-section img {
        max-width: 250px;
    }

    .tagline {
        font-size: 17px;
    }

    .auth-card {
        padding: 40px 44px;
    }

    .auth-header h2 {
        font-size: 30px;
    }
    .pricing-section {
        padding: 5rem 2rem;
    }
    
    .pricing-grid {
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
}


@media (max-width: 992px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        flex: 1;
    }
     .pricing-section {
        padding: 4rem 1.5rem;
    }
    
    .pricing-header {
        margin-bottom: 3.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .featured {
        transform: scale(1);
    }
    
    .featured:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

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

    .features-header h3 {
        font-size: 2rem;
    }

    .features {
        padding: 40px 20px;
    }
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.6rem);
    }

    .hero-highlight {
        transform: translateY(3px);
        padding: 0.35rem 0.9rem;
    }

    .hero-content {
        padding-left: 1rem;
    }
    .auth-wrapper {
        flex-direction: column;
    }

    .auth-left, .auth-right {
        width: 100%;
        border-radius: 0;
    }

    .auth-illustration {
        max-width: 360px;
    }
}

@media (max-width: 880px) {
    nav {
        padding: 0 1rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .auth-wrapper {
        flex-direction: column;
    }

    .auth-left {
        flex: 0 0 auto;
        min-height: 40vh;
        padding: 40px 30px;
    }

    .logo-section {
        margin-bottom: 20px;
    }

    .logo-section img {
        max-width: 200px;
    }

    .tagline {
        font-size: 15px;
    }

    .auth-right {
        flex: 1;
        padding: 30px 20px;
    }

    .auth-card {
        padding: 32px 28px;
        border-radius: 20px;
    }

    .auth-header h2 {
        font-size: 28px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .logo-image {
        height: 50px;
        max-width: 200px;
    }

    .stat-card {
        padding: 1rem;
    }

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

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

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

    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .use-case {
        padding: 2rem 1.5rem;
    }

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

    .cta p {
        font-size: 1.1rem;
    }

    .use-cases {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .boomger-image {
        max-width: 280px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case {
        padding: 30px 25px;
    }

    .use-case h3 {
        font-size: 1.5rem;
    }

    .footer-newsletter {
        padding: 40px 20px;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

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

    .newsletter-form button {
        width: 100%;
    }

    .footer-main {
        padding: 50px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
    }
     .pricing-section {
        padding: 3rem 1rem;
    }
    
    .pricing-header {
        margin-bottom: 2.5rem;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .featured {
        order: -1;
        transform: scale(1);
    }
    
    .pricing-card:hover {
        transform: translateY(-6px) scale(1);
    }
    .auth-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background: #ffffff;
    }
}

@media (max-width: 640px) {
    .features-header h3 {
        font-size: 1.75rem;
    }

    .features-header p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-content h3 {
        font-size: 1.25rem;
    }

    .pricing-section {
        padding: 2.5rem 1rem;
    }
    
    .pricing-header {
        margin-bottom: 2rem;
    }
    
    .pricing-header h1 {
        font-size: 1.75rem;
    }
    
    .pricing-header p {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .users {
        margin: 0.5rem 0 1.5rem;
        font-size: 0.9rem;
    }
    
    .price {
        margin-bottom: 2rem;
    }
    
    .amount {
        font-size: 2.75rem;
    }
    
    .currency {
        font-size: 1.25rem;
    }
    
    .features li {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }
    
    .cta-btn {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        top: -14px;
    }
     .waitlist-card {
        padding: 2rem 1.5rem;
    }

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

    .waitlist-header h2 {
        font-size: 1.5rem;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-image {
        max-width: 180px;
        height: 120px;
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .auth-left {
        min-height: 35vh;
        padding: 30px 20px;
    }

    .logo-section img {
        max-width: 180px;
    }

    .tagline {
        font-size: 14px;
        line-height: 1.6;
    }

    .auth-right {
        padding: 20px 16px;
    }

    .auth-card {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .auth-header h2 {
        font-size: 26px;
    }

    .auth-header .subtitle {
        font-size: 14px;
    }

    .btn-social {
        padding: 12px 16px;
        font-size: 13px;
    }

    .form-group input[type="text"],
    .form-group input[type="password"] {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn-signin{
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .auth-left {
        padding: 24px 16px;
        min-height: 30vh;
    }

    .logo-section img {
        max-width: 160px;
    }

    .tagline {
        font-size: 13px;
    }

    .auth-card {
        padding: 24px 20px;
    }

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

    .btn-social {
        font-size: 12px;
        padding: 11px 14px;
    }

    .btn-social svg {
        width: 18px;
        height: 18px;
    }
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .features li {
        font-size: 0.875rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        top: 3px;
    }
}