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

section {
    width: 100%;
    margin: 0;
    padding: 0;
}

section.hero h1.hero-title,
section.hero .hero-title,
section.hero h1 {
    color: #111827 !important;
}

section.hero h1 .ai-highlight,
section.hero h1.hero-title .ai-highlight,
section.hero .hero-title .ai-highlight,
section.hero .hero-content h1 .ai-highlight,
section.hero .hero-content .hero-title .ai-highlight,
section.hero .hero-content h1.hero-title .ai-highlight,
section.hero h1.hero-title span.ai-highlight,
section.hero .hero-title span.ai-highlight,
section.hero .hero-content h1.hero-title span.ai-highlight,
section.hero .hero-content .hero-title span.ai-highlight {
    color: #1F3B7A !important;
}

section.hero .hero-subtitle,
section.hero .hero-subtitle p,
section.hero p.hero-subtitle-single,
section.hero .hero-subtitle-single {
    color: #1F3B7A !important;
}

section.hero .hero-content,
section.hero .hero-content *:not(.btn-primary):not(.btn-secondary):not(.btn-primary *):not(.btn-secondary *):not(.cta-hint):not(.ai-highlight):not(.cta-waitlist):not(.hero-subtitle):not(.hero-subtitle *) {
    color: #111827 !important;
}

section.hero .hero-content .hero-subtitle,
section.hero .hero-content .hero-subtitle *,
section.hero .hero-content .hero-subtitle p,
section.hero .hero-content .hero-subtitle-single,
section.hero .hero-content p.hero-subtitle,
section.hero .hero-content p.hero-subtitle * {
    color: #1F3B7A !important;
}

:root {
    /* Typography Scale - Desktop */
    --font-size-h1: 56px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;
    --font-size-body: 17px;
    --font-size-small: 14px;
    --font-size-xs: 13px;
    
    /* Line Heights */
    --line-height-heading: 1.2;
    --line-height-body: 1.6;
    
    /* Letter Spacing */
    --letter-spacing-h1: -1.5px;
    --letter-spacing-h2: -0.5px;
    --letter-spacing-h3: -0.3px;

    --bg-page: #F5F3EE;
    --bg-surface: #E5E7F0;
    --bg-surface-alt: #F0E9DC;
    --bg-card: #FFFFFF;

    --border-subtle: #D1D5E2;
    --border-strong: #9CA3AF;
    --border-light: #D1D5E2;
    --border-paper: #E5E7F0;

    --text-on-dark: #F9FAFB;
    --text-on-light: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --text-warm: #8A8173;

    --accent-primary: #1F3B7A;
    --accent-primary-hover: #1B3270;
    --accent-primary-soft: rgba(31, 59, 122, 0.12);

    --status-success: #1E8A4A;
    --status-warning: #D28A32;
    --status-error: #8B2B34;
    --status-error-text: #FBEAEA;

    --primary-color: var(--accent-primary);
    --primary-dark: var(--accent-primary-hover);
    --text-primary: var(--text-on-light);
    --text-primary-dark: var(--text-on-light);
    --text-secondary-on-dark: var(--text-secondary);
    --text-muted-on-dark: var(--text-muted);
    --bg-primary: var(--bg-surface);
    --bg-secondary: var(--bg-surface-alt);
    --bg-tertiary: var(--bg-page);
    --border-color: var(--border-subtle);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);

    --gradient-primary: linear-gradient(135deg, #1F3B7A 0%, #1B3270 100%);
    --gradient-hero: linear-gradient(180deg, #F5F3EE 0%, #F0E9DC 100%);
}

/* Typography Scale - Mobile */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 24px;
        --font-size-h3: 18px;
        --font-size-body: 16px;
        --font-size-small: 14px;
        --font-size-xs: 13px;
        --letter-spacing-h1: -1px;
        --letter-spacing-h2: -0.3px;
        --letter-spacing-h3: -0.2px;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-on-light);
    line-height: var(--line-height-body);
    font-size: var(--font-size-body);
    background-color: var(--bg-page);
    background-image:
        linear-gradient(90deg, transparent 0%, rgba(209, 213, 226, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(209, 213, 226, 0.03) 50%, transparent 100%);
    background-size: 40px 40px;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

section.hero {
    color: #111827 !important;
}

section.hero *:not(.cta-waitlist),
section.hero h1,
section.hero h2,
section.hero h3,
section.hero h4,
section.hero h5,
section.hero h6,
section.hero p:not(.cta-waitlist),
section.hero div,
section.hero span,
section.hero a:not(.btn-primary):not(.btn-secondary) {
    color: #111827 !important;
}

section.hero .hero-subtitle,
section.hero .hero-subtitle *,
section.hero .hero-subtitle p,
section.hero .hero-subtitle-single,
section.hero .hero-subtitle-single * {
    color: #1F3B7A !important;
}

section.hero .hero-typewriter,
section.hero .typewriter-text {
    color: #1F3B7A !important;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.hero .container {
    color: #111827 !important;
}

.beta-notice-banner {
    position: relative;
    background: #1F3B7A;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    z-index: 999;
}

.beta-notice-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.beta-notice-banner p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.beta-notice-link {
    color: #FFFFFF !important;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.beta-notice-link:hover {
    color: #FFFFFF !important;
    opacity: 0.8;
    text-decoration-thickness: 2px;
}

.navbar-legaltech {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 16px;
    pointer-events: none;
    transition: top 0.2s ease-out, transform 0.2s ease-out, opacity 0.2s ease-out;
    transform: translateY(0);
    opacity: 1;
}

.navbar-legaltech.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none !important;
    visibility: hidden;
}

.navbar-legaltech.hidden * {
    pointer-events: none !important;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 56px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    pointer-events: all;
    transition: background 0.2s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    will-change: auto;
}

.navbar-container::after {
    opacity: 0;
    pointer-events: none;
}

.navbar-container.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    will-change: auto;
}

.navbar-container.scrolled::after {
    opacity: 0;
    pointer-events: none;
}

.beta-test-link {
    display: none !important;
}

.navbar-container .beta-test-link {
    display: inline-flex !important;
}

.navbar-container .navbar-nav a {
    color: #111827;
}

.navbar-container .navbar-nav a:hover {
    color: #1F3B7A;
}

.navbar-container .navbar-burger span {
    background: #111827;
}

.navbar-container .navbar-burger:hover span {
    background: #1F3B7A;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    grid-column: 1;
    justify-self: start;
}

.logo-link-nav {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link-nav:hover {
    opacity: 0.8;
}

.logo-img-nav {
    height: 22px;
    width: auto;
    display: block;
}

.navbar-nav {
    display: none;
    align-items: center;
    gap: 32px;
    justify-content: center;
    grid-column: 2;
}

@media (min-width: 768px) {
    .navbar-nav {
        display: flex;
    }
}

.navbar-nav a {
    color: #4B5563;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-nav a:hover {
    color: #111827;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    justify-self: end;
    grid-column: 3;
}

.navbar-ai-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(245, 243, 238, 0.8);
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: background, border-color;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar-ai-link:hover {
    color: #1F3B7A;
    background: rgba(245, 243, 238, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
}

.navbar-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .navbar-burger {
        display: none;
    }
}

.navbar-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4B5563;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.navbar-burger:hover span {
    background: #111827;
}

.navbar-mobile {
    display: none;
    margin-top: 16px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    pointer-events: all;
}

.navbar-mobile.active {
    display: block;
}

.navbar-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.navbar-mobile-content > a {
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.2s ease;
}

.navbar-mobile-content > a:hover {
    color: #1F3B7A;
}

.mobile-section {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.mobile-section-title {
    color: #6B7280;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-section a {
    display: block;
    color: #111827;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.mobile-section a:hover {
    color: #1F3B7A;
}

.btn-mobile-register {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 9999px;
    background: #2563EB;
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-mobile-register:hover {
    background: #1D4ED8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.navbar {
    display: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: #9B8F82;
    font-weight: 400;
    font-size: 17px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: #F7F3EB;
}

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

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

.btn-login {
    padding: 8px 20px;
    border-radius: 8px;
    background: rgba(31, 59, 122, 0.2);
    color: #F7F3EB;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(31, 59, 122, 0.3);
}

.btn-login:hover {
    background: rgba(31, 59, 122, 0.3);
    border-color: rgba(31, 59, 122, 0.4);
    color: #F9FAFB;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    height: 50px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(31, 59, 122, 0.3);
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--accent-primary-hover) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(31, 59, 122, 0.4);
}

.btn-primary * {
    color: #FFFFFF !important;
}

.btn-secondary {
    background: #1F3B7A;
    color: rgba(255, 255, 255, 1) !important;
    border: 1px solid #1F3B7A;
}

.btn-secondary:hover {
    background: rgba(27, 50, 112, 1);
    border-color: rgba(27, 50, 112, 1);
    color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-1px);
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary:disabled:hover,
.btn-secondary:disabled:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(31, 59, 122, 0.3);
    background: var(--accent-primary) !important;
}

.hero-cta .btn-secondary,
section.hero .btn-secondary,
section.hero .hero-content .btn-secondary,
section.hero .hero-cta .btn-secondary,
.cta-secondary-wrapper .btn-secondary {
    color: rgba(255, 255, 255, 1) !important;
}

.hero-cta .btn-secondary:hover,
section.hero .btn-secondary:hover,
section.hero .hero-content .btn-secondary:hover,
section.hero .hero-cta .btn-secondary:hover,
.cta-secondary-wrapper .btn-secondary:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.btn-secondary-small {
    padding: 8px 16px;
    font-size: 15px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 19px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 100px;
    overflow: hidden;
    z-index: 1;
    color: #111827 !important;
    background: #F5F3EE;
    contain: layout style;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero_bg_effect.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
    animation: heroDrift 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(245, 243, 238, 0.85) 0%,
        rgba(245, 243, 238, 0.75) 30%,
        rgba(245, 243, 238, 0.7) 50%,
        rgba(245, 243, 238, 0.75) 70%,
        rgba(240, 233, 220, 0.85) 100%
    );
    z-index: 0;
    pointer-events: none;
}

