/* Core Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #4169e1;
    --color-primary-dark: #1d3fc1;
    --color-secondary: #0f172a;
    --color-accent: #14b8a6;
    --color-background: #f8fbff;
    --color-surface: #ffffff;
    --color-muted: #64748b;
    --color-border: rgba(15, 23, 42, 0.08);
    --color-border-strong: rgba(15, 23, 42, 0.16);
    --color-shadow: rgba(15, 23, 42, 0.08);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --transition: all 0.25s ease;
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --space-xxs: 0.375rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --font-display-xl: clamp(2.4rem, 4vw, 3.6rem);
    --font-display-lg: clamp(1.8rem, 3vw, 2.6rem);
    --font-heading: clamp(1.3rem, 2vw, 1.8rem);
    --font-body-lg: 1.1rem;
    --font-body: 1rem;
    --font-small: 0.9rem;
}

body {
    font-family: var(--font-base);
    background: var(--color-background);
    color: var(--color-secondary);
    line-height: 1.6;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 15px 35px -15px rgba(65, 105, 225, 0.6);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(65, 105, 225, 0.12);
    color: var(--color-primary-dark);
}

.btn-secondary:hover {
    background: rgba(65, 105, 225, 0.2);
}

.btn-outline {
    border: 1px solid var(--color-border);
    background: white;
    color: var(--color-secondary);
}

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

.btn-link {
    background: transparent;
    color: var(--color-secondary);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

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

.btn-ghost,
.btn-tertiary {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--color-muted);
    padding: 0.65rem 1.25rem;
}

.btn-ghost:hover,
.btn-tertiary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

.primary-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 251, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.25rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-emblem {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 1) 0%, rgba(20, 184, 166, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 16px 35px -18px rgba(31, 83, 212, 0.65);
}

.logo-emblem__glow {
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.55), transparent 65%);
    opacity: 0.85;
    filter: blur(18px);
}

.logo-emblem__letter {
    position: relative;
    font-family: var(--font-display);
    font-weight: 600;
    color: #ffffff;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.logo-image {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
}

.logo-wordmark__name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-wordmark__tagline {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #94a3b8;
}

/* -------------------------------------------------------------------------
 * Primary navigation – desktop
 * ---------------------------------------------------------------------- */

@media (min-width: 769px) {
    .primary-navigation {
        flex: 1;
    }

    .primary-navigation ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1.75rem;
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--color-muted);
    }

    .primary-navigation ul li {
        display: flex;
        align-items: center;
    }

    /* Text links (exclude buttons) */
    .primary-navigation ul li > a:not(.btn) {
        position: relative;
        padding: 0.25rem 0;
        transition: color 0.18s ease;
    }

    .primary-navigation ul li > a:not(.btn)::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0.15rem;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--color-primary), #6366f1);
        transition: width 0.2s ease-out;
    }

    .primary-navigation ul li > a:not(.btn):hover {
        color: var(--color-primary);
    }

    .primary-navigation ul li > a:not(.btn):hover::after {
        width: 100%;
    }

    /* CTA zone (Autentificare / Începe gratuit sau Panou / Deconectare) */
    .primary-navigation ul li.nav-cta:first-of-type {
        margin-left: 2rem;
    }

    .primary-navigation ul li.nav-cta .btn {
        margin: 0;
        padding: 0.55rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 999px;
        box-shadow: 0 10px 25px -15px rgba(15, 23, 42, 0.45);
    }

    .primary-navigation ul li.nav-cta .btn-link {
        padding-inline: 0.75rem;
        box-shadow: none;
    }

    /* Refined hover for primary CTA in header */
    .primary-navigation ul li.nav-cta--primary .btn-primary {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        box-shadow: 0 10px 25px -15px rgba(15, 23, 42, 0.55);
        transform: translateY(0);
    }

    .primary-navigation ul li.nav-cta--primary .btn-primary:hover {
        filter: none;
        transform: translateY(-1px);
        box-shadow: 0 18px 40px -18px rgba(37, 99, 235, 0.65);
        background: linear-gradient(135deg, #4f46e5 0%, #1d4ed8 100%);
    }
}

/* Legacy / shared button tweaks inside nav (mobile overrides come later) */
.primary-navigation .btn {
    margin: 0;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
}

