/* BUNDLED CSS - GENERATED BY BUNDLE_CSS.PS1 - DO NOT EDIT DIRECTLY */

/* --- Start: variables.css --- */
:root {
    /* Color Palette - Modern Premium Dark/Light UI Support */
    --color-primary: #3b82f6;
    /* Modern Blue */
    --color-primary-hover: #2563eb;

    /* Surface Colors (Light Mode) */
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-border: #e2e8f0;

    /* Text Colors */
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-12: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
}

/* Optional Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #0f172a;
        --color-surface: #1e293b;
        --color-border: #334155;

        --color-text-main: #f8fafc;
        --color-text-muted: #94a3b8;
    }
}

/* --- End: variables.css --- */

/* --- Start: reset.css --- */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- End: reset.css --- */

/* --- Start: typography.css --- */
body {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: var(--spacing-4);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin-bottom: var(--spacing-4);
    color: var(--color-text-muted);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- End: typography.css --- */

/* --- Start: layout.css --- */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
    max-width: 1200px;
    /* Max width for large screens */
}

/* Page Layout */
.page-content {
    min-height: calc(100vh - 80px);
    /* Assuming navbar is ~80px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--spacing-12);
    padding-bottom: var(--spacing-12);
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

/* --- End: layout.css --- */

/* --- Start: utilities.css --- */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

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

.badge {
    display: inline-block;
    padding: var(--spacing-1) var(--spacing-3);
    background-color: rgba(59, 130, 246, 0.1);
    /* Primary with opacity */
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-6);
}

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

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

/* Add more utility classes as needed: margins, paddings, displays */
.mt-4 {
    margin-top: var(--spacing-4);
}

.mb-4 {
    margin-bottom: var(--spacing-4);
}

/* --- End: utilities.css --- */

/* Components */
/* --- Start: components/button.css --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2) var(--spacing-6);
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-main);
}

.btn-outline:hover {
    background-color: var(--color-surface);
    border-color: var(--color-text-muted);
}

/* --- End: components/button.css --- */

/* --- Start: components/navbar.css --- */
.navbar {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: var(--spacing-4) 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
}

.nav-link {
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text-main);
}

/* --- End: components/navbar.css --- */

/* --- Start: components/auth-forms.css --- */
/* Authentication Form Components */

.auth-page-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    /* minus nav height */
}

.auth-form-box {
    width: 100%;
    margin-top: calc(-1 * var(--spacing-12));
    /* Shift up slightly for better visual balance */
    max-width: 440px;
    background-color: var(--color-surface);
    padding: var(--spacing-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.auth-title {
    margin-bottom: var(--spacing-2);
    font-size: 1.8rem;
}

.auth-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-4);
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-2);
    color: var(--color-text-main);
}