@keyframes heroDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(-1%, -0.5%) scale(1.01);
        opacity: 0.98;
    }
    50% {
        transform: translate(0.5%, 0.3%) scale(1.005);
        opacity: 1;
    }
    75% {
        transform: translate(-0.3%, 0.5%) scale(0.998);
        opacity: 0.99;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none;
        transform: none;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #111827 !important;
    box-sizing: border-box;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    min-height: 280px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    align-self: stretch;
    min-height: 240px;
    aspect-ratio: 1 / 1;
}

.hero-portrait {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
}

.hero-content *:not(.hero-typewriter):not(.typewriter-text):not(.btn-primary):not(.btn-secondary):not(.btn-primary *):not(.btn-secondary *):not(.cta-waitlist),
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p:not(.cta-waitlist),
.hero-content div:not(.hero-typewriter):not(.hero-cta):not(.cta-primary-wrapper):not(.cta-secondary-wrapper),
.hero-content span:not(.typewriter-text) {
    color: #111827 !important;
}

.hero-content .hero-typewriter,
.hero-content .typewriter-text,
.hero-typewriter,
.typewriter-text,
#typewriterText,
.hero .hero-typewriter,
.hero .typewriter-text,
section.hero .hero-typewriter,
section.hero .typewriter-text,
section.hero #typewriterText {
    color: #1F3B7A !important;
}

.hero-content .btn-primary,
.hero-content a.btn-primary,
.hero-content .btn-primary *,
.hero .btn-primary,
.hero a.btn-primary,
.hero .btn-primary *,
.hero-cta .btn-primary,
.hero-cta a.btn-primary,
.cta-primary-wrapper .btn-primary,
.cta-primary-wrapper a.btn-primary,
section.hero .btn-primary,
section.hero a.btn-primary,
section.hero .hero-content .btn-primary,
section.hero .hero-content a.btn-primary {
    color: #FFFFFF !important;
    background: var(--accent-primary) !important;
}

.hero-content .btn-primary:hover,
.hero-content a.btn-primary:hover,
.hero .btn-primary:hover,
.hero a.btn-primary:hover,
.hero-cta .btn-primary:hover,
.hero-cta a.btn-primary:hover,
.cta-primary-wrapper .btn-primary:hover,
.cta-primary-wrapper a.btn-primary:hover,
section.hero .btn-primary:hover,
section.hero a.btn-primary:hover,
section.hero .hero-content .btn-primary:hover,
section.hero .hero-content a.btn-primary:hover {
    color: #FFFFFF !important;
    background: var(--accent-primary-hover) !important;
}

.hero-content .hero-subtitle,
.hero-content .hero-subtitle *,
.hero-content .hero-subtitle-single {
    color: #1F3B7A !important;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 0;
    margin-top: 0;
    color: #111827 !important;
    min-height: 62px;
    /* animation removed to prevent CLS */
}

.hero-title .ai-highlight,
section.hero .hero-title .ai-highlight,
section.hero h1.hero-title .ai-highlight,
section.hero h1 .ai-highlight,
section.hero .hero-title span.ai-highlight,
section.hero h1.hero-title span.ai-highlight {
    color: #1F3B7A !important;
}

.hero-typewriter {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #1F3B7A !important;
    min-height: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
}

.typewriter-text,
#typewriterText {
    display: inline !important;
    color: #1F3B7A !important;
}

.typewriter-text::after,
#typewriterText::after {
    content: '|';
    color: #1F3B7A;
    animation: blink 1s infinite;
    display: inline-block;
    margin-left: 2px;
    vertical-align: baseline;
}

.hero-content .hero-typewriter,
.hero-content .typewriter-text,
.hero-content #typewriterText,
.hero .hero-typewriter,
.hero .typewriter-text,
.hero #typewriterText,
section.hero .hero-typewriter,
section.hero .typewriter-text,
section.hero #typewriterText {
    color: #1F3B7A !important;
}

.hero-subtitle-single {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
    color: #4B5563 !important;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}


.platform-showcase-section {
    padding: 80px 0;
    background: #1F3B7A;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.platform-showcase-title {
    font-size: var(--font-size-h2);
    color: #FFFFFF !important;
    font-weight: 700;
    line-height: var(--line-height-heading);
    letter-spacing: var(--letter-spacing-h2);
    text-align: center;
    margin-bottom: 48px;
    margin-top: 0;
}

.platform-showcase-image {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.platform-showcase-image img,
.platform-showcase-image video {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-subtle);
    border-radius: 8px 8px 0 0;
}

.platform-showcase-video-wrap {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #0f172a;
    border-radius: 24px 24px 0 0;
}

.platform-showcase-video-wrap .platform-showcase-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: inherit;
    box-shadow: none;
}

.platform-showcase-video-controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    pointer-events: none;
    transition: align-items 0.3s ease, justify-content 0.3s ease;
}

.platform-showcase-video-wrap.has-played .platform-showcase-video-controls {
    align-items: flex-end;
    justify-content: flex-start;
}

.platform-showcase-video-wrap.has-played .platform-showcase-video-btn {
    width: 72px;
    height: 72px;
}

.platform-showcase-video-wrap.has-played .platform-showcase-video-btn svg {
    width: 32px;
    height: 32px;
}

.platform-showcase-video-controls .platform-showcase-video-btn {
    pointer-events: auto;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #1F3B7A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.platform-showcase-video-controls .platform-showcase-video-btn svg {
    width: 40px;
    height: 40px;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.platform-showcase-video-controls .platform-showcase-video-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.platform-showcase-video-controls .platform-showcase-video-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

.platform-showcase-video-controls .platform-showcase-video-btn[hidden] {
    display: none;
}

.platform-showcase-video-wrap.is-playing .platform-showcase-video-btn-pause {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.platform-showcase-video-wrap.is-playing:hover .platform-showcase-video-btn-pause,
.platform-showcase-video-wrap.is-playing.show-controls .platform-showcase-video-btn-pause {
    opacity: 1;
    pointer-events: auto;
}

.platform-showcase-cta {
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.platform-showcase-cta .btn-secondary {
    width: 100%;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    color: #111827 !important;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 8px 8px;
}

.platform-showcase-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    color: #111827 !important;
    transform: translateY(-2px);
}

.mascot-section {
    padding: 0;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

.mascot-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #1F3B7A;
    position: relative;
}

.testimonials-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #F5F3EE;
    position: relative;
    color: #111827;
}

.testimonials-section * {
    color: inherit;
}

.testimonials-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 60px 0 0 0;
    background: #F5F3EE;
    position: relative;
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 24px;
}

.testimonials-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonials-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: #111827 !important;
    text-align: left;
    margin: 0;
    padding: 0;
    line-height: var(--line-height-heading);
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #4B5563 !important;
    text-align: left;
    margin: 8px 0 0 0;
    padding: 0;
    line-height: 1.5;
    display: block;
    width: 100%;
}