.primary-navigation .btn-link {
    padding: 0.5rem 1rem;
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 50%;
    background: white;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle::before,
.menu-toggle::after,
.menu-icon {
    content: '';
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.menu-toggle::before {
    top: 38%;
}

.menu-toggle::after {
    bottom: 38%;
}

.menu-toggle .menu-icon {
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu-toggle[aria-expanded="true"]::before {
    transform: translate(-50%, 6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
    transform: translate(-50%, -6px) rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    opacity: 0;
}

.hero-section {
    padding: 6rem 0 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(65, 105, 225, 0.12);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.4vw, 3.1rem);
    line-height: 1.1;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.hero-metrics strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-visual {
    position: relative;
}

.hero-dashboard-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px -35px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
}

.hero-dashboard-card header {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(20, 184, 166, 0.15) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    gap: 0.65rem;
}

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

.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #34d399; }

.hero-dashboard-body {
    padding: 1.75rem;
}

.hero-dashboard-body h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-dashboard-body ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-dashboard-body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(65, 105, 225, 0.06);
    color: var(--color-secondary);
}

.doc-status {
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.doc-status.success { background: rgba(34, 197, 94, 0.12); color: #109b46; }
.doc-status.syncing { background: rgba(59, 130, 246, 0.12); color: var(--color-primary); }
.doc-status.scheduled { background: rgba(234, 179, 8, 0.12); color: #b45309; }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.section-header p {
    color: var(--color-muted);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.feature-section,
.workflow-section,
.deliverables-section,
.comparison-section,
.example-section,
.impact-section,
.resource-section,
.testimonial-section,
.faq-section {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px -24px rgba(15, 23, 42, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: rgba(65, 105, 225, 0.12);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.workflow-step {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(65, 105, 225, 0.2);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(65, 105, 225, 0.12);
    color: var(--color-primary);
    display: inline-grid;
    place-items: center;
    font-weight: 600;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.deliverable-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    background: rgba(65, 105, 225, 0.08);
    color: var(--color-secondary);
    border: 1px solid rgba(65, 105, 225, 0.15);
}

.deliverable-card i {
    color: var(--color-primary);
    font-size: 1.4rem;
}

.comparison-section .section-header p,
.example-section .section-header p {
    max-width: 720px;
    margin: 0 auto;
}

.comparison-table {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: var(--color-surface);
    box-shadow: 0 25px 60px -45px rgba(15, 23, 42, 0.35);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    vertical-align: top;
}

.comparison-table th {
    background: rgba(65, 105, 225, 0.12);
    font-weight: 600;
    color: var(--color-secondary);
}

.comparison-table tbody tr:hover {
    background: rgba(65, 105, 225, 0.05);
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.75rem;
    box-shadow: 0 25px 60px -45px rgba(15, 23, 42, 0.35);
}

.example-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.example-card ul {
    display: grid;
    gap: 0.6rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.example-card strong {
    color: var(--color-secondary);
}

.example-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.example-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    border: 1px solid rgba(20, 184, 166, 0.35);
    font-weight: 600;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.impact-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 20px 55px -45px rgba(15, 23, 42, 0.35);
}

.impact-card h3 {
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.impact-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* --- Homepage Refresh Components --- */

.section {
    padding: calc(var(--space-xl) + 1rem) 0;
    position: relative;
    scroll-margin-top: 110px;
}

.section--band {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.section--hero {
    padding-top: calc(var(--space-lg) + 1rem);
    padding-bottom: calc(var(--space-lg) + 0.5rem);
    background: linear-gradient(125deg, rgba(65, 105, 225, 0.1) 0%, rgba(20, 184, 166, 0.08) 45%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.section--hero::before,
.section--hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.45;
    z-index: 0;
}

.section--hero::before {
    width: 460px;
    height: 460px;
    background: rgba(65, 105, 225, 0.32);
    top: -220px;
    right: -180px;
}

.section--hero::after {
    width: 360px;
    height: 360px;
    background: rgba(20, 184, 166, 0.26);
    bottom: -200px;
    left: -140px;
}

.section--cta {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.12) 0%, rgba(29, 63, 193, 0.22) 60%);
    color: var(--color-secondary);
}

.hero {
    width: min(1200px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 520px;
}

.hero--full {
    width: min(1200px, 92vw);
}

.section__header {
    max-width: 760px;
    margin: 0 auto var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.section__header--alt {
    max-width: none;
    text-align: left;
    display: grid;
    gap: var(--space-xs);
}

.section__header--narrow {
    max-width: 620px;
}

.section__header--wide {
    max-width: 920px;
}

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

.section__header--left {
    text-align: left;
    align-items: flex-start;
}

.section__header--split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.section__header--split .section__title {
    margin-bottom: 0;
}

.section__header--split > div {
    display: grid;
    gap: var(--space-xxs);
}

.section__header--split p {
    max-width: 420px;
    text-align: right;
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--font-display-lg);
}

.section__subtitle {
    color: var(--color-muted);
    font-size: var(--font-body-lg);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xxs) var(--space-sm);
    border-radius: 999px;
    background: rgba(65, 105, 225, 0.12);
    color: var(--color-primary-dark);
    font-size: var(--font-small);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge--soft {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.hero__content {
    display: grid;
    gap: var(--space-md);
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero__tagline {
    font-size: var(--font-small);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(15, 23, 42, 0.65);
    font-weight: 600;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 3.8vw, 3.25rem);
    color: var(--color-secondary);
    line-height: 1.04;
}

.hero__subtitle {
    color: var(--color-muted);
    font-size: 1.05rem;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero__actions .btn {
    box-shadow: 0 18px 40px -25px rgba(65, 105, 225, 0.55);
}

.hero__actions .btn.btn-secondary {
    border: 1px solid rgba(65, 105, 225, 0.2);
    background: rgba(255, 255, 255, 0.6);
}

.hero__assurance {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(20, 184, 166, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 184, 166, 0.22);
    align-items: center;
}

.hero-assurance__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(65, 105, 225, 0.22) 100%);
    display: grid;
    place-items: center;
    color: #0f766e;
    font-size: 1.2rem;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
}

.hero-assurance__icon i {
    position: relative;
    z-index: 2;
    color: #0f766e;
    display: block;
}

.hero__assurance strong {
    font-size: 1rem;
    color: var(--color-secondary);
}

.hero__assurance p {
    margin: 0;
    font-size: var(--font-small);
    color: var(--color-muted);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-sm);
}

.hero-stat {
    background: rgba(65, 105, 225, 0.08);
    border: 1px solid rgba(65, 105, 225, 0.18);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: grid;
    gap: 0.2rem;
}

.hero-stat__value {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.hero-stat__label {
    font-size: var(--font-small);
    color: var(--color-muted);
}

.hero__advantages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
    font-size: var(--font-small);
    color: var(--color-muted);
}

.hero__advantages li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    background: rgba(248, 251, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.65rem;
}

.hero__advantages i {
    color: var(--color-primary);
    margin-top: 0.15rem;
}

.section--trust {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust__intro {
    max-width: 420px;
    display: grid;
    gap: var(--space-sm);
}

.trust__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-secondary);
}

.trust__subtitle {
    color: var(--color-muted);
    font-size: var(--font-body);
}

.trust__logos {
    display: grid;
    gap: var(--space-sm);
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    flex: 1;
}

.trust-logo {
    background: rgba(65, 105, 225, 0.06);
    border: 1px solid rgba(65, 105, 225, 0.18);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.solution-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 255, 0.98) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: var(--space-xl);
    display: grid;
    gap: var(--space-md);
    box-shadow: 0 20px 50px -35px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(65, 105, 225, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(20, 184, 166, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.solution-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(20, 184, 166, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 75px -40px rgba(65, 105, 225, 0.5), 0 0 0 1px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

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

.solution-card:hover::after {
    opacity: 1;
}

.solution-card__head {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.solution-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(20, 184, 166, 0.12) 100%);
    color: var(--color-primary-dark);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px -10px rgba(65, 105, 225, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.solution-card:hover .solution-card__icon {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 28px -12px rgba(65, 105, 225, 0.5);
}

.solution-card__title {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
    position: relative;
    z-index: 1;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

.solution-card__text {
    color: var(--color-muted);
    font-size: var(--font-body);
    position: relative;
    z-index: 1;
    line-height: 1.6;
    margin: 0;
}

.solution-card__list {
    display: grid;
    gap: 0.65rem;
    padding: var(--space-md) 0 0 0;
    margin: 0;
    list-style: none;
    font-size: 0.95rem;
    color: var(--color-secondary);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding-top: var(--space-md);
}

.solution-card__list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    line-height: 1.5;
    padding: 0.25rem 0;
}

.solution-card__list i {
    color: var(--color-primary);
    margin-top: 0.15rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.split-layout {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
}

.split-layout--reverse {
    flex-direction: row-reverse;
}

.split-layout__primary {
    flex: 1;
    display: grid;
    gap: var(--space-md);
    max-width: 520px;
}

.split-layout__secondary {
    flex: 1;
    display: grid;
    gap: var(--space-sm);
}

.split-layout__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.split-layout__list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    line-height: 1.5;
}

.split-layout__list i {
    color: var(--color-primary);
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.split-layout__cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
    margin-top: var(--space-xs);
}

.timeline {
    position: relative;
    padding-left: 3.5rem;
    display: grid;
    gap: var(--space-lg);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 1.5rem;
    width: 3px;
    background: linear-gradient(180deg, rgba(65, 105, 225, 0.3) 0%, rgba(20, 184, 166, 0.3) 100%);
    border-radius: 999px;
}

.timeline__item {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: var(--space-lg);
    box-shadow: 0 20px 50px -35px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(65, 105, 225, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline__item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(20, 184, 166, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.timeline__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(20, 184, 166, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.timeline__item:hover {
    transform: translateX(4px);
    box-shadow: 0 24px 60px -40px rgba(65, 105, 225, 0.45), 0 0 0 1px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

.timeline__item:hover::before {
    opacity: 1;
}

.timeline__item:hover::after {
    opacity: 1;
}

.timeline__item > * {
    position: relative;
    z-index: 2;
}

.timeline__index {
    position: absolute;
    left: -3.25rem;
    top: 1.5rem;
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2) 0%, rgba(20, 184, 166, 0.25) 100%);
    border: 3px solid rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    box-shadow: 0 8px 20px -10px rgba(65, 105, 225, 0.4), 0 0 0 2px rgba(65, 105, 225, 0.1);
    transition: all 0.3s ease;
    z-index: 3;
}

.timeline__item:hover .timeline__index {
    transform: scale(1.1);
    box-shadow: 0 12px 28px -12px rgba(65, 105, 225, 0.5), 0 0 0 3px rgba(65, 105, 225, 0.15);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.3) 0%, rgba(20, 184, 166, 0.35) 100%);
}

.timeline__title {
    font-size: 1.15rem;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
    line-height: 1.3;
}

.timeline__text {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.section--deliverables {
    background: linear-gradient(180deg, rgba(244, 247, 255, 0.65) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.deliverables-highlight {
    display: grid;
    gap: 0.4rem;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.12) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(65, 105, 225, 0.25);
    max-width: 360px;
    box-shadow: 0 8px 24px -12px rgba(65, 105, 225, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.deliverables-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(20, 184, 166, 0.8) 100%);
}

.deliverables-highlight__value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-family: var(--font-display);
}

.deliverables-highlight__label {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: var(--space-lg);
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.deliverables-list li {
    break-inside: avoid;
    display: flex;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(65, 105, 225, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.deliverables-list li::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.06) 0%, rgba(20, 184, 166, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.deliverables-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px -35px rgba(65, 105, 225, 0.4), 0 0 0 1px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

.deliverables-list li:hover::before {
    opacity: 1;
}

.deliverables-list li > * {
    position: relative;
    z-index: 1;
}

.deliverables-list i {
    color: var(--color-primary);
    margin-top: 0.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(65, 105, 225, 0.2));
    transition: transform 0.3s ease;
}

.deliverables-list li:hover i {
    transform: scale(1.15);
    color: var(--color-primary-dark);
}

.comparison-summary {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.comparison-summary__item {
    flex: 1;
    min-width: 180px;
    background: rgba(65, 105, 225, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(65, 105, 225, 0.18);
    padding: var(--space-sm) var(--space-md);
    display: grid;
    gap: 0.2rem;
}

.comparison-summary__value {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.comparison-summary__label {
    font-size: var(--font-small);
    color: var(--color-muted);
}

.section--outcomes {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(20, 184, 166, 0.06) 100%);
}

.outcomes {
    display: grid;
    gap: var(--space-lg);
}

.outcomes__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.outcomes__case {
    display: grid;
    gap: var(--space-md);
}

.outcomes-cards {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(2, 1fr);
}

.outcomes-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: var(--space-lg);
    display: grid;
    gap: var(--space-md);
    box-shadow: 0 20px 50px -35px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(65, 105, 225, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.outcomes-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(20, 184, 166, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outcomes-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -40px rgba(65, 105, 225, 0.45), 0 0 0 1px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

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

.outcomes-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-display);
    margin: 0;
}

.outcomes-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

.outcomes-card ul li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.outcomes-card ul li strong {
    color: var(--color-secondary);
    font-weight: 600;
    min-width: 60px;
}

.outcomes-chipset {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.outcomes-chip {
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(20, 184, 166, 0.12) 100%);
    border: 1px solid rgba(65, 105, 225, 0.25);
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px -6px rgba(65, 105, 225, 0.3);
    transition: all 0.3s ease;
}

.outcomes-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(65, 105, 225, 0.4);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.2) 0%, rgba(20, 184, 166, 0.18) 100%);
}

.outcomes__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.outcomes-metric {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(20, 184, 166, 0.25);
    padding: var(--space-lg);
    display: grid;
    gap: var(--space-sm);
    box-shadow: 0 20px 50px -35px rgba(20, 184, 166, 0.35), 0 0 0 1px rgba(20, 184, 166, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.outcomes-metric::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.8) 0%, rgba(65, 105, 225, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outcomes-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -40px rgba(20, 184, 166, 0.45), 0 0 0 1px rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.4);
}

.outcomes-metric:hover::before {
    opacity: 1;
}

.outcomes-metric__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(65, 105, 225, 0.18) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: grid;
    place-items: center;
    color: var(--color-primary-dark);
    font-size: 1.3rem;
    box-shadow: 0 4px 12px -6px rgba(20, 184, 166, 0.3);
    transition: all 0.3s ease;
}

.outcomes-metric:hover .outcomes-metric__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px -8px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3) 0%, rgba(65, 105, 225, 0.25) 100%);
}

.outcomes-metric__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-display);
    line-height: 1.2;
}

.outcomes-metric__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.3;
}

.outcomes-metric__description {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}
.metric-chip {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: rgba(65, 105, 225, 0.08);
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
}

.metric-chip__value {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.metric-chip__label {
    font-size: var(--font-small);
    color: var(--color-muted);
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: var(--space-sm);
    width: 100%;
    max-width: 380px;
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(238, 245, 255, 0.9) 100%);
    box-shadow: 0 28px 60px -45px rgba(15, 23, 42, 0.45);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -25%;
    background: radial-gradient(circle at 20% -10%, rgba(65, 105, 225, 0.32), transparent 55%);
    filter: blur(70px);
    z-index: -1;
    opacity: 0.9;
}

.hero-visual--summary {
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-xs);
}

.hero-visual--summary .hero__assurance,
.hero-visual--summary .hero__stats,
.hero-visual--summary .hero__advantages--panel {
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 35px -38px rgba(15, 23, 42, 0.4);
    padding: 0.5rem var(--space-sm);
}

.hero-visual--summary .hero__assurance {
    display: flex;
    gap: var(--space-xs);
    align-items: center;
    padding: 0.5rem var(--space-sm);
}

.hero-visual--summary .hero-assurance__icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.hero-visual--summary .hero__assurance strong {
    font-size: 0.9rem;
}

.hero-visual--summary .hero__assurance p {
    font-size: 0.8rem;
    line-height: 1.3;
}

.hero-visual--summary .hero__stats {
    gap: var(--space-xs);
}

.hero-visual--summary .hero-stat {
    padding: 0.5rem var(--space-sm);
    gap: 0.15rem;
}

.hero-visual--summary .hero-stat__value {
    font-size: 1.1rem;
}

.hero-visual--summary .hero-stat__label {
    font-size: 0.8rem;
    line-height: 1.3;
}

.hero-visual--summary .hero__advantages--panel {
    padding: 0.5rem var(--space-sm);
    gap: 0.25rem;
}

.hero-visual--summary .hero__advantages--panel li {
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.4;
}

.hero-visual--summary .hero__advantages--panel i {
    font-size: 0.75rem;
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid--col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.grid--responsive {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--stack {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card,
.workflow-card,
.deliverable-card,
.impact-card,
.resource-card,
.example-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: var(--space-md);
    box-shadow: 0 25px 60px -45px rgba(15, 23, 42, 0.3);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(65, 105, 225, 0.12);
    color: var(--color-primary);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.workflow-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(65, 105, 225, 0.1);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.workflow-card__title {
    font-size: var(--font-heading);
    font-family: var(--font-display);
}

.workflow-card__text {
    color: var(--color-muted);
    font-size: var(--font-body);
}

.deliverable-card {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
}

.deliverable-card__icon {
    color: var(--color-primary);
    font-size: 1.3rem;
}

.comparison-table {
    position: relative;
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: 0 25px 60px -45px rgba(15, 23, 42, 0.3);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
    font-size: var(--font-body);
}

.comparison-table th {
    background: rgba(65, 105, 225, 0.1);
    font-weight: 600;
    color: var(--color-secondary);
}

.comparison-table tbody tr:hover {
    background: rgba(65, 105, 225, 0.05);
}

.comparison-table__delta {
    font-weight: 600;
}

.comparison-table__hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    color: var(--color-muted);
    font-size: var(--font-small);
}

.comparison-table__cards {
    display: none;
    padding: var(--space-sm);
    background: var(--color-surface);
}

.comparison-table__card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: var(--space-md);
    box-shadow: 0 20px 55px -45px rgba(15, 23, 42, 0.25);
    display: grid;
    gap: var(--space-xs);
}

.comparison-table__card-item {
    display: grid;
    gap: 0.35rem;
}

.comparison-table__card-label {
    font-weight: 600;
    font-size: var(--font-small);
    text-transform: uppercase;
    color: var(--color-muted);
}

.comparison-table__card-value {
    font-size: var(--font-body);
    color: var(--color-secondary);
}

.example-card__list {
    display: grid;
    gap: 0.5rem;
    color: var(--color-muted);
    font-size: var(--font-body);
}

.example-highlights {
    margin-top: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.example-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    border: 1px solid rgba(20, 184, 166, 0.35);
    font-weight: 600;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.faq {
    display: grid;
    gap: var(--space-sm);
}

.faq__item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 50px -45px rgba(15, 23, 42, 0.3);
}

.faq__question button {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-body-lg);
    font-weight: 600;
    color: var(--color-secondary);
    cursor: pointer;
}

.faq__question button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.faq__question button i {
    transition: transform 0.25s ease;
}

.faq__question button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq__answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-muted);
    font-size: var(--font-body);
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 30px 60px -40px rgba(65, 105, 225, 0.4);
}

.cta__title {
    font-family: var(--font-display);
    font-size: var(--font-display-lg);
}

.cta__subtitle {
    color: rgba(15, 23, 42, 0.75);
    font-size: var(--font-body-lg);
    margin-top: var(--space-xs);
}

.cta__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Alternative Theme */
body.theme-alt {
    --color-primary: #3b3bf1;
    --color-primary-dark: #2020d0;
    --color-secondary: #1b1b3a;
    --color-accent: #efb023;
    --color-background: #f4f5fa;
    --color-border: rgba(27, 27, 58, 0.12);
}

body.theme-alt .section--hero {
    background: linear-gradient(135deg, rgba(27, 27, 58, 0.9) 0%, rgba(59, 59, 241, 0.45) 100%);
    color: #f8fafc;
}

body.theme-alt .hero__title,
body.theme-alt .hero__subtitle,
body.theme-alt .hero__tagline {
    color: #f5f7ff;
}

body.theme-alt .badge {
    background: rgba(239, 176, 35, 0.15);
    color: #efb023;
}

body.theme-alt .hero__assurance {
    background: rgba(239, 176, 35, 0.12);
    border: 1px solid rgba(239, 176, 35, 0.3);
}

body.theme-alt .hero__assurance strong {
    color: #fefce8;
}

body.theme-alt .hero__assurance p {
    color: rgba(255, 255, 255, 0.75);
}

body.theme-alt .hero-stat {
    background: rgba(59, 59, 241, 0.18);
    border-color: rgba(59, 59, 241, 0.3);
    color: #f5f7ff;
}

body.theme-alt .hero-stat__label {
    color: rgba(245, 247, 255, 0.78);
}

body.theme-alt .comparison-table th {
    background: rgba(59, 59, 241, 0.12);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.resource-card h3 {
    font-size: 1.2rem;
}

.resource-card p {
    color: var(--color-muted);
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 20px 50px -35px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(65, 105, 225, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    color: var(--color-secondary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(65, 105, 225, 0.15);
    line-height: 1;
    font-weight: 700;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -40px rgba(65, 105, 225, 0.45), 0 0 0 1px rgba(65, 105, 225, 0.15);
    border-color: rgba(65, 105, 225, 0.3);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    position: relative;
    z-index: 1;
}

.testimonial-card footer strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-display);
}

.testimonial-card footer span {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 500;
}

.cta-section {
    padding: 5rem 0;
}

.cta-container {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.12) 0%, rgba(20, 184, 166, 0.12) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 4vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.cta-content p {
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item p {
    color: var(--color-muted);
}

.auth-hero-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(65, 105, 225, 0.08) 0%, transparent 100%);
}

.auth-container {
    width: min(1000px, 92vw);
    max-width: 100%;
}

.auth-page-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-family: var(--font-display);
    margin-bottom: 3rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.auth-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.15);
    box-shadow: 0 35px 80px -40px rgba(15, 23, 42, 0.4);
    overflow: hidden;
}

.auth-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.auth-card-content {
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.auth-intro-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.auth-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.05) 0%, rgba(65, 105, 225, 0.02) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.auth-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(65, 105, 225, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.auth-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    width: 100%;
}

.password-strength__bar {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.password-strength__fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.password-strength__text {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.password-strength__text--weak {
    color: #dc2626;
}

.password-strength__text--medium {
    color: #f59e0b;
}

.password-strength__text--strong {
    color: #10b981;
}

/* Verify Email Page Styles */
.verify-email-icon {
    margin-bottom: 2rem;
}

.verify-email-icon__wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(65, 105, 225, 0.2);
}

.verify-email-icon__wrapper i {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.verify-email-icon__pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.15);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.verify-email-address {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(65, 105, 225, 0.04) 100%);
    border: 1px solid rgba(65, 105, 225, 0.15);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--color-secondary);
}

.verify-email-address i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.verify-email-address strong {
    color: var(--color-secondary);
    font-weight: 600;
    word-break: break-all;
}

.verify-email-steps {
    margin: 2.5rem 0;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.05) 0%, rgba(65, 105, 225, 0.02) 100%);
    border: 1px solid rgba(65, 105, 225, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.verify-email-steps__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.verify-email-steps__title i {
    color: var(--color-primary);
}

.verify-email-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verify-email-steps__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.verify-email-steps__item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.verify-email-steps__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(65, 105, 225, 0.8) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

.verify-email-steps__text {
    flex: 1;
    color: var(--color-secondary);
    line-height: 1.6;
    padding-top: 0.25rem;
}

.verify-email-actions {
    margin-top: 2rem;
    text-align: center;
}

.verify-email-resend {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.verify-email-resend a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.verify-email-resend a:hover {
    color: rgba(65, 105, 225, 0.8);
    text-decoration: underline;
}

/* Verify Email Success Page Styles */
.verify-email-success-icon {
    margin-bottom: 2rem;
}

.verify-email-success-icon__wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.verify-email-success-icon__wrapper i {
    font-size: 4rem;
    color: #10b981;
    position: relative;
    z-index: 3;
    animation: checkmarkPop 0.6s ease-out;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verify-email-success-icon__pulse {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }
}

.verify-email-success-icon__sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.verify-email-success-icon__sparkles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.verify-email-success-icon__sparkles span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.verify-email-success-icon__sparkles span:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.verify-email-success-icon__sparkles span:nth-child(3) {
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
}

.verify-email-success-icon__sparkles span:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 1;
    }
}