.form-control {
    padding: var(--spacing-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg);
    transition: all var(--transition-fast);
    outline: none;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.forgot-link {
    font-size: 0.85rem;
    font-weight: 500;
}

.auth-submit {
    width: 100%;
    margin-top: var(--spacing-2);
    padding: var(--spacing-3);
    font-size: 1rem;
    font-weight: 600;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: var(--spacing-6) 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.auth-divider span {
    padding: 0 var(--spacing-3);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* SSO Buttons */
.sso-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3);
}

.sso-btn {
    width: 100%;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    padding: var(--spacing-2) var(--spacing-3);
}

.sso-btn:hover {
    background-color: var(--color-bg);
    border-color: var(--color-text-muted);
}

.sso-icon {
    width: 18px;
    height: 18px;
    margin-right: var(--spacing-2);
}

.x-icon {
    /* For X.com icon since it has no background color from SVG repo */
    color: var(--color-text-main);
}

.auth-footer {
    font-size: 0.9rem;
}

.auth-footer p {
    margin-bottom: 0;
}

.auth-footer a {
    font-weight: 600;
}

/* Helpers */
.auth-message {
    margin-top: var(--spacing-4);
    font-size: 0.875rem;
    padding: var(--spacing-3);
    border-radius: var(--radius-md);
    text-align: center;
}

.auth-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.auth-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.hide {
    display: none;
}

/* --- End: components/auth-forms.css --- */

/* Premium Landing Page Custom Styles */
/* --- Start: landing.css --- */
/* IELTSSimulator Premium Landing Page Styles */

/* ----------------------------------------------------
   1. CORE VARIABLES, DESIGN TOKENS & KEYFRAMES
   ---------------------------------------------------- */
:root {
    /* Main Theme Palette (Premium SaaS Slate + Vibrant Gradients) */
    --color-primary: #2563EB;
    --color-primary-hover: #1d4ed8;
    --color-primary-glow: rgba(37, 99, 235, 0.15);

    --color-secondary: #7C3AED;
    --color-secondary-hover: #6d28d9;
    --color-secondary-glow: rgba(124, 58, 237, 0.15);

    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    --color-bg: #F8FAFC;

    /* Luxury Glassmorphism Utilities */
    --color-glass-bg: rgba(255, 255, 255, 0.45);
    --color-glass-border: rgba(255, 255, 255, 0.6);
    --color-glass-card-border: rgba(226, 232, 240, 0.8);
    --color-glass-glow-border: rgba(37, 99, 235, 0.2);

    /* Shadow tokens */
    --shadow-premium: 0 10px 40px -10px rgba(15, 23, 42, 0.03), 0 0 1px 0 rgba(15, 23, 42, 0.05);
    --shadow-premium-hover: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    --shadow-glow: 0 15px 30px -8px rgba(37, 99, 235, 0.35), 0 0 15px 2px rgba(124, 58, 237, 0.15);

    /* Sleek Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --grad-text: linear-gradient(135deg, var(--color-text-main) 30%, var(--color-primary) 100%);
    --grad-badge: linear-gradient(90deg, rgba(37, 99, 235, 0.06) 0%, rgba(124, 58, 237, 0.06) 100%);
    --grad-badge-border: linear-gradient(90deg, rgba(37, 99, 235, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%);
    --grad-glow: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.12) 50%, transparent 100%);
}

/* Base resets & typography for landing */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.05) 0px, transparent 40%),
        radial-gradient(at 100% 0%, rgba(124, 58, 237, 0.05) 0px, transparent 40%),
        radial-gradient(at 50% 50%, rgba(37, 99, 235, 0.03) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(124, 58, 237, 0.04) 0px, transparent 40%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: var(--color-text-main);
    overflow-x: hidden;
    position: relative;
    letter-spacing: -0.01em;
}

/* ----------------------------------------------------
   2. DYNAMIC AMBIENT LIGHTS & FLOATING ELEMENTS
   ---------------------------------------------------- */
.glow-blob-1,
.glow-blob-2,
.glow-blob-3 {
    position: absolute;
    border-radius: 50%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.8;
}

.glow-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    filter: blur(120px);
    animation: floatBlob1 25s infinite alternate ease-in-out;
}

.glow-blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
    top: 250px;
    right: -250px;
    filter: blur(130px);
    animation: floatBlob2 30s infinite alternate-reverse ease-in-out;
}

.glow-blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: 20%;
    filter: blur(110px);
    animation: floatBlob1 28s infinite alternate ease-in-out 3s;
}

@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 60px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1.05);
    }

    50% {
        transform: translate(-60px, -40px) scale(0.9);
    }

    100% {
        transform: translate(30px, 50px) scale(1.15);
    }
}

/* Subtle Floating Background IELTS Modules */
.floating-bg-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 9999px;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.bg-item-listening {
    top: 15%;
    left: 6%;
    animation: floatSin 14s infinite ease-in-out;
}

.bg-item-reading {
    top: 55%;
    left: 4%;
    animation: floatSin 18s infinite ease-in-out 1.5s;
}

.bg-item-writing {
    top: 40%;
    right: 5%;
    animation: floatSin 16s infinite ease-in-out 3s;
}

.bg-item-speaking {
    top: 82%;
    left: 12%;
    animation: floatSin 20s infinite ease-in-out 0.5s;
}