.testimonials-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.testimonials-nav-btn:hover:not(:disabled) {
    background: #F5F3EE;
    border-color: #1F3B7A;
    color: #111827;
}

.testimonials-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonials-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonials-nav-btn svg path {
    stroke: #111827;
}

.testimonials-nav-btn:hover:not(:disabled) svg path {
    stroke: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    align-items: stretch;
    touch-action: pan-y;
    cursor: default;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(60px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(60px) saturate(200%) !important;
    border: none !important;
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 436px;
    min-height: 550px;
    height: auto;
    box-sizing: border-box;
    box-shadow: none !important;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 400;
    color: #111827 !important;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 500;
    color: #4B5563 !important;
    margin: 0;
    margin-top: auto;
    line-height: 1.5;
}

.testimonial-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #F5F3EE;
    border: 2px dashed #1F3B7A;
    gap: 16px;
    width: 100%;
    max-width: 436px;
    min-height: 550px;
    height: auto;
    box-sizing: border-box;
    padding: 32px;
}

.testimonial-cta-icon {
    width: 32px;
    height: 32px;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.testimonial-cta-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827 !important;
    text-align: center;
    margin: 0 0 -4px 0;
    line-height: 1.3;
    flex-shrink: 0;
}

.testimonial-cta-text {
    font-size: 15px;
    font-weight: 400;
    color: #111827 !important;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
}

.testimonial-cta-button {
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF !important;
    background: #1F3B7A !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0;
    flex-shrink: 0;
}

.testimonial-cta-button:hover {
    background: #1a3266 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 59, 122, 0.3);
}

.testimonial-cta-privacy {
    font-size: 12px;
    font-weight: 400;
    color: #6B7280 !important;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    padding: 0 16px;
    flex-shrink: 0;
}

.testimonial-cta-link {
    color: #1F3B7A;
    text-decoration: none;
}

.testimonial-cta-link:hover {
    text-decoration: underline;
}

.mascot-container {
    max-width: 100%;
    width: 100%;
}

.mascot-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    color: rgba(17, 24, 39, 1);
}

.mascot-section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin: 80px 0 12px 0;
    padding: 0 24px;
    line-height: var(--line-height-heading);
    letter-spacing: -0.5px;
}

.mascot-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 40px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    min-height: 270px;
}

.mascot-features-list {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    align-items: stretch;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    justify-content: space-between;
    min-height: 100%;
    height: 100%;
}

.mascot-feature-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.mascot-feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.mascot-feature-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    flex-grow: 0;
    align-self: stretch;
    display: block;
    margin: 0 32px;
    height: 100%;
    min-height: 100%;
    opacity: 1;
}

.mascot-feature-block-title {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.mascot-feature-block-description {
    font-size: 15px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow: hidden;
    text-align: justify;
}

.mascot-text {
    flex: 1;
    max-width: 600px;
}

.mascot-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-on-light);
    margin-bottom: 40px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.mascot-title-start {
    color: var(--text-on-light);
}

.mascot-title-end {
    color: var(--text-on-light);
}

.mascot-title-end .letter {
    color: var(--text-on-light);
    transition: color 0.2s ease-out;
}

.mascot-title-end .letter.animated {
    color: var(--accent-primary);
}

.mascot-title-end .letter:nth-child(1).animating {
    animation: fillLetter 0.2s ease-out forwards;
}

.mascot-title-end .letter:nth-child(2).animating {
    animation: fillLetter 0.2s ease-out forwards;
}

.mascot-title-end .letter:nth-child(3).animating {
    animation: fillLetter 0.2s ease-out forwards;
}

.mascot-title-end .letter:nth-child(4).animating {
    animation: fillLetter 0.2s ease-out forwards;
}

.mascot-title-end .letter:nth-child(5).animating {
    animation: fillLetter 0.2s ease-out forwards;
}

@keyframes fillLetter {
    from {
        color: var(--text-on-light);
    }
    to {
        color: var(--accent-primary);
    }
}

.mascot-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-secondary);
    margin-bottom: 24px;
    margin-top: 0;
}

.mascot-tabs {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: #F5F3EE;
    padding: 4px;
    border-radius: 12px;
    margin: 0;
    width: 100%;
}

.mascot-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    background: transparent;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    position: relative;
    flex: 1;
    min-width: 0;
}

.mascot-tab input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.mascot-tab span {
    position: relative;
    z-index: 1;
    line-height: 1.4;
    white-space: nowrap;
    user-select: none;
}

.mascot-tab:hover:not(.active) {
    color: #111827;
    background: rgba(0, 0, 0, 0.02);
}

.mascot-tab.active {
    background: #1F3B7A;
    color: #FFFFFF !important;
}

.mascot-tab.active span {
    color: #FFFFFF !important;
}

.mascot-tab.animating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1F3B7A;
    transition: width 6s ease-out;
    z-index: 0;
    border-radius: 8px;
}

.mascot-tab.animating::before {
    width: 100%;
}

.mascot-tab.animating {
    color: #FFFFFF !important;
}

.mascot-tab.animating span {
    color: #FFFFFF !important;
    position: relative;
    z-index: 1;
}

.mascot-feature-info {
    width: 100%;
    padding: 24px;
    background: transparent;
    display: block;
}

.mascot-feature-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
}

.mascot-feature-left {
    flex: 0 0 60%;
    min-width: 0;
}

.mascot-feature-right {
    flex: 0 0 40%;
    min-width: 0;
}

.mascot-feature-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.mascot-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mascot-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.mascot-feature-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.mascot-feature-text {
    flex: 1;
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
}

.mascot-feature-text strong {
    font-weight: 600;
    color: #111827;
}

.mascot-proof-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mascot-proof-badge {
    padding: 10px 16px;
    background: #F5F3EE;
    border: 1px solid #E5E7F0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    text-align: center;
}

.mascot-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    position: relative;
    min-height: auto;
    width: 100%;
}

.mascot-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    object-fit: contain;
}

.mascot-image-default {
    width: 100%;
    max-width: 450px;
    height: 300px;
    border-radius: 16px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    gap: 12px;
}

.mascot-image-default.hidden {
    display: none !important;
}

.mascot-placeholder-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.mascot-placeholder-arrow {
    font-size: 24px;
    color: var(--accent-primary);
    font-weight: 600;
}

.mascot-feature-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #111827;
    margin: 0;
    text-align: left;
}

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


.platform-showcase-image img,
.platform-showcase-image video {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-showcase-video-wrap {
    border-radius: 24px 24px 0 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-subtle);
}

.platform-showcase-image:hover img {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2),
                0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-subsection {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-page);
}

.hero-subsection .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subsection .hero-typewriter {
    justify-content: center;
    text-align: center;
    margin-bottom: 24px;
}

.hero-subsection .hero-subtitle-single {
    text-align: center;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: #1F3B7A !important;
    margin-top: 32px;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    min-height: 60px;
    /* animation removed to prevent CLS */
}

section.hero .hero-content .hero-text .hero-subtitle,
section.hero .hero-content .hero-text p.hero-subtitle {
    color: #1F3B7A !important;
}

.hero-subtitle p {
    margin-bottom: 12px;
}

.hero-learn-more {
    animation: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4B5563;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-learn-more:hover {
    color: #1F3B7A;
}
    color: #4B5563 !important;
}

.hero-subtitle p:last-child {
    margin-bottom: 0;
    color: #1F3B7A !important;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 0;
    flex-wrap: wrap;
    min-height: 50px;
    /* animation removed to prevent CLS */
}

.how-it-works-link {
    color: #1F3B7A;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    line-height: 50px;
    height: 50px;
}

.how-it-works-link:hover {
    color: #0F2A5A;
}

.cta-primary-wrapper,
.cta-secondary-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-hint {
    font-size: 13px;
    color: #9CA3AF;
    font-weight: 400;
    line-height: 1.4;
    max-width: 400px;
    text-align: center;
    margin-top: 8px;
}

.cta-waitlist,
section.hero .cta-waitlist,
.hero-content .cta-waitlist,
.hero-cta .cta-waitlist,
section.hero .hero-content .cta-waitlist,
section.hero .hero-cta .cta-waitlist {
    color: #1F3B7A !important;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    margin-top: 16px;
}

