/* Custom Fonts */
@font-face {
    font-family: 'Croogla';
    src: url('/fonts/Croogla4F-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Eezaly Brand Color Palette */
    --navy: #0a2540;
    --navy-light: #0f3a5f;
    --brand-primary: #003C68;
    --brand-primary-light: #00ABDC;
    --cyan: #00d4ff;
    --blue: #0073e6;
    --teal: #00b8a9;

    /* Keep Eezaly brand colors for accents */
    --primary-color: #003C68;
    --secondary-color: #00ABDC;
    --tertiary-color: #0DA778;
    --primary-dark: #002745;
    --accent-color: #00ABDC;
    --accent-green: #0DA778;

    /* Text colors */
    --text-primary: #0a2540;
    --text-secondary: #425466;
    --text-tertiary: #697386;
    --text-light: #697386;
    --text-on-dark: rgba(255, 255, 255, 0.9);

    /* Background colors */
    --background: #ffffff;
    --surface: #f6f9fc;
    --surface-dark: #0a2540;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);

    /* Premium Mesh Gradients - Eezaly Brand */
    --mesh-gradient-1:
        radial-gradient(at 0% 0%, rgba(0, 60, 104, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 171, 220, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(13, 167, 120, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(10, 37, 64, 0.15) 0px, transparent 50%);

    --mesh-gradient-2:
        radial-gradient(at 27% 37%, rgba(0, 60, 104, 0.2) 0px, transparent 50%),
        radial-gradient(at 97% 21%, rgba(0, 171, 220, 0.2) 0px, transparent 50%),
        radial-gradient(at 52% 99%, rgba(13, 167, 120, 0.2) 0px, transparent 50%),
        radial-gradient(at 10% 29%, rgba(10, 37, 64, 0.15) 0px, transparent 50%);

    --mesh-gradient-hero:
        radial-gradient(at 40% 20%, rgba(0, 60, 104, 0.25) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(0, 171, 220, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(0, 171, 220, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(13, 167, 120, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(10, 37, 64, 0.05) 0px, transparent 50%);

    /* Linear Gradients */
    --primary-gradient: linear-gradient(135deg, #003C68 0%, #00ABDC 50%, #0DA778 100%);
    --gradient-purple: linear-gradient(135deg, #003C68 0%, #00ABDC 100%);
    --gradient-blue: linear-gradient(135deg, #0073e6 0%, #00ABDC 100%);
    --gradient-teal: linear-gradient(135deg, #00b8a9 0%, #0DA778 100%);
    --gradient-navy: linear-gradient(135deg, #0a2540 0%, #0f3a5f 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;

    /* Stripe-inspired section spacing (fluid) */
    --section-padding: clamp(72px, 8vw, 128px);

    /* Fluid Typography - modern approach */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Fluid font sizes that scale smoothly */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.625rem);
    --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3.375rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4.5rem);
    --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 6rem);

    /* Premium Shadows - Layered for depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 2px 4px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-lg:
        0 10px 15px rgba(0, 0, 0, 0.04),
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-xl:
        0 20px 25px rgba(0, 0, 0, 0.06),
        0 10px 10px rgba(0, 0, 0, 0.04),
        0 4px 6px rgba(0, 0, 0, 0.02);
    --shadow-2xl:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 15px 30px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.03);

    /* Stripe-inspired premium shadows */
    --shadow-stripe:
        0 20px 60px rgba(50, 50, 93, 0.18),
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-stripe-lg:
        0 30px 80px rgba(50, 50, 93, 0.22),
        0 15px 40px rgba(0, 0, 0, 0.10),
        0 8px 16px rgba(0, 0, 0, 0.06);

    /* Colored shadows for premium effect */
    --shadow-purple:
        0 20px 40px rgba(0, 171, 220, 0.15),
        0 10px 20px rgba(0, 171, 220, 0.1),
        0 4px 8px rgba(0, 171, 220, 0.08);
    --shadow-blue:
        0 20px 40px rgba(0, 171, 220, 0.15),
        0 10px 20px rgba(0, 171, 220, 0.1),
        0 4px 8px rgba(0, 171, 220, 0.08);

    /* Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Stripe-inspired button radius */
    --radius-stripe: 16.5px;

    /* Transitions - smooth timing */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Croogla', var(--font-family);
    font-weight: 700;
    line-height: 1.1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.navbar,
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all var(--transition-base), background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled,
.navbar-modern.scrolled {
    background: #ffffff !important;
    background-color: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Logo switching */
#whiteLogo {
    display: block;
}

#blackLogo {
    display: none;
}

.navbar.scrolled #whiteLogo {
    display: none;
}

.navbar.scrolled #blackLogo {
    display: block;
}

/* Nav link color changes on scroll */
.navbar.scrolled .navbar-nav .nav-link {
    color: #0a2540;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: #00ABDC;
}

.navbar.scrolled .navbar-nav .nav-link.active {
    background: #00ABDC;
    color: white;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-link-login {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-stripe);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    background: var(--primary-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 14px 0 rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(102, 126, 234, 0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: var(--spacing-xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.hero-note {
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.hero-note p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.compliance-badge {
    display: inline-flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    max-width: 700px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.1);
}

.compliance-badge svg {
    flex-shrink: 0;
    stroke: var(--accent-color);
    margin-top: 0.125rem;
}

.compliance-badge span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--surface);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.step {
    position: relative;
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    background: linear-gradient(white, white) padding-box,
                var(--accent-gradient) border-box;
}

.step-number {
    display: none;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.step-icon svg {
    stroke: var(--primary-color);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9375rem;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-xs);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Pricing */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto var(--spacing-xl);
}

.pricing-card {
    position: relative;
    background: white;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-stripe-lg);
}

.pricing-card.popular {
    border: 2px solid var(--brand-primary);
    box-shadow:
        0 10px 30px rgba(0, 171, 220, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.08);
    background: white;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 60, 104, 0.3);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
}

.pricing-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: var(--spacing-md) 0;
}

.price-currency {
    font-size: 2.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    line-height: 1;
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.3;
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: rgba(102, 126, 234, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.pricing-note p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Why Us */
.why-us {
    padding: var(--spacing-3xl) 0;
    background: var(--surface);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.why-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    border-color: transparent;
    background: linear-gradient(white, white) padding-box,
                var(--accent-gradient) border-box;
}

.why-icon {
    margin-bottom: var(--spacing-md);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-main-title {
    font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-feature-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-cta {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.about-tagline {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.about-page {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.about-hero-compact {
    text-align: center;
    margin-bottom: 4rem;
}

.about-lead {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-main-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-main-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.highlight-box svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.highlight-box.featured {
    background: var(--primary-gradient);
    color: white;
}

.highlight-box.featured h3,
.highlight-box.featured p {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-main-text p {
        font-size: 1.1rem;
    }

    .about-hero-compact {
        margin-bottom: 2rem;
    }
}

/* Contact */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--surface);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    font-size: 1.0625rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: var(--spacing-sm) 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   MODERN CANARY CARE-INSPIRED DESIGN
   ============================================ */

/* Modern Containers */
.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

/* Modern Navigation - Modern Style */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Removed hover state as it was causing issues on mobile touch
.navbar-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}
*/

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-brand img {
    display: block;
    transition: opacity var(--transition-fast);
}

.logo-brand:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.btn-text {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
    font-size: var(--text-sm);
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-primary-modern {
    background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 50%, rgb(13, 167, 120) 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-stripe);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    background-size: 200% 200%;
}

.btn-primary-modern:hover {
    background-position: right center;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 60, 104, 0.05);
    border-radius: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
    display: inline-block;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item .dropdown-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--surface);
    color: var(--brand-primary);
    padding-left: 1.5rem;
}

/* Hero Section - Premium Style */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding-top: 120px;
    padding-bottom: var(--spacing-5xl);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--mesh-gradient-hero);
    pointer-events: none;
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 0;
}

.hero-title-modern {
    font-size: clamp(3.5rem, 7vw + 1rem, 6.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 0.95;
    letter-spacing: -0.025em;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--secondary-color) 50%, var(--tertiary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle-modern {
    font-size: clamp(1.125rem, 1vw + 0.5rem, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-modern {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: linear-gradient(rgb(234, 81, 158), rgb(58, 9, 35));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    background-size: 200% 200%;
    box-shadow:
        0 2px 8px rgba(234, 81, 158, 0.2),
        0 1px 3px rgba(234, 81, 158, 0.12);
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.btn-primary-large:hover {
    background-position: right center;
    transform: translateY(-1px);
    box-shadow:
        0 8px 24px rgba(234, 81, 158, 0.25),
        0 4px 12px rgba(234, 81, 158, 0.15);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: white;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    transition: all var(--transition-base);
    border: 2px solid var(--border);
    cursor: pointer;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    min-width: 200px;
}

.btn-secondary-large:hover {
    background: var(--surface);
    border-color: var(--text-tertiary);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-badge svg {
    flex-shrink: 0;
    color: var(--brand-primary);
    width: 18px;
    height: 18px;
}

/* Pure CSS Hero Visual */
.hero-visual-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    height: 300px;
}

.device-mockup-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Section Spacing */
.section-spacious {
    padding: 6rem 0;
}

.bg-light {
    background: #f9fafb;
}

/* Text Center Block */
.text-center-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Alternating Content Blocks */
.content-block-alternating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.content-block-alternating.reverse {
    direction: rtl;
}

.content-block-alternating.reverse > * {
    direction: ltr;
}

.content-media {
    display: flex;
    justify-content: center;
}

.media-card {
    background: white;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.media-card.card-cyan {
    background:
        linear-gradient(135deg, rgba(0, 171, 220, 0.03) 0%, rgba(0, 171, 220, 0.08) 100%),
        white;
    border-color: rgba(0, 171, 220, 0.2);
}

.media-card.card-teal {
    background:
        linear-gradient(135deg, rgba(0, 171, 220, 0.03) 0%, rgba(13, 167, 120, 0.08) 100%),
        white;
    border-color: rgba(13, 167, 120, 0.2);
}

.media-card.card-blue {
    background:
        linear-gradient(135deg, rgba(10, 37, 64, 0.03) 0%, rgba(0, 171, 220, 0.08) 100%),
        white;
    border-color: rgba(0, 171, 220, 0.2);
}

.step-number-large {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.2;
}

.media-card svg {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content-title-desktop-left {
    text-align: left;
}

.content-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: transform 0.2s;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(4px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-stripe);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-cyan {
    background: linear-gradient(135deg, #00ABDC15 0%, #00ABDC30 100%);
}

.icon-cyan svg {
    color: var(--secondary-color);
}

.icon-teal {
    background: linear-gradient(135deg, #0DA77815 0%, #0DA77830 100%);
}

.icon-teal svg {
    color: var(--tertiary-color);
}

.icon-blue {
    background: linear-gradient(135deg, #003C6815 0%, #003C6830 100%);
}

.icon-blue svg {
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Clean Feature Grid - Canary Care Style */
.features-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem 2rem;
    margin-top: 3rem;
}

.feature-item-clean {
    text-align: center;
}

.feature-icon-clean {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-clean svg {
    color: white;
}

.feature-item-clean h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-item-clean p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(0, 171, 220, 0.08), rgba(0, 171, 220, 0.08));
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 171, 220, 0.15);
}

/* Values Grid - About Page - Premium Style */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-stripe);
    border-color: transparent;
}

.value-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-purple);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-purple);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.value-card:hover .value-icon {
    transform: scale(1.05);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    color: white;
    display: block;
}

.value-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Horizontal Features Grid - Premium Style */
.features-horizontal-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.feature-horizontal-item {
    text-align: center;
    flex: 0 0 auto;
    max-width: 160px;
    transition: transform var(--transition-smooth);
}

.feature-horizontal-item:hover {
    transform: translateY(-4px);
}

.feature-horizontal-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.feature-horizontal-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.5));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-horizontal-item:hover .feature-horizontal-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.feature-horizontal-item:hover .feature-horizontal-icon::before {
    opacity: 1;
}

.feature-horizontal-icon svg {
    stroke-width: 2;
    position: relative;
    z-index: 1;
}

.bg-cyan {
    background: linear-gradient(135deg, #00ABDC 0%, #00d4ff 100%);
}

.bg-cyan svg {
    color: white;
}

.bg-teal {
    background: linear-gradient(135deg, #0DA778 0%, #00b8a9 100%);
}

.bg-teal svg {
    color: white;
}

.bg-yellow {
    background: linear-gradient(135deg, #FFD93D 0%, #ffc107 100%);
}

.bg-yellow svg {
    color: #0a2540;
}

.bg-gray {
    background: linear-gradient(135deg, #8898aa 0%, #6b7280 100%);
}

.bg-gray svg {
    color: white;
}

.feature-horizontal-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .features-horizontal-grid {
        gap: 2rem;
    }

    .feature-horizontal-icon {
        width: 100px;
        height: 100px;
    }

    .feature-horizontal-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-horizontal-item {
        max-width: 120px;
    }
}

/* Use Cases - Real-World Stories */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.use-case-challenge {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #e5e7eb;
}

.use-case-solution {
    font-size: 1.0625rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.use-case-solution strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border-top: 3px solid var(--tertiary-color);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* CTA Section - Premium Style */
.cta-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--mesh-gradient-2);
    pointer-events: none;
}

.cta-card {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-family: var(--font-family);
    color: var(--text-primary);
    background: white;
    transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 171, 220, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Footer Modern - Premium Style */
.footer-modern {
    background: var(--navy);
    color: white;
    padding: var(--spacing-4xl) 0 var(--spacing-2xl);
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 171, 220, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h5 {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.5);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 0.875rem;
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
    position: relative;
    padding-left: 0;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-primary);
    transition: width var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    padding-left: 12px;
}

.footer-col a:hover::before {
    width: 4px;
}

.footer-cookie-settings-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 171, 220, 0.15);
    border: 1px solid rgba(0, 171, 220, 0.3);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-xs);
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-cookie-settings-btn:hover {
    background: rgba(0, 171, 220, 0.25);
    border-color: rgba(0, 171, 220, 0.5);
    color: white;
    padding-left: 1rem;
    transform: translateY(-1px);
}

.footer-cookie-settings-btn::before {
    display: none;
}

.footer-logo {
    margin-bottom: 1rem;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: var(--text-xs);
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-ico-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    font-size: var(--text-xs);
}

.footer-ico-badge svg {
    opacity: 0.6;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-block-alternating,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .content-block-alternating {
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .hero-title-modern {
        font-size: 3rem;
        line-height: 0.95;
    }

    .hero-subtitle-modern {
        font-size: 1.125rem;
    }

    .hero-cta-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-large,
    .btn-secondary-large {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container-modern,
    .container-fluid {
        padding: 0 1.5rem;
    }

    .section-spacious {
        padding: 4rem 0;
    }
}

/* Compact Steps Grid - Horizontal Layout */
.steps-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-compact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.step-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-compact-icon {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-bottom: 1.25rem;
    align-self: center;
}

.step-number-small {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.15;
}

.step-compact-icon svg {
    width: 32px;
    height: 32px;
}

.step-compact-icon.card-cyan svg {
    color: #0891b2;
    stroke-width: 2;
}

.step-compact-icon.card-teal svg {
    color: #14b8a6;
    stroke-width: 2;
}

.step-compact-icon.card-blue svg {
    color: #3b82f6;
    stroke-width: 2;
}

.step-compact-icon.card-purple svg {
    color: #8b5cf6;
    stroke-width: 2;
}

.step-compact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-compact-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-compact-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.step-compact-content ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.step-compact-content ul li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.6rem;
    padding-left: 0.25rem;
}

.step-compact-content ul li:last-child {
    margin-bottom: 0;
}

.step-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.spec-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.spec-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.375rem;
}

@media (max-width: 992px) {
    .steps-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .step-compact-card {
        padding: 1.5rem;
    }

    .step-compact-icon {
        width: 56px;
        height: 56px;
    }

    .step-compact-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Legal Requirements Section */
.legal-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-intro h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-intro p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.legal-requirement-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.75rem;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legal-requirement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.legal-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 60, 104, 0.1) 0%, rgba(0, 171, 220, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.legal-icon svg {
    color: var(--primary-color);
    stroke-width: 2;
}

.legal-requirement-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.legal-requirement-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.legal-conclusion {
    background: linear-gradient(135deg, rgba(0, 60, 104, 0.05) 0%, rgba(0, 171, 220, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.legal-conclusion svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.legal-conclusion p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .legal-requirements-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .legal-requirement-card {
        padding: 1.5rem 1.25rem;
    }
    
    .legal-conclusion {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ======================================== */

/* Hide mobile-only elements on desktop, show desktop-only */
@media (min-width: 969px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: flex !important;
    }

    /* Ensure nav-menu on desktop has proper settings */
    .nav-menu.desktop-only {
        display: flex !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Ensure desktop dropdowns work on hover */
    .desktop-only .nav-item:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
        display: block !important;
    }

    /* Ensure dropdown menu has proper dimensions and positioning on desktop */
    .desktop-only .dropdown-menu {
        position: absolute !important;
        min-height: auto !important;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0.5rem 0 !important;
        background: white !important;
        z-index: 1000 !important;
    }

    /* Ensure dropdown links are visible on desktop */
    .desktop-only .dropdown-menu a {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: var(--text-secondary) !important;
        background: white !important;
        padding: 0.75rem 1.25rem !important;
        min-height: 40px !important;
        height: auto !important;
        width: 100% !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-decoration: none !important;
        position: relative !important;
        z-index: 1001 !important;
    }
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .navbar-modern {
        padding: 0;
        height: 0;
        min-height: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu {
        position: fixed;
        top: 50px; /* Height of mobile banner */
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        display: block; /* Override .mobile-only display: none */
    }

    .nav-menu.active {
        max-height: calc(100vh - 50px);
        opacity: 1;
        overflow-y: auto;
    }

    /* Mobile menu structure styles */
    .mobile-menu-header {
        display: none; /* Hidden by default */
        padding: 1.5rem 1.5rem 1rem;
        border-bottom: 1px solid var(--border-light);
        align-items: center;
        justify-content: flex-start;
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .nav-menu.submenu-active .mobile-menu-header {
        display: flex; /* Show when submenu is active */
    }

    .mobile-back-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 0.9375rem;
        font-weight: 500;
        cursor: pointer;
        padding: 0.5rem;
        margin: -0.5rem;
    }

    .mobile-back-btn:hover {
        opacity: 0.7;
    }

    .mobile-close-btn {
        display: none !important; /* Hide close button in submenu header */
    }

    .mobile-menu-logo {
        display: none; /* Hide logo in submenu header */
    }

    .mobile-menu-body {
        padding: 0;
    }

    .mobile-menu-nav {
        width: 100%;
        transition: transform 0.3s ease;
        padding-top: 1rem;
    }

    .nav-menu.submenu-active .mobile-menu-nav {
        transform: translateX(-100%);
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list > li {
        width: 100%;
    }

    .mobile-menu-list > li > a {
        display: block;
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .mobile-menu-list > li > a:hover {
        background: var(--surface);
    }

    .mobile-menu-item-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.125rem 1.5rem;
        background: none;
        border: none;
        border-bottom: 1px solid var(--border-light);
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        text-align: left;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .mobile-menu-item-btn:hover {
        background: var(--surface);
    }

    .mobile-menu-item-btn svg {
        color: rgba(0, 0, 0, 0.4);
        flex-shrink: 0;
    }

    .mobile-menu-footer {
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--border-light);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        transition: transform 0.3s ease;
    }

    .nav-menu.submenu-active .mobile-menu-footer {
        transform: translateX(-100%);
    }

    .mobile-menu-auth-link {
        display: block;
        padding: 0.75rem 1.5rem;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-menu-auth-link:hover {
        background: var(--surface);
    }

    .mobile-menu-auth-primary {
        background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 50%, rgb(13, 167, 120) 100%);
        color: white !important;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background-size: 200% 200%;
        transition: all 0.3s ease;
    }

    .mobile-menu-auth-primary:hover {
        background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 50%, rgb(13, 167, 120) 100%) !important;
        background-position: right center;
        background-size: 200% 200%;
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu-sections {
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        background: white;
        transition: transform 0.3s ease;
    }

    .nav-menu.submenu-active .mobile-menu-sections {
        transform: translateX(-100%);
    }

    .mobile-submenu {
        display: none;
        padding: 0;
        padding-top: 4.5rem; /* Space for sticky back button header */
    }

    .mobile-submenu.active {
        display: block;
    }

    .mobile-submenu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-submenu ul li {
        width: 100%;
    }

    .mobile-submenu ul li a {
        display: block;
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .mobile-submenu ul li a:hover {
        background: var(--surface);
    }

    .nav-menu > a {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
        display: block;
    }

    .nav-menu > a:hover {
        background: var(--surface);
    }

    .nav-menu > a::after {
        display: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .nav-item > a:hover {
        background: var(--surface);
    }

    .nav-item > a::after {
        display: none;
    }

    .dropdown-arrow {
        font-size: 1rem;
        color: var(--text-secondary);
        transform: rotate(-90deg);
    }

    .dropdown-menu {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: white;
        box-shadow: none;
        transform: translateX(0);
        opacity: 1;
        visibility: hidden;
        padding: 0;
        border: none;
        z-index: 10001;
        transition: transform 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
    }

    .nav-item.active .dropdown-menu {
        visibility: visible;
        transform: translateX(-100%);
    }

    .dropdown-menu a {
        padding: 1.125rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        background: white;
        border-bottom: 1px solid var(--border-light);
        display: block;
    }

    .dropdown-menu a:hover {
        background: var(--surface);
    }

    .nav-actions {
        display: none;
    }

    /* Hide desktop navbar elements */
    .navbar-modern .logo-brand,
    .navbar-modern .mobile-toggle,
    .navbar-modern .nav-menu.desktop-only {
        display: none;
    }
}

/* Hero Sections Mobile */
@media (max-width: 768px) {
    .hero-modern {
        min-height: 50vh !important;
        padding: 3rem 0 2rem;
    }
    
    .hero-title-modern {
        font-size: 3.25rem !important;
        line-height: 0.95;
        max-width: 100%;
    }
    
    .hero-subtitle-modern {
        font-size: 1.0625rem !important;
        line-height: 1.6;
    }
    
    .hero-cta-modern {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .hero-cta-modern .btn-primary-large,
    .hero-cta-modern .btn-outline-large {
        text-align: center;
        justify-content: center;
        min-height: 52px;
    }
}

/* Sections and Containers */
@media (max-width: 768px) {
    .section-spacious {
        padding: 3rem 0;
    }
    
    .container-modern {
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 1.875rem !important;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem !important;
    }
    
    .section-label {
        font-size: 0.8125rem;
    }
}

/* Value Cards & Feature Grids */
@media (max-width: 768px) {
    .values-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Testimonials single column on mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* Legal requirement cards centered on mobile */
    .legal-requirement-card {
        align-items: center;
        text-align: center;
    }

    .value-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }

    .value-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        height: auto;
    }

    .value-icon,
    .why-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        margin-bottom: 1rem;
        flex-shrink: 0;
    }

    .value-icon svg,
    .why-icon svg {
        width: 24px;
        height: 24px;
    }

    .value-card h3,
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .value-card p,
    .feature-card p {
        font-size: 0.875rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Step Cards */
@media (max-width: 768px) {
    .steps-grid,
    .steps-compact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .step-card,
    .step-compact-card {
        padding: 1.75rem 1.5rem;
    }
}

/* Content Blocks */
@media (max-width: 968px) {
    .content-block-alternating {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    
    .content-media {
        order: -1;
    }
    
    .content-text {
        text-align: center;
    }

    .content-title {
        font-size: 1.75rem !important;
    }

    .content-title-desktop-left {
        text-align: center !important;
    }
}

/* Pricing Cards */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 2rem 1.75rem;
    }
}

/* Footer - Mobile compact 3-column layout */
@media (max-width: 768px) {
    .footer-modern {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        text-align: left !important;
    }

    /* First column (logo) spans full width */
    .footer-col:first-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    /* Link sections aligned left in 3-column grid */
    .footer-col:not(:first-child) {
        text-align: left;
    }

    .footer-col h5 {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .footer-col a {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .footer-logo {
        height: 28px;
    }

    .footer-tagline {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
}

/* CTA Sections */
@media (max-width: 768px) {
    .cta-card {
        padding: 2rem 1.75rem;
    }
    
    .cta-title {
        font-size: 1.875rem !important;
    }
    
    .cta-description {
        font-size: 1rem !important;
    }

    .cta-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-large {
        min-height: 52px;
    }
}

/* Tables */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        min-width: 600px;
    }
}

/* FAQ Accordion */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1.25rem 1rem;
    }
}

/* Legal Requirements (New Section) */
@media (max-width: 768px) {
    .legal-requirements-grid {
        grid-template-columns: 1fr !important;
    }
    
    .legal-requirement-card {
        padding: 1.75rem 1.5rem;
    }
    
    .legal-intro h3 {
        font-size: 1.75rem !important;
    }
    
    .legal-intro p {
        font-size: 1rem !important;
    }
}

/* Touch Targets - Ensure minimum 44x44px */
@media (max-width: 768px) {
    button,
    a.btn-primary-modern,
    a.btn-primary-large,
    a.btn-outline-large,
    a.btn-text,
    .mobile-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-toggle {
        padding: 0.75rem;
    }
    
    .mobile-toggle span {
        width: 28px;
        height: 3px;
    }
}

/* Image Containers */
@media (max-width: 768px) {
    .story-image-container img,
    .content-media img {
        max-width: 280px !important;
    }
}

/* Improve Readability */
@media (max-width: 640px) {
    html {
        font-size: 16px;
    }
    
    body {
        -webkit-text-size-adjust: 100%;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2.75rem !important;
        line-height: 0.95;
    }

    .section-title {
        font-size: 1.625rem !important;
    }

    .container-modern {
        padding: 0 1rem;
    }

    .value-card,
    .feature-card,
    .step-card,
    .step-compact-card {
        padding: 1.5rem 1.25rem;
    }

    .cta-card {
        padding: 1.75rem 1.5rem;
    }

    /* Hero badge - Better mobile layout */
    .hero-badge {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        max-width: 90%;
        text-align: center;
    }

    .hero-badge span {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    /* Button improvements */
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        min-width: unset;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Small Mobile Devices - Better value cards */
@media (max-width: 480px) {
    .value-card,
    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .value-icon,
    .why-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        margin-bottom: 0.875rem;
    }

    .value-icon svg,
    .why-icon svg {
        width: 22px;
        height: 22px;
    }

    .value-card h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
    }

    .value-card p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}

/* Extra Small Mobile Devices (very compact phones) */
@media (max-width: 360px) {
    .hero-title-modern {
        font-size: 2.25rem !important;
    }

    .hero-subtitle-modern {
        font-size: 1rem !important;
    }

    .container-modern,
    .container-fluid {
        padding: 0 0.875rem;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .footer-col h5 {
        font-size: 0.6875rem;
    }

    .footer-col a,
    .footer-tagline {
        font-size: 0.75rem;
    }

    /* Mobile auth banner compact */
    .mobile-auth-link {
        font-size: 0.8125rem;
    }

    .mobile-banner-logo img {
        height: 24px !important;
    }

    /* Even more compact value cards */
    .value-card,
    .feature-card {
        padding: 1.5rem 1rem;
    }

    .value-card h3 {
        font-size: 0.875rem;
    }

    .value-card p {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile */
@media (max-width: 968px) and (orientation: landscape) {
    .hero-modern {
        min-height: 70vh !important;
    }
}


/* Mobile Toggle Animation - Improved hamburger to X transition */
.mobile-toggle.active {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
}

.mobile-toggle.active span {
    background: white;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Improve tap highlight on mobile */
@media (max-width: 968px) {
    a, button, .mobile-toggle {
        -webkit-tap-highlight-color: rgba(0, 60, 104, 0.1);
        tap-highlight-color: rgba(0, 60, 104, 0.1);
    }
}


/* Mobile Auth Banner (Login/Register at top) */
.mobile-auth-banner {
    display: none; /* Hidden on desktop */
    background: transparent;
    padding: 0.65rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: none;
    transition: all 0.3s ease;
}

.mobile-auth-banner.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-auth-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.mobile-banner-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-auth-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.mobile-banner-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

.mobile-banner-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-banner-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    pointer-events: none;
}

.mobile-banner-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-banner-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-banner-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    transition: opacity 0.2s ease;
}

.mobile-auth-link:hover {
    opacity: 0.8;
}

.mobile-auth-register {
    background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 50%, rgb(13, 167, 120) 100%);
    color: white !important;
    border-radius: 6px;
    padding: 0.375rem 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.mobile-auth-register:hover {
    background-position: right center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.mobile-auth-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Show mobile auth banner only on mobile */
@media (max-width: 968px) {
    .mobile-auth-banner {
        display: block;
    }

    /* Hide only the desktop parts of navbar on mobile */
    .navbar-modern .logo-brand,
    .navbar-modern .nav-actions,
    .navbar-modern .mobile-toggle {
        display: none !important;
    }

    /* Keep navbar visible but transparent for mobile menu */
    .navbar-modern {
        background: transparent;
        box-shadow: none;
        height: 0;
        min-height: 0;
        padding: 0;
        overflow: visible;
        position: fixed;
    }

    /* Make sure mobile menu is accessible */
    .nav-menu.mobile-only {
        display: block !important;
    }

    /* Remove padding since banner is transparent */
    body {
        padding-top: 0;
    }
}


/* Center mobile auth banner */
@media (max-width: 968px) {
    .mobile-auth-content {
        justify-content: center !important;
    }
}


/* Reduce gap between header and hero on mobile */
@media (max-width: 968px) {
    .hero-modern {
        padding-top: 7rem !important;
    }

    .hero-content-modern {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding-top: 6.5rem !important;
    }
}

/* ============================================
   BENTO GRID - Stunning Feature Layout
   ============================================ */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Base Styles */
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(0, 60, 104, 0.08);
    box-shadow:
        0 4px 6px -1px rgba(0, 60, 104, 0.05),
        0 2px 4px -1px rgba(0, 60, 104, 0.03);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 60, 104, 0.03) 0%, rgba(0, 171, 220, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 25px -5px rgba(0, 60, 104, 0.12),
        0 10px 10px -5px rgba(0, 60, 104, 0.08);
    border-color: rgba(0, 171, 220, 0.2);
}

.bento-card:hover::before {
    opacity: 1;
}

/* Grid Positioning */
.bento-large {
    grid-column: span 4;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 3;
    grid-row: span 1;
}

/* Card Inner Content */
.bento-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.bento-large .bento-card-inner {
    padding: 3rem;
    justify-content: space-between;
}

/* Icon Styles */
.bento-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.bento-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 100%);
    color: white;
    position: relative;
    box-shadow:
        0 10px 25px -5px rgba(0, 60, 104, 0.3),
        0 6px 10px -6px rgba(0, 171, 220, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 171, 220, 0.5), rgba(0, 60, 104, 0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow:
        0 20px 35px -5px rgba(0, 60, 104, 0.4),
        0 10px 15px -6px rgba(0, 171, 220, 0.4);
}

.bento-card:hover .bento-icon::before {
    opacity: 1;
}

/* Medium and Small Card Icons */
.bento-medium .bento-icon,
.bento-small .bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 100%);
}

.bento-small .bento-icon {
    width: 56px;
    height: 56px;
}

/* Typography */
.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    background: linear-gradient(135deg, rgb(0, 60, 104), rgb(0, 171, 220));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-large .bento-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.bento-medium .bento-title {
    font-size: 1.35rem;
}

.bento-small .bento-title {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.bento-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    opacity: 0.9;
}

.bento-large .bento-description {
    font-size: 1.15rem;
    margin-bottom: auto;
}

/* Badge Container */
.bento-badge {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.bento-badge span {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 60, 104, 0.08) 0%, rgba(0, 171, 220, 0.08) 100%);
    color: rgb(0, 60, 104);
    border: 1px solid rgba(0, 60, 104, 0.1);
    transition: all 0.3s ease;
}

.bento-badge span:hover {
    background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 60, 104, 0.25);
}

/* Glow Effect on Hover */
.bento-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 171, 220, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.bento-large:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-top: 3rem;
    }

    .bento-large,
    .bento-medium {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card-inner {
        padding: 2rem;
    }

    .bento-large .bento-card-inner {
        padding: 2.5rem;
    }

    .bento-large .bento-title {
        font-size: 1.75rem;
    }

    .bento-icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card-inner {
        padding: 1.75rem;
    }

    .bento-large .bento-card-inner {
        padding: 2rem;
    }

    .bento-large .bento-title {
        font-size: 1.5rem;
    }

    .bento-title {
        font-size: 1.25rem;
    }

    .bento-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    .bento-icon {
        width: 56px;
        height: 56px;
    }

    .bento-large .bento-icon {
        width: 64px;
        height: 64px;
    }
}




/* About Us Page - Responsive Text Alignment */
/* Desktop: Left-aligned, Mobile: Centered */

/* Desktop styles (default) */
@media (min-width: 769px) {
    .about-story-desktop,
    .about-frustration-desktop {
        text-align: left !important;
    }
    
    .about-story-title,
    .about-frustration-title,
    .about-frustration-label {
        text-align: left !important;
    }
    
    .about-story-text,
    .about-frustration-text {
        font-size: 1.125rem;
        line-height: 1.8;
        color: var(--text-secondary);
        text-align: left !important;
        margin-bottom: 1.5rem;
    }
    
    .about-frustration-title {
        margin-bottom: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .about-story-desktop,
    .about-frustration-desktop {
        text-align: center !important;
    }
    
    .about-story-title,
    .about-frustration-title,
    .about-frustration-label {
        text-align: center !important;
    }
    
    .about-story-text,
    .about-frustration-text {
        font-size: 1.125rem;
        line-height: 1.8;
        color: var(--text-secondary);
        text-align: center !important;
        margin-bottom: 1.5rem;
    }
    
    .about-frustration-title {
        margin-bottom: 2rem;
    }
}

/* ========================================
   CTA BUTTONS - Header & FAB
   ======================================== */

/* Header "Start Signing" CTA Button */
.btn-cta-sign {
    background: linear-gradient(rgb(234, 81, 158), rgb(58, 9, 35));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-stripe);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-sm);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(234, 81, 158, 0.2), 0 1px 3px rgba(234, 81, 158, 0.12);
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    z-index: 1;
}

.btn-cta-sign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(58, 9, 35), rgb(234, 81, 158));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-cta-sign:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 81, 158, 0.25), 0 4px 12px rgba(234, 81, 158, 0.15);
    background-position: right center;
}

.btn-cta-sign:hover::before {
    opacity: 1;
}

.btn-cta-sign:active {
    transform: translateY(0);
}

/* Responsive styles for Start Signing button */
.btn-cta-sign {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .btn-cta-sign {
        padding: 0.5rem 1.25rem;
        font-size: 0.813rem;
    }

    .btn-text {
        padding: 0.5rem 0.75rem;
        font-size: 0.813rem;
    }
}

@media (max-width: 992px) {
    .btn-cta-sign {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .btn-text {
        padding: 0.5rem 0.5rem;
        font-size: 0.75rem;
    }

    .nav-actions {
        gap: 0.25rem;
    }
}

@media (max-width: 768px) {
    .btn-cta-sign {
        padding: 0.4rem 0.75rem;
        font-size: 0.688rem;
        letter-spacing: 0.01em;
    }

    .btn-text {
        padding: 0.4rem 0.4rem;
        font-size: 0.688rem;
    }

    .nav-actions {
        gap: 0.15rem;
    }
}

@media (max-width: 576px) {
    .btn-cta-sign {
        padding: 0.35rem 0.6rem;
        font-size: 0.625rem;
    }

    .btn-text {
        padding: 0.35rem 0.3rem;
        font-size: 0.625rem;
    }

    .nav-actions {
        gap: 0.1rem;
    }
}

/* Floating Action Button (FAB) */
.fab-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(rgb(234, 81, 158), rgb(58, 9, 35));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 16px rgba(234, 81, 158, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow: hidden;
    cursor: pointer;
    background-size: 200% 200%;
}

.fab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(58, 9, 35), rgb(234, 81, 158));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fab-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 81, 158, 0.5);
    background-position: right center;
}

.fab-button:hover::before {
    opacity: 1;
}

.fab-button:active {
    transform: scale(1.05);
}

.fab-icon {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

.fab-text {
    position: relative;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fab-button {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
    
    .fab-icon {
        width: 20px;
        height: 20px;
    }
    
    .fab-text {
        font-size: 0.65rem;
    }
    
    .btn-cta-sign {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* Hide FAB on very small screens to avoid overlap */
@media (max-width: 480px) {
    .fab-button {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
}

/* ========================================
   MODERN ALERT SYSTEM
   ======================================== */

/* Base Alert Styles */
.modern-alert {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-alert-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.modern-alert-content {
    flex: 1;
    min-width: 0;
}

.modern-alert-title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: #1e2738;
    letter-spacing: -0.01em;
}

.modern-alert-message {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #697386;
    margin: 0;
}

.modern-alert-close {
    flex-shrink: 0;
    background: rgba(30, 39, 56, 0.06);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #1e2738;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    opacity: 0.7;
    font-weight: 300;
}

.modern-alert-close:hover {
    background: rgba(30, 39, 56, 0.12);
    opacity: 1;
    transform: scale(1.05);
}

.modern-alert-close:active {
    transform: scale(0.95);
}

/* Info Alert (Purple/Primary) */
.modern-alert-info {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.08) 0%, rgba(99, 91, 255, 0.03) 100%);
}

.modern-alert-info .modern-alert-icon {
    background: linear-gradient(135deg, #635bff 0%, #7c73ff 100%);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

/* Warning Alert (Orange) */
.modern-alert-warning {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
}

.modern-alert-warning .modern-alert-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8659 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Success Alert (Green) */
.modern-alert-success {
    background: linear-gradient(135deg, rgba(0, 196, 140, 0.08) 0%, rgba(0, 196, 140, 0.03) 100%);
}

.modern-alert-success .modern-alert-icon {
    background: linear-gradient(135deg, #00c48c 0%, #00d99a 100%);
    box-shadow: 0 4px 12px rgba(0, 196, 140, 0.3);
}

/* Error/Danger Alert (Red) */
.modern-alert-error {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.08) 0%, rgba(255, 82, 82, 0.03) 100%);
}

.modern-alert-error .modern-alert-icon {
    background: linear-gradient(135deg, #ff5252 0%, #ff6b6b 100%);
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .modern-alert {
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
        gap: 0.875rem;
    }

    .modern-alert-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .modern-alert-title {
        font-size: 0.95rem;
    }

    .modern-alert-message {
        font-size: 0.875rem;
    }

    .modern-alert-close {
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
    }
}

/**
 * Cookie Consent Banner Styles
 * UK GDPR and PECR Compliant
 * Equal prominence for Accept/Reject buttons
 */

/* Banner Container */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 1rem;
    z-index: 999999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    max-height: 90vh;
    overflow-y: auto;
}

#cookieConsentBanner.show {
    transform: translateY(0);
}

/* Banner Content */
.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Banner Text */
.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.75rem 0;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 0.5rem 0;
}

.cookie-banner-text a {
    color: #635bff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    color: #4f46e5;
}

/* Banner Buttons */
.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

/* Equal prominence - same visual weight for Accept and Reject */
.cookie-btn-accept {
    background: #635bff;
    color: #ffffff;
    border-color: #635bff;
}

.cookie-btn-accept:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(99, 91, 255, 0.2);
}

.cookie-btn-reject {
    background: #ffffff;
    color: #1a1a2e;
    border-color: #d1d5db;
}

.cookie-btn-reject:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-btn-customize {
    background: transparent;
    color: #635bff;
    border-color: transparent;
    text-decoration: underline;
    padding: 0.75rem 1rem;
}

.cookie-btn-customize:hover {
    color: #4f46e5;
    background: #f9fafb;
}

/* Customization Modal */
#cookieCustomizeModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#cookieCustomizeModal.show {
    display: flex;
}

.cookie-modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.cookie-category-title {
    flex: 1;
}

.cookie-category-title h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.25rem 0;
}

.cookie-category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-category-badge.always-active {
    background: #dbeafe;
    color: #1e40af;
}

.cookie-category-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #635bff;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal Footer */
.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    #cookieConsentBanner {
        padding: 1.25rem 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .cookie-modal-content {
        margin: 1rem;
    }

    .cookie-modal-header {
        padding: 1.25rem;
    }

    .cookie-modal-body {
        padding: 1.25rem;
    }

    .cookie-modal-footer {
        padding: 1.25rem;
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-text h3 {
        font-size: 1rem;
    }

    .cookie-banner-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .cookie-modal-header h3 {
        font-size: 1.25rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-category-title h4 {
        font-size: 1rem;
    }

    .cookie-category-description {
        font-size: 0.85rem;
    }
}

/* Accessibility */
.cookie-btn:focus,
.cookie-toggle-slider:focus,
.cookie-modal-close:focus {
    outline: 2px solid #635bff;
    outline-offset: 2px;
}

/* Print */
@media print {
    #cookieConsentBanner,
    #cookieCustomizeModal {
        display: none !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #cookieConsentBanner,
    .cookie-btn,
    .cookie-toggle-slider,
    .cookie-toggle-slider:before {
        transition: none;
    }
}

/* Clean Mobile Navigation - Modern Design */

/* Mobile Menu Header */
.mobile-menu-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e7ecf1;
    background: white;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-back-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    color: #003C68;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    position: absolute;
    left: 0;
    z-index: 10;
}

.mobile-back-btn:hover {
    opacity: 0.7;
}

.mobile-back-btn svg {
    width: 16px;
    height: 16px;
}

.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #4F5B76;
    cursor: pointer;
    transition: opacity 0.2s;
}

.mobile-close-btn:hover {
    opacity: 0.7;
}

/* Mobile Menu Body */
.mobile-menu-body {
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.mobile-menu-body::-webkit-scrollbar {
    display: none;
}

.mobile-menu-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu-nav {
    padding: 0;
    flex: 1;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid #e7ecf1;
    margin-top: auto;
}

.mobile-menu-auth-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    flex: 1;
}

.mobile-menu-auth-link:first-child {
    color: #0a2540;
    background: transparent;
    border: 1px solid #e7ecf1;
}

.mobile-menu-auth-link:first-child:hover {
    background: #f6f9fc;
}

.mobile-menu-auth-primary {
    color: white !important;
    background: linear-gradient(135deg, rgb(0, 60, 104) 0%, rgb(0, 171, 220) 50%, rgb(13, 167, 120) 100%);
    border: 1px solid rgb(0, 60, 104);
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.mobile-menu-auth-primary:hover {
    background-position: right center;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Mobile Submenu Sections */
.mobile-menu-sections {
    position: absolute;
    top: 73px;
    left: 0;
    width: 100%;
    height: calc(100% - 73px);
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-submenu {
    display: none;
    padding: 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-submenu li {
    border-bottom: 1px solid #e7ecf1;
}

.mobile-submenu a {
    display: block;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #0a2540;
    text-decoration: none;
    transition: background-color 0.2s;
    text-align: left;
}

.mobile-submenu a:hover {
    background-color: #f6f9fc;
}

.mobile-submenu li:first-child a {
    padding-top: 1.125rem;
}

/* States */
.nav-menu.submenu-active .mobile-menu-sections {
    transform: translateX(0);
}

.nav-menu.submenu-active .mobile-back-btn {
    display: flex;
}

.nav-menu.submenu-active .mobile-menu-logo {
    opacity: 0;
    pointer-events: none;
}

/* Mobile Only Styles */
@media (max-width: 968px) {
    .mobile-menu-header {
        display: flex;
    }

    .mobile-only.nav-menu.active .mobile-menu-body {
        display: flex !important;
        flex: 1 !important;
        min-height: 0 !important;
    }

    /* FULL SCREEN MOBILE MENU - Maximum specificity override */
    .mobile-only.nav-menu,
    .mobile-only.nav-menu.active,
    #navMenu.mobile-only.nav-menu,
    #navMenu.mobile-only.nav-menu.active {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        background: #ffffff !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 999999 !important;
        flex-direction: column !important;
        overflow: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }

    .mobile-only.nav-menu.active,
    #navMenu.mobile-only.nav-menu.active {
        transform: translateX(0) !important;
    }

    /* Remove all padding/margins from everything inside */
    .mobile-only.nav-menu *,
    .mobile-only.nav-menu .container-fluid,
    .mobile-only.nav-menu .nav-wrapper {
        max-width: 100vw !important;
    }

    .mobile-only.nav-menu .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    /* Prevent body scroll when menu is open */
    body:has(.mobile-only.nav-menu.active) {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
    }

    /* Hide mobile auth banner when menu is open */
    .mobile-only.nav-menu.active ~ * .mobile-auth-banner,
    body:has(.mobile-only.nav-menu.active) .mobile-auth-banner {
        display: none;
    }

    /* Mobile menu list styles */
    .mobile-menu-list li {
        border-bottom: 1px solid #e7ecf1;
    }

    .mobile-menu-list a,
    .mobile-menu-item-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100%;
        padding: 1.125rem 1.5rem !important;
        font-size: 1rem;
        font-weight: 500;
        color: #0a2540;
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s;
        text-align: left !important;
    }

    .mobile-menu-item-btn span {
        flex: 1;
    }

    .mobile-menu-list a:hover,
    .mobile-menu-item-btn:hover {
        background-color: #f6f9fc;
    }

    .mobile-menu-item-btn svg {
        width: 16px;
        height: 16px;
        color: #3F4B66;
    }
}

/* Desktop/Mobile Toggle */
@media (min-width: 969px) {
    .desktop-only {
        display: flex !important;
    }

    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 968px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}