@keyframes floatSin {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

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

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

/* ----------------------------------------------------
   3. STICKY NAVBAR (GLASSMORPHISM WITH SATURATION)
   ---------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    padding: 0.85rem 0;
    background: rgba(248, 250, 252, 0.85);
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

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

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.logo:hover {
    transform: scale(1.01);
}

.logo span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    text-decoration: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width 0.25s ease;
    border-radius: 99px;
}

.nav-link:hover {
    color: var(--color-text-main);
}

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

/* Custom pills buttons on Nav */
.btn-nav-help {
    background: rgba(124, 58, 237, 0.07) !important;
    color: var(--color-secondary) !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    padding: 0.5rem 1.35rem !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none;
}

.btn-nav-help:hover {
    background: var(--color-secondary) !important;
    color: white !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 15px rgba(124, 58, 237, 0.2);
    border-color: var(--color-secondary) !important;
}

.btn-nav-start {
    background: var(--grad-primary);
    color: white !important;
    padding: 0.6rem 1.6rem !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px -3px rgba(37, 99, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    text-decoration: none;
}

.btn-nav-start:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px -3px rgba(37, 99, 235, 0.4), 0 0 12px 1px rgba(124, 58, 237, 0.18);
}

.mobile-menu-btn {
    display: none;
    background: var(--color-glass-bg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.55rem;
    border-radius: 10px;
    cursor: pointer;
    color: var(--color-text-main);
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(15, 23, 42, 0.05);
}

/* ----------------------------------------------------
   4. HERO SECTION (2 COLUMNS & HIGH END ILLUSTRATIONS)
   ---------------------------------------------------- */
.hero-container {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 4.5rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding-top: 140px;
    padding-bottom: 70px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Glowing Pulsing Badge above Heading */
.badge-container {
    display: inline-flex;
    align-items: center;
    padding: 1px;
    background: var(--grad-badge-border);
    border-radius: 9999px;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 15px -3px rgba(37, 99, 235, 0.05);
    animation: badgePulse 3.5s infinite alternate ease-in-out;
}

.animated-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 9999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary);
    animation: blinkDotRing 1.8s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.06);
    }

    100% {
        box-shadow: 0 0 15px 4px rgba(124, 58, 237, 0.16);
    }
}

@keyframes blinkDotRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Visually Strong Headings */
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 4.6vw, 3.95rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--color-text-main);
    margin-bottom: 1.4rem;
    text-align: left;
}

.hero-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(124, 58, 237, 0.08);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 590px;
    margin-bottom: 2.5rem;
    text-align: left;
}

/* CTA buttons with gradient color & scale */
.hero-actions {
    display: flex;
    gap: 1.15rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-btn-primary {
    background: var(--grad-primary);
    color: white !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 9999px;
    padding: 1.05rem 2.4rem;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 10px 25px -8px rgba(37, 99, 235, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-primary svg {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-primary:hover {
    transform: translateY(-2px) scale(1.025);
    box-shadow: var(--shadow-glow);
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text-main) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 9999px;
    padding: 1.05rem 2.4rem;
    font-size: 1.05rem;
    border: 1px solid var(--color-glass-card-border);
    box-shadow: 0 4px 15px -3px rgba(15, 23, 42, 0.02);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn-secondary:hover {
    transform: translateY(-2px) scale(1.025);
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 10px 22px -10px rgba(15, 23, 42, 0.08);
}

/* Right Device illustration column styling */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--grad-glow);
    filter: blur(60px);
    z-index: -1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 490px;
    perspective: 1200px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow:
        0 30px 70px -15px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(15, 23, 42, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: floatDashboard 8s ease-in-out infinite;
}

.hero-image-wrapper:hover .hero-image {
    transform: translateY(-6px) rotateX(1.5deg) rotateY(-1.5deg);
    box-shadow:
        0 40px 85px -20px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(37, 99, 235, 0.08);
}

@keyframes floatDashboard {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-14px) rotate(0.4deg);
    }

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

/* Premium Floating glass badges around mockup */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 15px 35px -10px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-main);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.floating-card-icon {
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-1 {
    top: 10%;
    left: -14%;
    animation: floatCardSubtle 6s ease-in-out infinite;
}

.floating-card-2 {
    bottom: 22%;
    right: -14%;
    animation: floatCardSubtle 7s ease-in-out infinite 1.5s;
}

.floating-card-3 {
    bottom: -8%;
    left: 8%;
    animation: floatCardSubtle 8s ease-in-out infinite 3s;
}

@keyframes floatCardSubtle {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.02);
    }

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

/* ----------------------------------------------------
   5. TRUST & STATS SECTION (GLASS CONTAINER DESIGN)
   ---------------------------------------------------- */
.stats-section {
    margin-top: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    box-shadow:
        0 20px 50px -15px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.stat-card {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(226, 232, 240, 0.8), transparent);
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.1rem, 3.6vw, 2.9rem);
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.35rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
}