.hero-proof {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    max-width: 600px;
    margin: 40px auto 20px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-progress-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, rgba(31, 59, 122, 0.3) 100%);
    border-radius: 1px;
    margin: 24px auto 0;
    max-width: 1200px;
    animation: progressLine 1s ease-out 0.5s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    cursor: pointer;
    z-index: 20;
    animation: bounceDown 2s ease-in-out infinite;
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: #1F3B7A;
}

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


section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.hero .btn-primary {
    color: #FFFFFF !important;
    background: var(--accent-primary) !important;
}

.hero .btn-primary:hover {
    color: #FFFFFF !important;
}

.faq-section .btn-primary {
    color: #FFFFFF !important;
    background: var(--accent-primary) !important;
}

.faq-section .btn-primary:hover {
    color: #FFFFFF !important;
}

.faq-section .btn-secondary {
    color: #111827 !important;
    background: #FFFFFF !important;
}





.solutions-section {
    background: var(--bg-page);
    padding: 60px 0 60px 0;
    position: relative;
    display: block;
}

.solutions-section .section-title {
    color: var(--text-on-light) !important;
    margin-bottom: 80px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    padding: 48px;
    border-radius: 16px;
}

.solution-card.solution-card-featured {
    background: #1F3B7A !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.9),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.solution-card-featured h3,
.solution-card-featured .solution-title-bottom,
.solution-card-featured .solution-number {
    color: #FFFFFF !important;
}

.solution-number {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary-soft);
    border-radius: 16px;
}

.solution-card h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 16px;
    color: var(--text-on-light);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-h3);
    line-height: 1.3;
}

.solution-title-bottom {
    margin-top: auto;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    text-align: left;
}

.solution-title-bottom .solution-word-right {
    align-self: flex-end;
    margin-top: 4px;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 17px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 80px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary-soft);
    border-radius: 16px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827 !important;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.feature-card > p {
    color: #111827 !important;
    line-height: 1.7;
    font-size: 17px;
}

.feature-example {
    color: #111827 !important;
    margin-top: 16px;
    padding: 16px;
    background: rgba(31, 59, 122, 0.05);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.feature-example strong {
    color: #111827 !important;
}

.social-proof-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(60px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(60px) saturate(200%) !important;
    padding: 48px;
    border-radius: 16px;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: none !important;
    border: none !important;
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 19px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-on-light);
    font-size: 17px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 15px;
}


.target-audience-section {
    background: var(--bg-page);
    padding: 100px 0;
    position: relative;
}

.target-audience-section .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 21px;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

.audience-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.audience-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
}

.audience-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-on-light);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.audience-card-quote {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.audience-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card-features li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.audience-card-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 600;
}

.audience-note {
    text-align: center;
    font-size: 17px;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-section {
    background: var(--bg-page);
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.blog-section .section-title {
    text-align: center;
    margin-bottom: 64px;
}

.blog-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    padding: 20px 0;
}

.blog-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    overflow: visible;
}

.blog-carousel-track {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 32px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    padding: 20px 0;
    scroll-padding: 20px 0;
}

.blog-carousel-track::-webkit-scrollbar {
    display: none;
}

.blog-card {
    flex: 0 0 calc(33.333% - 21.33px);
    min-width: calc(33.333% - 21.33px);
    max-width: calc(33.333% - 21.33px);
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    will-change: transform, box-shadow;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-primary);
    z-index: 2;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(31, 59, 122, 0.1) 0%, rgba(31, 59, 122, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder {
    color: var(--text-secondary);
    font-size: 16px;
    opacity: 0.5;
}

.blog-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-on-light);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.blog-card-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: #1a2f5c;
}

.blog-carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-on-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    align-self: center;
}

.blog-carousel-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(31, 59, 122, 0.05);
}

.blog-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-carousel-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    position: relative;
    z-index: 10;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-subtle);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-dot.active {
    background: var(--accent-primary);
    width: 32px;
    border-radius: 6px;
}

.blog-dot:hover {
    background: var(--accent-primary);
    opacity: 0.7;
}

.fit-section {
    background: #1F3B7A;
    position: relative;
    z-index: 1;
    color: #F9FAFB;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.fit-card {
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.fit-yes {
    background: var(--bg-card);
    border-color: rgba(31, 59, 122, 0.3);
}

.fit-no {
    background: var(--bg-card);
    border-color: rgba(139, 43, 52, 0.3);
}

.fit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.fit-card h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #111827 !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.fit-card ul {
    list-style: none;
    padding: 0;
}

.fit-card li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    color: #111827 !important;
    line-height: 1.7;
    font-size: 17px;
}

.fit-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 24px;
}

.pricing-section {
    padding: 80px 0;
    background: #F5F3EE;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.pricing-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin: 0 0 40px 0;
    line-height: var(--line-height-heading);
    letter-spacing: var(--letter-spacing-h2);
}

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

@media (max-width: 1200px) {
    .pricing-container {
        padding: 60px 30px;
    }
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 40px 20px;
    }
}

.pricing-card {
    background: var(--bg-card);
    padding: 48px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

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

.pricing-featured {
    border-color: var(--accent-primary);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-on-light);
    font-weight: 700;
    letter-spacing: -1px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: -2px;
}

.pricing-price span {
    font-size: 21px;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-price-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 400;
}

.pricing-description {
    margin-bottom: 32px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 17px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 17px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 18px;
}

.pricing-features li.pricing-feature-limited::before {
    content: "✕";
    color: #6B7280;
}

.pricing-features li.pricing-feature-limited {
    color: #6B7280;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    text-align: center;
}

.faq-section {
    background: transparent;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 0.5px solid var(--border-subtle);
    padding: 32px 0;
    transition: all 0.3s ease;
    color: var(--text-on-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible,
.faq-question:hover,
.faq-question:focus-within {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-question h3 {
    font-size: var(--font-size-h3);
    color: var(--text-on-light);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-h3);
}

.faq-toggle {
    font-size: 32px;
    color: var(--text-secondary);
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-surface);
    line-height: 1;
    padding: 0;
    text-align: center;
    outline: none;
    border: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-primary);
    color: #F9FAFB;
}

.faq-toggle:focus,
.faq-toggle:active,
.faq-toggle:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible {
    outline: none !important;
    border: none !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    will-change: max-height, opacity;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
    padding-top: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 17px;
}

.blog-preview-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
    position: relative;
    overflow: visible;
}

.blog-preview-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 50px 0 50px 0;
    background: #1F3B7A;
    position: relative;
    overflow: visible;
}

/* .blog-preview-wrapper removed - styles merged into container */

.blog-preview-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827 !important;
    text-align: center;
    margin: 0 0 16px 0;
    padding: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-preview-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #4B5563 !important;
    text-align: center;
    margin: 0 0 48px 0;
    padding: 0;
    line-height: 1.5;
}

.blog-preview-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.blog-carousel-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 32px 0;
    width: 100%;
}

.blog-carousel-container {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    gap: 0;
    overflow: visible !important;
    padding: 0;
    min-height: 500px;
    touch-action: pan-y;
    margin: 0 auto;
    cursor: grab;
}

.blog-carousel-container:active {
    cursor: grabbing;
}

.blog-preview-grid .blog-card {
    max-width: 1054px !important;
    width: 1054px !important;
    min-width: 1054px !important;
    flex-shrink: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, left 0.3s ease-out;
    will-change: transform, opacity, left;
}