.verify-email-success-features {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verify-email-success-features__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.verify-email-success-features__item:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.05) 100%);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.verify-email-success-features__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #10b981 0%, rgba(16, 185, 129, 0.8) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.verify-email-success-features__content {
    flex: 1;
}

.verify-email-success-features__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin: 0 0 0.375rem 0;
}

.verify-email-success-features__text {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

/* Verify Email Error Icon */
.verify-email-error-icon {
    margin-bottom: 2rem;
}

.verify-email-error-icon__wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

.verify-email-error-icon__wrapper i {
    font-size: 3rem;
    color: #dc2626;
    position: relative;
    z-index: 2;
}

/* Verify Login Code Page Styles */
.verify-code-icon {
    margin-bottom: 2rem;
}

.verify-code-icon__wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(65, 105, 225, 0.2);
}

.verify-code-icon__wrapper i {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.verify-code-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.1);
}

.verify-code-digit {
    width: 60px;
    height: 70px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 0;
    border: 2px solid rgba(65, 105, 225, 0.2);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.05) 0%, rgba(65, 105, 225, 0.02) 100%);
    color: #4169e1;
    transition: all 0.2s ease;
}

.verify-code-digit:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.15);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.05) 100%);
    transform: scale(1.05);
}

.verify-code-digit:not(:placeholder-shown) {
    border-color: rgba(65, 105, 225, 0.4);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(65, 105, 225, 0.04) 100%);
}