/* ----------------------------------------------------
   6. FEATURES HIGHLIGHTS SECTION
   ---------------------------------------------------- */
.features-section {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.1rem, 3.6vw, 2.6rem);
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1.15rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 26px;
    padding: 2.8rem 2rem;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -15px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Dynamic glowing border accent on card hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px -15px rgba(37, 99, 235, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
}

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

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(124, 58, 237, 0.07) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.85rem;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(6deg);
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px -5px rgba(37, 99, 235, 0.4);
}

.feature-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.95rem;
    letter-spacing: -0.02em;
}

.feature-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ----------------------------------------------------
   7. PREMIUM SAAS FOOTER COMPONENT
   ---------------------------------------------------- */
/* Pre-Footer CTA */
.footer-cta-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

.footer-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(124, 58, 237, 0.05));
    z-index: -1;
}

.footer-cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(79, 70, 229, 0.4);
    color: #ffffff;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #4F46E5 !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1.5px solid rgba(79, 70, 229, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-glass:hover {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.05);
}

/* SaaS Footer */
.footer-saas {
    background: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.footer-saas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(79, 70, 229, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
}

.trust-badge svg {
    color: #7C3AED;
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.3fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-saas-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #0f172a;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.2rem;
    letter-spacing: -0.04em;
}

.footer-saas-logo span {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-saas-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.footer-saas-socials {
    display: flex;
    gap: 0.75rem;
}

.saas-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.saas-social-icon:hover {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2.5px);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.3);
}

.footer-saas-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.footer-saas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-saas-list a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    display: inline-block;
}

.footer-saas-list a:hover {
    color: #4F46E5;
    transform: translateX(2px);
}

.footer-saas-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 100%;
}

.footer-saas-form input {
    flex: 1;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.footer-saas-form input:focus {
    border-color: #4F46E5;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1), inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.footer-saas-form button {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-saas-form button:hover {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    transform: scale(1.02);
}

.btn-whatsapp-support {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.08);
    color: #16a34a;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-size: 0.95rem;
}

.btn-whatsapp-support:hover {
    background: #25D366;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 16px -4px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-info a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: #4F46E5;
}

.footer-contact-info svg {
    color: #94a3b8;
}

.footer-saas-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
    margin: 0 0 2rem 0;
}

.footer-saas-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom-center {
    display: flex;
    gap: 1.75rem;
}

.footer-bottom-center a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-center a:hover {
    color: #4F46E5;
}

.footer-bottom-right {
    font-weight: 500;
}

/* ----------------------------------------------------
   8. ENHANCED LOAD TRANSITIONS (PREMIUM FADE UP)
   ---------------------------------------------------- */
.fade-up-element {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUpIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
    animation-delay: 0.12s;
}

.delay-150 {
    animation-delay: 0.18s;
}

.delay-200 {
    animation-delay: 0.24s;
}

.delay-300 {
    animation-delay: 0.36s;
}

.delay-400 {
    animation-delay: 0.48s;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* ----------------------------------------------------
   9. MOBILE & TABLET RESPONSIVENESS
   ---------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-container {
        gap: 2.5rem;
    }

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

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

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        text-align: center;
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .hero-left {
        align-items: center;
        text-align: center;
    }

    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-card-1 {
        left: -4%;
    }

    .floating-card-2 {
        right: -4%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Controlled by JS active toggle class */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 2.2rem 1.75rem;
        border-bottom: 1.5px solid var(--color-glass-card-border);
        box-shadow: 0 25px 40px rgba(15, 23, 42, 0.08);
        gap: 1.6rem;
        align-items: stretch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav-help,
    .btn-nav-start {
        text-align: center;
        width: 100%;
        padding: 0.75rem !important;
    }

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

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2.2rem 1.5rem;
    }

    .stat-card:not(:last-child)::after {
        display: none;
    }

    .floating-bg-item {
        display: none;
        /* Hide decorative floating elements on mobile for performance */
    }

    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .footer-saas-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-bottom-center {
        flex-direction: column;
        gap: 0.75rem;
    }
}

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

    .hero-title {
        font-size: 2.3rem;
    }

    .floating-card {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .floating-card-1 {
        left: -2%;
        top: 6%;
    }

    .floating-card-2 {
        right: -2%;
        bottom: 24%;
    }
}

/* --- End: landing.css --- */