.blog-card-prev {
    position: absolute !important;
    left: calc(50% - 527px - 50px - 1054px) !important;
    right: auto !important;
    transform: scale(0.9) !important;
    transform-origin: right center !important;
    width: 1054px !important;
    min-width: 1054px !important;
    max-width: 1054px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    z-index: 1 !important;
    opacity: 0.6 !important;
    cursor: pointer !important;
    visibility: visible !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-card-prev:hover {
    opacity: 0.8 !important;
    transform: scale(0.92) !important;
}

.blog-card-next {
    position: absolute !important;
    left: calc(50% + 527px + 50px) !important;
    transform: scale(0.9) !important;
    transform-origin: left center !important;
    width: 1054px !important;
    min-width: 1054px !important;
    max-width: 1054px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    z-index: 1 !important;
    opacity: 0.6 !important;
    cursor: pointer !important;
    visibility: visible !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-card-next:hover {
    opacity: 0.8 !important;
    transform: scale(0.92) !important;
}

.blog-card-current {
    position: absolute !important;
    left: calc(50% - 527px) !important;
    transform: scale(1) !important;
    z-index: 2 !important;
    opacity: 1 !important;
    width: 1054px !important;
    min-width: 1054px !important;
    max-width: 1054px !important;
    margin: 0 !important;
    flex: none !important;
    visibility: visible !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), left 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: grab;
}

.blog-card-current:active,
.blog-card-current:active .blog-card-content-wrapper,
.blog-card-current:active .blog-card-content {
    cursor: grabbing;
}

.blog-card-current .blog-card-content-wrapper {
    cursor: grab;
}

.blog-card-current .blog-card-content {
    cursor: grab;
}

.blog-carousel-container.no-transition .blog-card {
    transition: none !important;
}

.blog-carousel-container.sliding .blog-card {
    transition: transform 0.3s ease-out,
                opacity 0.3s ease-out,
                left 0.3s ease-out !important;
    will-change: transform, opacity, left;
}

.blog-carousel-container.slide-left .blog-card-prev {
    opacity: 0 !important;
}

.blog-carousel-container.slide-left .blog-card-current {
    left: calc(50% - 527px - 50px - 527px) !important;
    transform: scale(0.9) !important;
    opacity: 0.6 !important;
    z-index: 1 !important;
}

.blog-carousel-container.slide-left .blog-card-next {
    left: calc(50% - 527px) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 2 !important;
}

.blog-carousel-container.slide-right .blog-card-next {
    opacity: 0 !important;
}

.blog-carousel-container.slide-right .blog-card-current {
    left: calc(50% + 527px + 50px) !important;
    transform: scale(0.9) !important;
    opacity: 0.6 !important;
    z-index: 1 !important;
}

.blog-carousel-container.slide-right .blog-card-prev {
    left: calc(50% - 527px) !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 2 !important;
}

@media (max-width: 1200px) {
    .blog-carousel-container.slide-left .blog-card-current {
        left: calc(50% - 45vw - 10px - 90vw) !important;
    }
    .blog-carousel-container.slide-left .blog-card-next {
        left: calc(50% - 45vw) !important;
    }
    .blog-carousel-container.slide-right .blog-card-current {
        left: calc(50% + 45vw + 10px) !important;
    }
    .blog-carousel-container.slide-right .blog-card-prev {
        left: calc(50% - 45vw) !important;
    }
}

@media (max-width: 1024px) {
    .blog-carousel-container.slide-left .blog-card-current {
        left: calc(50% - 42.5vw - 10px - 85vw) !important;
    }
    .blog-carousel-container.slide-left .blog-card-next {
        left: calc(50% - 42.5vw) !important;
    }
    .blog-carousel-container.slide-right .blog-card-current {
        left: calc(50% + 42.5vw + 10px) !important;
    }
    .blog-carousel-container.slide-right .blog-card-prev {
        left: calc(50% - 42.5vw) !important;
    }
}

@media (max-width: 768px) {
    .blog-carousel-container.slide-left .blog-card-current {
        left: calc(-100vw) !important;
    }
    .blog-carousel-container.slide-left .blog-card-next {
        left: calc(50% - (100vw - 32px) / 2) !important;
    }
    .blog-carousel-container.slide-right .blog-card-current {
        left: calc(100vw) !important;
    }
    .blog-carousel-container.slide-right .blog-card-prev {
        left: calc(50% - (100vw - 32px) / 2) !important;
    }
}

.blog-preview-section {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: visible;
}

.blog-preview-container {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: visible;
}

/* .blog-preview-wrapper removed */

@media (min-width: 1440px) {
    .blog-carousel-title {
        font-size: 48px;
        margin-bottom: 40px;
    }

    .blog-preview-grid .blog-card-title {
        font-size: 48px !important;
        line-height: 1.2 !important;
        letter-spacing: -0.6px !important;
    }
}

@media (max-width: 1200px) {
    .blog-preview-grid .blog-card,
    .blog-card-current,
    .blog-card-prev,
    .blog-card-next {
        width: 90vw !important;
        min-width: 90vw !important;
        max-width: 90vw !important;
    }

    .blog-card-current {
        left: calc(50% - 45vw) !important;
    }

    .blog-card-prev {
        left: calc(50% - 45vw - 10px - 90vw) !important;
    }

    .blog-card-next {
        left: calc(50% + 45vw + 10px) !important;
    }
}

@media (max-width: 1024px) {
    .blog-carousel-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .blog-preview-grid .blog-card,
    .blog-card-current,
    .blog-card-prev,
    .blog-card-next {
        width: 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
    }

    .blog-card-current {
        left: calc(50% - 42.5vw) !important;
    }

    .blog-card-prev {
        left: calc(50% - 42.5vw - 10px - 85vw) !important;
        opacity: 0.4 !important;
    }

    .blog-card-next {
        left: calc(50% + 42.5vw + 10px) !important;
        opacity: 0.4 !important;
    }

    .blog-card-content {
        padding: 24px !important;
    }

    .blog-preview-grid .blog-card-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .blog-card-excerpt {
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {
    .blog-preview-container {
        padding: 40px 16px !important;
    }

    .blog-carousel-title {
        font-size: var(--font-size-h2);
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .blog-carousel-container {
        min-height: 480px;
    }

    .blog-preview-grid .blog-card,
    .blog-card-current,
    .blog-card-prev,
    .blog-card-next {
        width: calc(100vw - 32px) !important;
        min-width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }

    .blog-card-current {
        left: calc(50% - (100vw - 32px) / 2) !important;
    }

    .blog-card-prev {
        left: calc(50% - (100vw - 32px) / 2 - 10px - (100vw - 32px)) !important;
        opacity: 0.3 !important;
    }

    .blog-card-next {
        left: calc(50% + (100vw - 32px) / 2 + 10px) !important;
        opacity: 0.3 !important;
    }

    .blog-card-content {
        padding: 20px !important;
    }

    .blog-preview-grid .blog-card-title {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }

    .blog-card-excerpt {
        font-size: 15px !important;
    }

    .blog-card-read-link {
        font-size: 14px !important;
    }

    .blog-carousel-dots {
        gap: 8px;
        margin-top: 24px;
    }

    .blog-carousel-dot {
        width: 10px;
        height: 10px;
    }

    .blog-carousel-dot.active {
        width: 28px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .blog-preview-container {
        padding: 32px 12px !important;
    }

    .blog-carousel-title {
        font-size: var(--font-size-h2);
        margin-bottom: 20px;
    }

    .blog-carousel-container {
        min-height: 420px;
    }

    .blog-card-content {
        padding: 16px !important;
    }

    .blog-preview-grid .blog-card-title {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }

    .blog-preview-grid .blog-card-title .title-part-1,
    .blog-preview-grid .blog-card-title .title-part-2,
    .blog-preview-grid .blog-card-title .title-part-3 {
        display: block;
        margin-bottom: 4px;
    }

    .blog-card-excerpt {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .blog-card-read-link {
        font-size: 13px !important;
        margin-top: 12px !important;
    }

    .blog-carousel-dots {
        margin-top: 20px;
    }
}

.blog-preview-grid {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: visible;
}

.blog-preview-grid.center-layout {
    grid-template-columns: 1fr 1.5fr 1fr;
    position: relative;
    overflow: hidden;
}

.blog-preview-grid.center-layout .blog-card {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                scale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.blog-preview-grid.center-layout .blog-card:not(.center-card) {
    opacity: 0.5;
    transform: scale(0.95);
    cursor: pointer;
}

.blog-preview-grid.center-layout .blog-card:not(.center-card):hover {
    opacity: 0.7;
    transform: scale(0.97);
}

.blog-preview-grid.center-layout .blog-card.center-card {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.blog-preview-grid.center-layout.animating .blog-card {
    pointer-events: none;
    cursor: default;
}

.blog-preview-grid.center-layout .blog-card.center-card .blog-card-title {
    font-size: 28px;
}

.blog-preview-grid.center-layout .blog-card.center-card .blog-card-excerpt {
    font-size: 20px;
}

.blog-preview-grid.center-layout .blog-card.center-card {
    min-height: 600px;
}

.blog-preview-grid .blog-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    height: 100%;
}

.blog-preview-grid .blog-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 1054px;
    min-width: 1054px;
    max-width: 1054px;
    min-height: 500px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    flex: none;
    cursor: pointer;
}

.blog-preview-grid .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.blog-preview-grid .blog-card-overlay {
    display: none;
}

.blog-preview-grid .blog-card-branding {
    position: absolute;
    top: 31px;
    right: 63px;
    font-size: 24px;
    font-weight: 700;
    z-index: 3;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    pointer-events: none;
    line-height: 1.6666666666666667em;
}

.blog-preview-grid .blog-card-branding::before {
    content: '{ Jur';
    color: #111827;
}

.blog-preview-grid .blog-card-branding::after {
    content: 'ell }';
    color: #1F3B7A;
}

.blog-preview-grid .blog-card-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 40px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.blog-preview-grid .blog-card-content {
    background: rgba(240, 233, 220, 0.30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.80);
    border-radius: 16px;
    padding: 48px 40px 32px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "title title"
        "excerpt link";
    column-gap: 24px;
    row-gap: 0;
    align-content: space-between;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    min-width: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.blog-preview-grid .blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-preview-grid .blog-date {
    font-size: 13px;
    color: #6B7280;
    font-weight: 400;
}

.blog-preview-grid .blog-category {
    font-size: 13px;
    color: #1F3B7A;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(31, 59, 122, 0.1);
    border-radius: 12px;
}

.blog-preview-grid .blog-card-title {
    grid-area: title;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 48px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.312px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
    align-self: start;
}

.blog-preview-grid .blog-card-title .title-part-1 {
    color: #111827;
}

.blog-preview-grid .blog-card-title .title-part-2 {
    color: #1F3B7A;
}

.blog-preview-grid .blog-card-title .title-part-3 {
    color: #1F3B7A;
}

.blog-preview-grid .blog-card-title .title-part-4 {
    color: #1F3B7A;
}

.blog-preview-grid .blog-card-excerpt {
    grid-area: excerpt;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
    box-sizing: border-box;
    align-self: end;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.blog-preview-grid .blog-card-read-link {
    grid-area: link;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 10px 20px;
    height: 44px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
    align-self: end;
    justify-self: end;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-preview-grid .blog-card-read-link:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 10;
}

.blog-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    flex-shrink: 0;
    display: block;
    position: relative;
    overflow: visible;
}

.blog-carousel-dot:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.15);
}

.blog-carousel-dot.active {
    width: 36px;
    height: 12px;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.blog-carousel-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 6px;
    transform-origin: left;
    animation: fillProgress 5s linear infinite;
    will-change: transform, opacity;
}

@keyframes fillProgress {
    0% {
        transform: scaleX(0);
        opacity: 0.8;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.blog-preview-grid .blog-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1F3B7A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-preview-grid .blog-card-link:hover {
    color: #1B3270;
}

.blog-preview-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    width: 100%;
    text-align: center;
}

.blog-more-btn {
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 500;
}

.faq-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #F5F3EE !important;
    position: relative;
    color: #111827 !important;
}

.faq-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 80px 0;
    background: #F5F3EE;
    position: relative;
    color: #111827 !important;
}

.faq-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    color: #111827 !important;
}

.faq-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: #111827 !important;
    text-align: center;
    margin: 0 0 64px 0;
    padding: 0 24px;
    line-height: var(--line-height-heading);
    letter-spacing: -0.5px;
}

.faq-section .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 32px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #F5F3EE;
    color: #111827 !important;
}

.faq-section .faq-item:first-child {
    border-top: 1px solid #E5E7EB;
}

.faq-section .faq-question h3 {
    font-size: var(--font-size-h3);
    color: #111827 !important;
    font-weight: 600;
    letter-spacing: var(--letter-spacing-h3);
    margin: 0;
    line-height: 1.4;
}

.faq-section .faq-toggle {
    font-size: 24px;
    color: #4B5563;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: unset;
    line-height: 1;
    padding: 0;
    text-align: center;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.faq-section .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: unset;
    color: rgba(27, 50, 112, 1);
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-section .faq-toggle:focus,
.faq-section .faq-toggle:active,
.faq-section .faq-toggle:focus-visible,
.faq-section .faq-toggle:hover,
.faq-section .faq-toggle:focus-within {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-section .faq-question:has(.faq-toggle:focus),
.faq-section .faq-question:has(.faq-toggle:active) {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-section .faq-question:focus,
.faq-section .faq-question:active,
.faq-section .faq-question:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-section .faq-item:focus,
.faq-section .faq-item:active,
.faq-section .faq-item:focus-visible {
    outline: none !important;
    border: none !important;
}

.faq-section *:focus,
.faq-section *:active,
.faq-section *:focus-visible,
.faq-section *:focus-within {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-section .faq-toggle * {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    will-change: max-height, opacity;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-section .faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-section .faq-answer p {
    padding-top: 24px;
    color: #111827 !important;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.form-subtitle {
    display: block;
    padding: 8px 20px;
    height: auto;
    border-radius: 9999px;
    background: rgba(245, 243, 238, 0.8);
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto 24px;
    text-align: center;
    cursor: default;
    pointer-events: none;
    width: fit-content;
}


.footer {
    background: #1F3B7A;
    color: var(--text-on-light);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    margin-bottom: 80px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-brand,
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.footer-legal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 0;
}

.footer-legal .footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    justify-content: flex-start;
}

.footer-legal .footer-legal-link:hover {
    color: #FFFFFF;
}

.footer-bottom > .footer-inn {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    width: 224px;
    text-align: center;
    flex-shrink: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 17px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-nav-link:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-cta .btn-primary {
    white-space: nowrap;
}

.footer-brand .logo-img {
    height: 28px;
    width: auto;
    margin-bottom: 12px;
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 12px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-brand .logo {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
}

.footer-description {
    color: #FFFFFF;
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 24px;
    margin-top: 0;
}

.footer-brand p {
    color: #FFFFFF;
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 17px;
    text-decoration: none;
    opacity: 0.9;
    margin: 0;
    transition: opacity 0.2s ease;
}

.footer-email:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-email-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

.footer-email:hover .footer-email-icon {
    opacity: 1;
}

.footer-telegram-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-size: 17px;
    text-decoration: none;
    opacity: 0.9;
    margin: 0;
    transition: opacity 0.2s ease;
}

.footer-telegram-label:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-telegram-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

.support-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.support-button:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.3);
    color: #111827;
}

.support-button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0);
    transition: opacity 0.3s ease;
}

.support-button-text {
    transition: opacity 0.3s ease, width 0.3s ease, margin 0.3s ease;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
}

.support-button.compact .support-button-text {
    opacity: 0;
    width: 0;
    margin: 0;
    padding: 0;
}

.support-button.compact {
    width: 38px;
    height: 38px;
    padding: 0;
    gap: 0;
    justify-content: center;
    align-items: center;
}

.support-button.compact:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.footer-links-row {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    width: 100%;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-action-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 17px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    text-align: left;
}

.footer-action-link:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-cta-btn {
    white-space: nowrap;
    background: #FFFFFF !important;
    color: #1F3B7A !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    align-self: center;
    width: 100%;
    max-width: 224px;
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1F3B7A !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-column {
    flex: 0 0 auto;
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-column a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
    font-size: 17px;
    opacity: 0.9;
}

.footer-column a:hover {
    color: #FFFFFF;
    opacity: 1;
}

.footer-email-link,
.footer-link-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-email-icon,
.footer-icon {
    width: 1em;
    height: 1em;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

.footer-email-link:hover .footer-email-icon,
.footer-link-with-icon:hover .footer-icon {
    opacity: 1;
}

.footer-column a:hover .footer-icon {
    opacity: 1;
}

.footer-cta .btn-primary {
    background: #FFFFFF !important;
    color: #1F3B7A !important;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1F3B7A !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    gap: 16px;
    color: #FFFFFF;
    font-size: 15px;
    flex-wrap: wrap;
}

.footer-bottom > p {
    margin: 0;
    color: #FFFFFF;
    opacity: 0.9;
    text-align: left;
    flex-shrink: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.footer-legal-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-legal-link:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-inn {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.9;
}

.footer-legal-link-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    filter: brightness(0) invert(1);
}

.footer-legal-link:hover .footer-legal-link-icon {
    opacity: 1;
}

/* Legal Pages */
.legal-page {
    padding: 160px 0 80px;
    min-height: calc(100vh - 200px);
    background: var(--bg-page);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-on-light);
    margin: 0 0 8px;
    line-height: 1.2;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 40px;
}

.legal-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-on-light);
}

.legal-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-on-light);
    margin: 40px 0 16px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-on-light);
    margin: 24px 0 12px;
}