@media (max-width: 480px) {
    .verify-code-digit {
        width: 50px;
        height: 60px;
        font-size: 1.75rem;
    }
}

@media (max-width: 968px) {
    .auth-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .auth-image-wrapper {
        order: -1;
        padding: 2rem 1rem;
        min-height: 250px;
    }
    
    .auth-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

.auth-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-family: var(--font-display);
}

.auth-subtitle {
    color: var(--color-muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-secondary);
}

.form-group input,
.form-group select {
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.15);
}

.form-error {
    color: #dc2626;
    font-size: 0.85rem;
}

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

.form-link {
    font-size: 0.85rem;
    color: var(--color-primary);
}

.plan-selector {
    display: grid;
    gap: 1rem;
}

.plan-option {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.plan-option input {
    transform: scale(1.2);
}

.plan-option-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.plan-title {
    font-weight: 600;
}

.plan-description {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.plan-option input:checked + .plan-option-body,
.plan-option:hover {
    color: var(--color-primary);
}

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

.auth-footer {
    text-align: center;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-footer a {
    color: var(--color-primary);
}

.auth-support {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.alert {
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
}

.dashboard-hero .alert {
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.alert-success {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    border: 1px solid rgba(20, 184, 166, 0.35);
}

.dashboard-hero {
    padding: 4.5rem 0 2.5rem;
}

.dashboard-hero-content {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: clamp(2rem, 3vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 28px 60px -40px rgba(15, 23, 42, 0.35);
}

.dashboard-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-family: var(--font-display);
}

.dashboard-subtitle {
    color: var(--color-muted);
    margin-top: 0.75rem;
}

.dashboard-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-stats {
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.stat-label {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.stat-footer {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.dashboard-content {
    padding: 1.5rem 0 4rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 2rem;
}

.panel {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.panel-action {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.project-list,
.document-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.project-item,
.document-item {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.project-item:last-child,
.document-item:last-child {
    border-bottom: none;
}

.project-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.project-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.project-count {
    min-width: 4.5rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.project-count span {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.document-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.document-sku {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.document-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.document-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.primary-footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 1) 100%);
    color: rgba(226, 232, 240, 0.9);
    padding: 5.5rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    position: relative;
    overflow: hidden;
}

.primary-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(65, 105, 225, 0.4) 50%, transparent 100%);
}

.primary-footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(148, 163, 184, 0.1) 50%, transparent 100%);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1.2fr) 1.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: grid;
    gap: 1.25rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 450px;
    margin: 0;
}

.footer-cta {
    margin-top: 0.5rem;
}

.footer-cta .btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-nav__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-nav__list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav__list a {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 2px;
}

.footer-nav__list a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-nav__list a::after {
    content: "";
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(20, 184, 166, 0.8) 100%);
    transition: width 0.25s ease;
    position: absolute;
    left: 0;
    bottom: 0;
}

.footer-nav__list a:hover::after {
    width: 100%;
}

.footer-contact__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-contact__info {
    display: grid;
    gap: 1rem;
}

.footer-contact__email,
.footer-contact__phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.footer-contact__email i,
.footer-contact__phone i {
    color: rgba(65, 105, 225, 0.8);
    font-size: 1rem;
}

.footer-contact__email a,
.footer-contact__phone a {
    color: rgba(65, 105, 225, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-contact__email a:hover,
.footer-contact__phone a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    min-width: auto;
}

.footer-copyright {
    color: rgba(226, 232, 240, 0.65);
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(226, 232, 240, 0.9);
}

.footer-legal__separator {
    color: rgba(226, 232, 240, 0.4);
    font-size: 0.875rem;
}

.footer-bottom__center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-legal-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    display: block;
}

.footer-legal-logo:hover {
    opacity: 1;
}

.footer-bottom__right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: auto;
}

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

.footer-social a {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(226, 232, 240, 0.85);
    display: grid;
    place-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.25) 0%, rgba(20, 184, 166, 0.25) 100%);
    border-color: rgba(65, 105, 225, 0.4);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px -6px rgba(65, 105, 225, 0.5);
}

/* Blog legacy styles */
.content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.widget-content {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.posts-list,
.post-card-modern,
.post-content {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 2rem;
}

.post-card-modern + .post-card-modern {
    margin-top: 1.5rem;
}

.post-card-modern .post-title-modern a {
    font-size: 1.4rem;
    color: var(--color-secondary);
}

.post-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.author-profile-image-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(65, 105, 225, 0.2);
}

.like-dislike {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(65, 105, 225, 0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
}

.like-dislike button {
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-primary);
}

.like-dislike button.active {
    color: var(--color-primary-dark);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin: 1.5rem 0 0.75rem;
}

.post-content p {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.comments-section,
.comment-form {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-top: 1.5rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.comment {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    padding-bottom: 1rem;
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
}

.comment-content {
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.comment-form-container {
    margin-top: 2rem;
}

.suggested-posts {
    display: grid;
    gap: 1rem;
}

.suggested-post-title {
    font-size: 1rem;
    color: var(--color-secondary);
}

.suggested-post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid--col-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid--col-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }

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

    .split-layout {
        gap: var(--space-lg);
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .primary-navigation {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: white;
        border-radius: var(--radius-md);
        border: 1px solid rgba(148, 163, 184, 0.2);
        box-shadow: 0 20px 45px -35px rgba(15, 23, 42, 0.4);
    }

    .primary-navigation.is-open {
        max-height: 400px;
    }

    .primary-navigation ul {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
        align-items: stretch;
    }

    .primary-navigation ul li {
        width: 100%;
    }

    .primary-navigation .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .logo {
        gap: 0.65rem;
    }

    .logo-wordmark__tagline {
        display: none;
    }

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

    .hero__visual {
        order: -1;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__actions .btn {
        flex: 1;
        min-width: 200px;
    }

    .trust {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust__logos {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .solution-card {
        padding: var(--space-lg);
    }

    .solution-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .solution-card__title {
        font-size: 1.15rem;
    }

    .split-layout,
    .split-layout--reverse {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .split-layout__primary {
        max-width: 100%;
    }

    .split-layout__cta {
        width: 100%;
    }

    .split-layout__cta .btn {
        flex: 1;
        min-width: 200px;
    }

    .timeline {
        padding-left: 2.5rem;
        gap: var(--space-md);
    }

    .timeline::before {
        left: 1rem;
        width: 2px;
    }

    .timeline__index {
        left: -2.25rem;
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        font-size: 0.85rem;
        border-width: 2px;
    }

    .timeline__item {
        padding: var(--space-md);
    }

    .timeline__title {
        font-size: 1.05rem;
    }

    .timeline__text {
        font-size: 0.9rem;
    }

    .deliverables-list {
        columns: 1;
        column-gap: var(--space-md);
    }

    .deliverables-list li {
        padding: var(--space-sm) var(--space-md);
        margin-bottom: var(--space-sm);
    }

    .deliverables-highlight {
        max-width: 100%;
        padding: var(--space-sm) var(--space-md);
    }

    .deliverables-highlight__value {
        font-size: 1rem;
    }

    .hero-visual {
        max-width: 100%;
    }

    .grid--col-3,
    .grid--col-4,
    .grid--col-2,
    .grid--responsive,
    .grid--stack {
        grid-template-columns: 1fr;
    }

    .comparison-summary {
        flex-direction: column;
    }

    .example-highlights {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table__hint {
        display: flex;
    }

    .comparison-table table {
        display: none;
    }

    .comparison-table__cards {
        display: grid;
        gap: var(--space-sm);
    }

    .outcomes__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .outcomes-cards {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .outcomes-card {
        padding: var(--space-md);
    }

    .outcomes-card h3 {
        font-size: 1.1rem;
    }

    .outcomes-card ul {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .outcomes-chip {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

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

    .outcomes-metric {
        padding: var(--space-md);
    }

    .outcomes-metric__icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .outcomes-metric__value {
        font-size: 1.5rem;
    }

    .outcomes-metric__label {
        font-size: 0.95rem;
    }

    .outcomes-metric__description {
        font-size: 0.85rem;
    }

    .cta {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }

    .cta__actions {
        justify-content: center;
    }

    .testimonial-track {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card::before {
        top: var(--space-sm);
        left: var(--space-sm);
        font-size: 3rem;
    }

    .testimonial-card p {
        font-size: 1rem;
    }

    .testimonial-card footer strong {
        font-size: 0.95rem;
    }

    .testimonial-card footer span {
        font-size: 0.85rem;
    }

    .faq__question button {
        font-size: var(--font-body);
    }

    .primary-footer {
        padding: 3.5rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        gap: 1rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-cta {
        margin-top: 0.25rem;
    }

    .footer-nav__title {
        margin-bottom: 1rem;
    }

    .footer-contact__title {
        margin-bottom: 1rem;
    }

    .footer-contact__info {
        gap: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .footer-bottom__left {
        align-items: center;
        gap: 0.75rem;
        flex: 1 1 100%;
        min-width: auto;
    }

    .footer-bottom__center {
        flex: 1 1 100%;
        order: 2;
    }

    .footer-legal-logos {
        justify-content: center;
        gap: 1rem;
    }

    .footer-legal-logo {
        height: 35px;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-bottom__right {
        flex: 1 1 100%;
        justify-content: center;
        min-width: auto;
        order: 3;
    }

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

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

    .section {
        padding: var(--space-lg) 0;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

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

    .metric-chip {
        align-items: flex-start;
    }

    .btn,
    .cta__actions .btn {
        width: 100%;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .outcomes-chipset {
        flex-direction: column;
    }

}

/* Legal Pages Styles */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.legal-page__header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(148, 163, 184, 0.2);
}

.legal-page__title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.legal-page__meta {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin: 0;
}

.legal-page__content {
    line-height: 1.8;
    color: var(--color-secondary);
}

.legal-section {
    margin-bottom: var(--space-xl);
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section__title {
    font-size: 1.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
    line-height: 1.3;
}

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

.legal-section__subtitle {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.legal-section p {
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.legal-list li {
    padding: var(--space-xs) 0 var(--space-xs) var(--space-lg);
    position: relative;
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.legal-list li strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.legal-list a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-list a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.legal-table thead {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
}

.legal-table th {
    padding: var(--space-md);
    text-align: left;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-display);
    border-bottom: 2px solid rgba(65, 105, 225, 0.2);
}

.legal-table td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    color: var(--color-secondary);
    line-height: 1.6;
}

.legal-table tbody tr:hover {
    background: rgba(65, 105, 225, 0.03);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .legal-page {
        padding: var(--space-lg) 0;
    }

    .legal-page__title {
        font-size: 2rem;
    }

    .legal-section__title {
        font-size: 1.5rem;
    }

    .legal-section__subtitle {
        font-size: 1.15rem;
    }

    .legal-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .legal-table thead,
    .legal-table tbody,
    .legal-table tr,
    .legal-table td,
    .legal-table th {
        display: block;
    }

    .legal-table thead {
        display: none;
    }

    .legal-table tr {
        margin-bottom: var(--space-md);
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: var(--radius-md);
        padding: var(--space-sm);
        background: rgba(248, 250, 255, 0.5);
    }

    .legal-table td {
        border: none;
        padding: var(--space-xs) 0;
        text-align: left;
    }

    .legal-table td:before {
        content: attr(data-label) ": ";
        font-weight: 700;
        color: var(--color-secondary);
        display: inline-block;
        min-width: 120px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Mobile Small: < 480px */
@media (max-width: 480px) {
    .container {
        width: 95vw;
        padding: 0 1rem;
    }

    /* Auth Pages - Mobile Small */
    .auth-hero-section {
        padding: 3rem 0 2rem;
    }

    .auth-page-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .auth-card {
        border-radius: var(--radius-md);
        margin: 0 0.5rem;
    }

    .auth-card-content {
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }

    .auth-intro-text {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 0.25rem;
    }

    .auth-image-wrapper {
        padding: 1.5rem 0.75rem;
        min-height: 200px;
    }

    .auth-image {
        max-width: 250px;
    }

    /* Forms - Touch Friendly */
    .form-group input,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* Touch target minimum */
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-error {
        font-size: 0.8rem;
    }

    .form-help {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    /* Home Page - Mobile Small */
    .hero {
        min-height: auto;
        padding: 1rem 0;
    }

    .hero__title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 0.95rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .hero-stat {
        padding: var(--space-xs) var(--space-sm);
    }

    .hero-stat__value {
        font-size: 1.15rem;
    }

    .hero-stat__label {
        font-size: 0.75rem;
    }

    .section {
        padding: var(--space-md) 0;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .section__subtitle {
        font-size: 0.95rem;
    }

    .solution-card {
        padding: var(--space-md);
    }

    .solution-card__icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .solution-card__title {
        font-size: 1.1rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline::before {
        left: 0.75rem;
    }

    .timeline__index {
        left: -1.75rem;
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
        font-size: 0.8rem;
    }

    .comparison-summary {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .comparison-summary__item {
        min-width: 100%;
    }

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

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

    .testimonial-card {
        padding: var(--space-md);
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    /* Header - Mobile Small */
    .header-container {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-image {
        width: 2rem;
        height: 2rem;
    }

    .logo-wordmark__name {
        font-size: 0.95rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    /* Footer - Mobile Small */
    .primary-footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }

    .footer-container {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-nav__title,
    .footer-contact__title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-nav__list a {
        font-size: 0.9rem;
    }
}

/* Mobile: 481px - 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        width: 94vw;
    }

    /* Auth Pages */
    .auth-card-content {
        padding: 2rem 1.5rem;
    }

    .auth-image-wrapper {
        min-height: 220px;
    }

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

    /* Home Page */
    .hero__title {
        font-size: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

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

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        width: 93vw;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

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

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

/* Enhanced Auth Pages Mobile Styles */
@media (max-width: 767px) {
    .auth-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-image-wrapper {
        order: -1;
        padding: 1.5rem 1rem;
        min-height: 220px;
        background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(65, 105, 225, 0.03) 100%);
    }

    .auth-image {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .auth-card-content {
        padding: 2rem 1.5rem;
    }

    .auth-form {
        gap: 1.25rem;
    }

    .form-group {
        gap: 0.5rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    .btn-full {
        width: 100%;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    .auth-footer {
        gap: 0.75rem;
        margin-top: 1rem;
    }

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

    .auth-support {
        font-size: 0.85rem;
    }

    /* Password Strength Indicator */
    .password-strength {
        margin-top: 0.5rem;
    }

    .password-strength__bar {
        height: 5px;
    }

    .password-strength__text {
        font-size: 0.8rem;
        margin-top: 0.35rem;
    }
}

/* Form Grid Responsive */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Home Page Hero - Enhanced Mobile */
@media (max-width: 767px) {
    .hero {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        min-height: auto;
        padding: var(--space-md) 0;
    }

    .hero__content {
        max-width: 100%;
        order: 2;
    }

    .hero__visual {
        order: 1;
        margin-bottom: var(--space-sm);
    }

    .hero-visual {
        max-width: 100%;
        padding: var(--space-md);
    }

    .hero__assurance {
        flex-direction: column;
        text-align: center;
        padding: var(--space-sm);
    }

    .hero-assurance__icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

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

    .hero__advantages--panel {
        gap: 0.3rem;
    }

    .hero__advantages--panel li {
        font-size: 0.8rem;
        padding: 0.45rem 0.6rem;
    }
}

/* Split Layout Mobile */
@media (max-width: 767px) {
    .split-layout,
    .split-layout--reverse {
        flex-direction: column;
        gap: var(--space-md);
    }

    .split-layout__primary {
        max-width: 100%;
    }

    .split-layout__secondary {
        width: 100%;
    }

    .deliverables-list {
        columns: 1;
    }

    .deliverables-highlight {
        max-width: 100%;
    }
}

/* Timeline Mobile Enhancements */
@media (max-width: 767px) {
    .timeline {
        padding-left: 2.5rem;
        gap: var(--space-md);
    }

    .timeline::before {
        left: 1rem;
        width: 2px;
    }

    .timeline__index {
        left: -2.25rem;
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        font-size: 0.85rem;
    }

    .timeline__item {
        padding: var(--space-md);
    }

    .timeline__title {
        font-size: 1.05rem;
    }

    .timeline__text {
        font-size: 0.9rem;
    }
}

/* Comparison Table Mobile */
@media (max-width: 767px) {
    .comparison-table {
        border-radius: var(--radius-md);
        border: 1px solid rgba(148, 163, 184, 0.2);
        overflow: hidden;
    }

    .comparison-table__hint {
        display: flex;
        padding: var(--space-md);
        font-size: 0.85rem;
        background: rgba(65, 105, 225, 0.05);
        border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }

    .comparison-table table {
        display: none;
    }

    .comparison-table__cards {
        display: grid;
        gap: var(--space-md);
        padding: var(--space-md);
        background: var(--color-background);
    }

    .comparison-table__card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(148, 163, 184, 0.2);
        padding: var(--space-lg);
        box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(65, 105, 225, 0.05);
        display: grid;
        gap: var(--space-sm);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .comparison-table__card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--color-primary) 0%, rgba(20, 184, 166, 0.8) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .comparison-table__card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px -16px rgba(65, 105, 225, 0.3), 0 0 0 1px rgba(65, 105, 225, 0.1);
        border-color: rgba(65, 105, 225, 0.3);
    }

    .comparison-table__card:hover::before {
        opacity: 1;
    }

    .comparison-table__card-item {
        display: grid;
        gap: 0.5rem;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .comparison-table__card-item:first-child {
        background: linear-gradient(135deg, rgba(65, 105, 225, 0.08) 0%, rgba(20, 184, 166, 0.06) 100%);
        padding: var(--space-md);
        border-radius: var(--radius-sm);
        border-bottom: none;
        margin: calc(var(--space-sm) * -1) calc(var(--space-sm) * -1) var(--space-sm);
        margin-top: calc(var(--space-sm) * -1);
    }

    .comparison-table__card-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .comparison-table__card-item:first-child .comparison-table__card-label {
        color: var(--color-primary-dark);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }

    .comparison-table__card-item:first-child .comparison-table__card-value {
        color: var(--color-secondary);
        font-weight: 600;
        font-size: 1.05rem;
        line-height: 1.4;
    }

    .comparison-table__card-label {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--color-muted);
        letter-spacing: 0.04em;
        margin-bottom: 0.25rem;
    }

    .comparison-table__card-value {
        font-size: 0.95rem;
        color: var(--color-secondary);
        line-height: 1.6;
        word-wrap: break-word;
    }

    /* Highlight pentru item-ul "Diferență" (ultimul item) */
    .comparison-table__card-item:last-child {
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(65, 105, 225, 0.1) 100%);
        padding: var(--space-md);
        border-radius: var(--radius-sm);
        border: 1px solid rgba(20, 184, 166, 0.25);
        margin-top: var(--space-xs);
        border-bottom: none;
    }

    .comparison-table__card-item:last-child .comparison-table__card-label {
        color: #0f766e;
        font-weight: 700;
        font-size: 0.85rem;
    }

    .comparison-table__card-item:last-child .comparison-table__card-value {
        color: var(--color-secondary);
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Outcomes Section Mobile */
@media (max-width: 767px) {
    .outcomes__wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .outcomes-cards {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .outcomes-card {
        padding: var(--space-md);
    }

    .outcomes-card h3 {
        font-size: 1.1rem;
    }

    .outcomes-card ul {
        font-size: 0.9rem;
    }

    .outcomes-chipset {
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .outcomes-chip {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    .outcomes__metrics {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .outcomes-metric {
        padding: var(--space-md);
    }

    .outcomes-metric__icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .outcomes-metric__value {
        font-size: 1.5rem;
    }

    .outcomes-metric__label {
        font-size: 0.95rem;
    }

    .outcomes-metric__description {
        font-size: 0.85rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 767px) {
    .testimonial-track {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card::before {
        top: var(--space-sm);
        left: var(--space-sm);
        font-size: 2.5rem;
    }

    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-card footer {
        padding-top: var(--space-sm);
    }

    .testimonial-card footer strong {
        font-size: 0.95rem;
    }

    .testimonial-card footer span {
        font-size: 0.85rem;
    }
}

/* FAQ Mobile */
@media (max-width: 767px) {
    .faq {
        gap: var(--space-xs);
    }

    .faq__question button {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        text-align: left;
    }

    .faq__answer {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.95rem;
    }
}

/* Header Mobile Enhancements */
@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

    .primary-navigation {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: white;
        border-radius: var(--radius-md);
        border: 1px solid rgba(148, 163, 184, 0.2);
        box-shadow: 0 20px 45px -35px rgba(15, 23, 42, 0.4);
        margin-top: 0.5rem;
    }

    .primary-navigation.is-open {
        max-height: 400px;
    }

    .primary-navigation ul {
        flex-direction: column;
        padding: 1.25rem;
        gap: 1rem;
        align-items: stretch;
    }

    .primary-navigation ul li {
        width: 100%;
    }

    .primary-navigation .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .primary-navigation .btn-link {
        width: 100%;
        justify-content: center;
    }

    .menu-toggle {
        display: inline-flex;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Footer Mobile Enhancements */
@media (max-width: 767px) {
    .primary-footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        text-align: center;
        gap: 1rem;
    }

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

    .footer-cta {
        display: flex;
        justify-content: center;
    }

    .footer-nav,
    .footer-contact {
        text-align: center;
    }

    .footer-nav__title,
    .footer-contact__title {
        margin-bottom: 1rem;
    }

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

    .footer-nav__list a {
        justify-content: center;
    }

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

    .footer-contact__email,
    .footer-contact__phone {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .footer-bottom__left {
        align-items: center;
        gap: 0.75rem;
        flex: 1 1 100%;
        min-width: auto;
    }

    .footer-bottom__center {
        flex: 1 1 100%;
        order: 2;
    }

    .footer-legal-logos {
        justify-content: center;
        gap: 1rem;
    }

    .footer-legal-logo {
        height: 32px;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom__right {
        flex: 1 1 100%;
        justify-content: center;
        min-width: auto;
        order: 3;
    }

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

/* Touch Target Improvements */
@media (max-width: 767px) {
    a,
    button,
    .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-link {
        min-height: auto;
        padding: 0.5rem;
    }
}

/* Image Responsive */
img {
    max-width: 100%;
    height: auto;
}

.auth-image,
.logo-image {
    max-width: 100%;
    height: auto;
}

/* Prevent Horizontal Scroll */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .container {
        overflow-x: hidden;
    }
}

/* Smooth Scrolling for Mobile */
@media (max-width: 767px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