.legal-text p {
    margin: 0 0 16px;
}

.legal-text ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-text a:hover {
    text-decoration: none;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.legal-back:hover {
    background-color: rgba(31, 59, 122, 0.1);
    color: #1a2f5c;
}

.legal-back-arrow {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 140px 0 60px;
    }
    
    .legal-title {
        font-size: 28px;
    }
    
    .legal-text h2 {
        font-size: 20px;
    }
}

.footer-bottom > p {
    margin: 0;
    color: #FFFFFF;
    opacity: 0.9;
    text-align: center;
}

.footer-company-info {
    text-align: left;
}

.footer-company-info p {
    margin: 0;
    margin-bottom: 4px;
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.footer-company-info p:last-child {
    margin-bottom: 0;
}

.footer-bottom-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-bottom-right > p {
    margin: 0;
    color: #FFFFFF;
    opacity: 0.9;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-bottom-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.blog-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #F2F4F8 0%, #E6E9F0 100%);
    text-align: center;
}

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

.blog-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: #0B1020;
}

.blog-hero-subtitle {
    font-size: 20px;
    color: #4B5563;
    font-weight: 400;
}

.blog-section {
    padding: 80px 0;
    background: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 0.5px solid var(--border-subtle);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-placeholder {
    font-size: 64px;
    opacity: 0.3;
}

.blog-card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.blog-category {
    font-size: 13px;
    color: var(--accent-primary);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--accent-primary-soft);
    border-radius: 12px;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.blog-card-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 16px;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    color: var(--accent-primary-hover);
    transform: translateX(4px);
}

.nav-active {
    color: var(--accent-primary);
    font-weight: 500;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes progressLine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

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

    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-showcase-item:nth-child(even) {
        direction: ltr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-height: 600px;
    }

    .testimonial-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .jurell-features-section {
        padding: 60px 0;
    }

    .jurell-features-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .jurell-features-text {
        max-width: 100%;
        text-align: center;
    }

    .jurell-features-title {
        font-size: 36px;
    }

    .jurell-features-subtitle {
        font-size: 16px;
    }

    .jurell-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .jurell-features-visual {
        max-width: 100%;
        order: -1;
    }

    .platform-showcase-section {
        padding: 60px 0;
    }

    .platform-showcase-title {
        font-size: var(--font-size-h2);
        margin-bottom: 32px;
    }

    .platform-showcase-image {
        padding: 0 16px;
    }

    .platform-showcase-image img,
    .platform-showcase-image video,
    .platform-showcase-video-wrap {
        border-radius: 16px 16px 0 0;
    }

    /* Hide video controls on mobile to reduce DOM depth */
    .platform-showcase-video-controls {
        display: none;
    }

    .platform-showcase-cta {
        margin-top: 0;
    }

    .platform-showcase-cta .btn-secondary {
        border-radius: 0 0 16px 16px;
    }

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

    .blog-preview-grid.center-layout .blog-card.center-card .blog-card-title {
        font-size: 24px;
    }

    .blog-preview-grid.center-layout .blog-card.center-card .blog-card-excerpt {
        font-size: 16px;
    }

    .blog-preview-grid .blog-card {
        min-height: 450px;
    }

    .blog-preview-grid .blog-card-content {
        padding: 32px;
    }

    .blog-preview-grid .blog-card-title {
        font-size: 24px;
    }

    .blog-preview-grid .blog-card-excerpt {
        font-size: 16px;
    }

    .blog-preview-grid.center-layout .blog-card.center-card .blog-card-image {
        height: 200px;
    }

    .mascot-section {
        padding: 0;
    }

    .mascot-content-wrapper {
        padding: 0;
    }

    .mascot-section-title {
        font-size: var(--font-size-h2);
        margin: 60px 0 10px 0;
    }

    .mascot-content {
        padding: 32px 24px;
    }

    .testimonials-container {
        padding: 48px 0 0 0;
    }

    .testimonials-header {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .testimonials-title {
        font-size: var(--font-size-h2);
        margin: 0;
    }

    .testimonials-subtitle {
        font-size: var(--font-size-small);
        margin: 4px 0 0 0;
    }

    .testimonials-nav-btn {
        width: 36px;
        height: 36px;
    }

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

    .testimonial-card {
        padding: 24px;
        max-width: 100%;
        min-height: 550px;
        height: 550px;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .mascot-features-list {
        flex-direction: column;
        gap: 24px;
    }

    .mascot-feature-block {
        flex: 1 1 0;
        margin-bottom: 0;
    }

    .mascot-feature-block:not(:last-child) {
        margin-bottom: 0;
    }

    .mascot-feature-block-title {
        font-size: var(--font-size-h3);
    }

    .mascot-feature-icon {
        width: 28px;
        height: 28px;
    }

    .mascot-feature-block-description {
        font-size: 14px;
    }

    .mascot-text {
        max-width: 100%;
        text-align: center;
    }

    .mascot-title {
        font-size: 48px;
    }

    .mascot-subtitle {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .mascot-features {
        gap: 10px;
        justify-content: center;
    }

    .mascot-checkbox {
        font-size: 15px;
        padding: 10px 20px;
    }

    .mascot-feature-info {
        padding: 32px;
    }

    .mascot-feature-title {
        font-size: 28px;
    }

    .mascot-feature-description {
        font-size: 16px;
    }

    .mascot-image {
        max-width: 100%;
        order: -1;
        min-height: 400px;
    }

    .mascot-image img {
        max-width: 200px;
    }

    .mascot-feature-info {
        width: 450px;
        height: 350px;
    }

    .trust-section {
        padding: 60px 0;
    }

    .trust-section-title {
        font-size: 36px;
    }

    .trust-main-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .trust-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }

    .hero-title {
        margin-bottom: 32px;
    }

    .hero-cta {
        justify-content: center;
        align-items: center;
        margin-top: 0;
        width: 100%;
    }

    .hero-learn-more {
        text-align: center !important;
    }

    .hero-image {
        max-width: 100%;
        order: -1;
        aspect-ratio: 1 / 1;
    }

    .hero-portrait {
        max-width: 300px;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-typewriter {
        font-size: 32px;
        min-height: 48px;
        justify-content: center;
    }

    .hero-subtitle-single {
        font-size: 24px;
    }

    .hero-subsection {
        padding: 40px 0;
    }

    .hero-subsection .hero-typewriter {
        font-size: 28px;
        min-height: 40px;
    }

    .hero-subsection .hero-subtitle-single {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 15px;
    }

    .nav-links a:not(.btn-login) {
        display: none;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary-wrapper,
    .cta-secondary-wrapper {
        width: 100%;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

    .pain-list,
    .features-grid,
    .fit-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
        padding: 0;
    }

    .pricing-title {
        font-size: var(--font-size-h2);
        margin-bottom: 32px;
    }

    .pricing-card:hover,
    .solution-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }

    .pricing-header h3 {
        font-size: var(--font-size-h3);
        letter-spacing: var(--letter-spacing-h3);
    }

    .pricing-price {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .pricing-price span {
        font-size: 16px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }

    .footer-bottom p {
        text-align: left;
        width: 100%;
    }

    .footer-legal-links {
        width: 100%;
    }

    .footer-inn {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 13px;
        text-align: left !important;
        width: auto;
    }

    .faq-container {
        padding: 40px 0 60px 0;
    }

    .faq-title {
        font-size: var(--font-size-h2);
        margin-bottom: 32px;
    }

    .faq-section .faq-item {
        padding: 24px 0;
    }

    .faq-section .faq-question h3 {
        font-size: var(--font-size-h3);
    }

    .blog-preview-container {
        padding: 60px 0;
    }

    .blog-preview-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .blog-preview-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid-hiremate {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric-hero-card {
        grid-row: auto;
        padding: 48px 32px;
    }

    .metric-hero-title {
        font-size: 28px;
    }

    section {
        padding: 80px 0;
    }

    .modules-tabs {
        flex-direction: column;
        gap: 4px;
    }

    .module-tab {
        min-width: auto;
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .tab-number {
        font-size: 12px;
    }

    .tab-title {
        font-size: 14px;
    }

    .module-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .module-description {
        font-size: 18px;
    }

    .modules-content {
        min-height: 500px;
    }

    .blog-hero-title {
        font-size: 48px;
    }

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

    .blog-preview-container {
        padding: 40px 0;
    }

    .blog-preview-title {
        font-size: 24px;
        margin-bottom: 8px;
        padding: 0 16px;
    }

    .blog-preview-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-preview-grid .blog-card {
        min-height: 400px;
    }

    .blog-preview-grid .blog-card-content-wrapper {
        padding: 20px;
    }

    .blog-preview-grid .blog-card-content {
        padding: 32px 24px;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "excerpt"
            "link";
        gap: 16px;
    }

    .blog-preview-grid .blog-card-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.312px;
        width: 100%;
    }

    .blog-preview-grid .blog-card-excerpt {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .blog-preview-grid .blog-card-read-link {
        width: auto;
        text-align: center;
        justify-self: start;
    }

    .blog-preview-grid .blog-card-branding {
        top: 16px;
        right: 16px;
        font-size: 14px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .footer-legal-link {
        font-size: 13px;
    }

    .faq-title {
        font-size: var(--font-size-h2);
        margin-bottom: 32px;
    }

    .faq-section .faq-item {
        padding: 20px 0;
    }

    .faq-section .faq-question h3 {
        font-size: var(--font-size-h3);
    }

    .faq-section .faq-answer p {
        font-size: var(--font-size-small);
        padding-top: 16px;
    }

    .footer-links {
        align-items: flex-start;
        width: 100%;
    }

    .footer-links-row {
        flex-direction: row;
        gap: 32px;
        width: 100%;
    }

    .footer-nav {
        align-items: flex-start;
        flex: 1;
    }

    .footer-actions {
        align-items: flex-start;
        flex: 1;
    }

    .footer-action-link {
        text-align: left;
    }

    .footer-cta-btn {
        max-width: 100%;
    }
}

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

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .jurell-features-section {
        padding: 40px 0;
    }

    .jurell-features-title {
        font-size: 28px;
    }

    .jurell-features-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .jurell-feature-card {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 52px;
    }

    .platform-showcase-section {
        padding: 40px 0;
    }

    .platform-showcase-title {
        font-size: var(--font-size-h2);
        margin-bottom: 24px;
    }

    .platform-showcase-image {
        padding: 0 16px;
    }

    .platform-showcase-image img,
    .platform-showcase-image video,
    .platform-showcase-video-wrap {
        border-radius: 12px 12px 0 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                    0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .platform-showcase-cta {
        margin-top: 0;
    }

    .platform-showcase-cta .btn-secondary {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }

    .mascot-section {
        padding: 0;
    }

    .mascot-content-wrapper {
        padding: 0;
    }

    .mascot-section-title {
        font-size: var(--font-size-h2);
        margin: 40px 0 8px 0;
        padding: 0 16px;
    }

    .mascot-content {
        padding: 24px 16px;
    }

    .testimonials-container {
        padding: 40px 0 0 0;
    }

    .testimonials-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .testimonials-title {
        font-size: var(--font-size-h2);
        margin: 0;
    }

    .testimonials-subtitle {
        font-size: var(--font-size-small);
        margin: 4px 0 0 0;
    }

    .testimonials-nav {
        flex-shrink: 0;
    }

    .testimonials-nav-btn {
        width: 32px;
        height: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 550px;
        height: 550px;
    }

    .mascot-features-list {
        flex-direction: column;
        gap: 20px !important;
    }

    .mascot-feature-block {
        margin-bottom: 20px !important;
        max-width: 100%;
        padding: 0;
    }

    .mascot-feature-block:last-child {
        margin-bottom: 0 !important;
    }

    .mascot-feature-block:not(:last-child) {
        padding-bottom: 0;
        border-bottom: none;
    }

    .mascot-feature-divider {
        display: none;
    }

    .mascot-feature-block-title {
        font-size: var(--font-size-h3);
    }

    .mascot-feature-block-description {
        font-size: var(--font-size-xs);
    }

    .mascot-title {
        font-size: 36px;
    }

    .mascot-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .mascot-features {
        gap: 8px;
        justify-content: center;
    }

    .mascot-checkbox {
        font-size: 14px;
        padding: 8px 16px;
    }

    .mascot-feature-info {
        padding: 24px;
    }

    .mascot-feature-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .mascot-feature-description {
        font-size: 15px;
    }

    .mascot-image {
        min-height: 350px;
    }

    .mascot-image img {
        max-width: 167px;
    }

    .mascot-feature-info {
        width: 450px;
        height: 350px;
        padding: 24px;
    }

    .trust-section {
        padding: 40px 0;
    }

    .trust-section-title {
        font-size: 28px;
    }

    .trust-main-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .trust-cards-grid {
        gap: 20px;
    }

    .trust-card {
        padding: 32px 24px;
    }

    .trust-card-title {
        font-size: 20px;
    }

    .trust-card-text {
        font-size: 15px;
    }

    .hero-content {
        padding: 0 16px;
    }

    section {
        padding: 64px 0;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.8px;
        margin-bottom: 32px;
    }

    .hero-cta {
        justify-content: center;
        align-items: center;
        margin-top: 0;
        width: 100%;
    }

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

    .hero-typewriter {
        font-size: 24px;
        min-height: 36px;
    }

    .hero-subtitle-single {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

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

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

    .metrics-grid-hiremate {
        grid-template-columns: 1fr;
    }

    .metric-hero-card {
        padding: 40px 24px;
    }

    .metric-hero-title {
        font-size: 24px;
    }

    .metrics-grid-hiremate .metric-value {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .blog-hero {
        padding: 140px 0 60px;
    }

    .blog-hero-title {
        font-size: 36px;
    }

    .blog-hero-subtitle {
        font-size: 18px;
    }

    .blog-card-image {
        height: 160px;
    }
}

section.hero .hero-content h1.hero-title span.ai-highlight,
section.hero .hero-content .hero-title span.ai-highlight,
section.hero h1.hero-title span.ai-highlight,
section.hero .hero-title span.ai-highlight,
.ai-highlight {
    color: #1F3B7A !important;
}

section.hero .hero-content .hero-text p.hero-subtitle,
section.hero .hero-content .hero-text .hero-subtitle,
section.hero .hero-content p.hero-subtitle,
section.hero .hero-content .hero-subtitle,
section.hero p.hero-subtitle,
section.hero .hero-subtitle {
    color: #1F3B7A !important;
}

.article-content {
    width: 100%;
    padding: 160px 0 80px;
    background: var(--bg-page);
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.article-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1F3B7A;
    text-decoration: none;
    margin: 0 0 24px 0;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.article-back-button:hover {
    background-color: rgba(31, 59, 122, 0.1);
    color: #1a2f5c;
}

.article-back-arrow {
    font-size: 18px;
    font-weight: 600;
}

.article-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #111827;
    margin: 0 0 32px 0;
    text-align: center;
}

.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 0 0 32px 0;
    display: block;
    object-fit: cover;
}

.article-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #111827;
    max-width: 100%;
}

.article-excerpt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 48px 0;
    padding: 24px;
    background: rgba(31, 59, 122, 0.05);
    border-left: 4px solid #1F3B7A;
    border-radius: 8px;
    font-style: italic;
}

.article-text h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin: 56px 0 24px 0;
    letter-spacing: -0.3px;
}

.article-text h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #1F3B7A;
    margin: 40px 0 16px 0;
}

.article-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #111827;
    margin: 0 0 24px 0;
    text-align: left;
}

.article-text ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.article-text ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #111827;
    margin: 0 0 16px 0;
    padding-left: 28px;
    position: relative;
}

.article-text ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1F3B7A;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .article-content {
        padding: 140px 0 60px;
    }

    .article-back-button {
        font-size: 14px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .article-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .article-excerpt {
        font-size: 18px;
        padding: 20px;
        margin-bottom: 32px;
    }

    .article-text {
        font-size: 16px;
    }

    .article-text h2 {
        font-size: 28px;
        margin: 48px 0 20px 0;
    }

    .article-text h3 {
        font-size: 22px;
        margin: 32px 0 14px 0;
    }

    .article-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .article-text ul li {
        font-size: 16px;
        padding-left: 24px;
    }
}

@media (max-width: 480px) {
    .article-content .container {
        padding: 0 16px;
    }

    .article-back-button {
        font-size: 13px;
        padding: 6px 10px;
        margin-bottom: 16px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-excerpt {
        font-size: 16px;
        padding: 16px;
    }

    .article-text h2 {
        font-size: 24px;
    }

    .article-text h3 {
        font-size: 20px;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-consent-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-consent-link {
    color: #1F3B7A;
    text-decoration: none;
}

.cookie-consent-link:hover {
    text-decoration: underline;
}

.cookie-consent-btn {
    background: #1F3B7A;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.cookie-consent-btn:hover {
    background: #1B3270;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px 20px;
    }

    .cookie-consent-banner .cookie-consent-text {
        font-size: 13px;
        text-align: center;
        max-width: none;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}
