:root {
    --yara-primary: #1E56FF;
    --yara-primary-dark: #1542ca;
    --yara-ink: #111827;
    --yara-muted: #6B7280;
    --yara-bg: #F5F7FF;
    --yara-surface: #FFFFFF;
    --yara-border: #E5E7EB;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--yara-ink);
    background: var(--yara-bg);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.65rem 1.1rem;
    border-radius: 14px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: var(--yara-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--yara-primary-dark);
}

.btn-soft {
    background: #EAF0FF;
    color: var(--yara-primary);
}

.btn-soft:hover {
    background: #d9e4ff;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    background: #e8efff;
    color: var(--yara-primary);
    font-weight: 700;
    font-size: 0.82rem;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--yara-border);
}

.top-nav .wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
}

.brand img {
    height: 34px;
    width: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.4rem;
}

.card {
    background: var(--yara-surface);
    border: 1px solid var(--yara-border);
    border-radius: 18px;
    padding: 1.2rem;
}

.card h3 {
    margin: 0 0 0.35rem 0;
}

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

.kpi {
    background: #fff;
    border: 1px solid var(--yara-border);
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.kpi span {
    color: var(--yara-muted);
    font-size: 0.86rem;
}

.kpi strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.2rem;
}

.hero {
    padding: 4.2rem 0 3rem;
    background: radial-gradient(circle at top right, rgba(30, 86, 255, 0.18), transparent 35%);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
}

.hero p {
    color: var(--yara-muted);
    max-width: 650px;
    font-size: 1.05rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

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

.features p,
.module-list p {
    margin: 0.3rem 0 0 0;
    color: var(--yara-muted);
}

.section-title {
    margin: 0 0 0.9rem;
    font-size: 1.5rem;
}

.split-layout {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.side-panel {
    background: linear-gradient(160deg, #1E56FF 0%, #1340c0 100%);
    color: #fff;
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-panel p {
    color: rgba(255, 255, 255, 0.86);
}

.form-panel {
    padding: 2rem 2.2rem;
    background: #F8FAFF;
}

.form-tabs {
    display: inline-flex;
    background: #eaf0ff;
    border-radius: 12px;
    padding: 0.2rem;
    gap: 0.2rem;
}

.form-tabs a {
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    font-weight: 700;
    color: var(--yara-primary);
}

.form-tabs a.active {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

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

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dbe2f1;
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    font: inherit;
    background: #fff;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.full {
    grid-column: 1 / -1;
}

.form-note {
    color: var(--yara-muted);
    font-size: 0.86rem;
    margin: 0.6rem 0 0;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
}

.sidebar {
    background: #0f172a;
    color: #cbd5e1;
    padding: 1.3rem 1rem;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.3rem;
}

.sidebar .logo img {
    height: 32px;
}

.menu-item {
    display: block;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    margin-bottom: 0.4rem;
    color: #dbe5ff;
}

.menu-item.active,
.menu-item:hover {
    background: rgba(30, 86, 255, 0.32);
}

.content {
    padding: 1.2rem 1.3rem 1.6rem;
}

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

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.72rem 0.55rem;
    border-bottom: 1px solid var(--yara-border);
    text-align: left;
    vertical-align: top;
}

th {
    font-size: 0.8rem;
    color: var(--yara-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 1080px) {
    .kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features,
    .module-list,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: sticky;
        top: 0;
        z-index: 12;
    }
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

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

/* --- Landing Yara.Digital (digi_1) --- */
body.landing-page {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: #111827;
    background: #f9fafb;
    overflow-x: hidden;
}

body.landing-page a {
    text-decoration: none;
}

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3f4f6;
    transition: box-shadow 0.25s ease;
}

.landing-nav.landing-nav-scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 80px;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #111827;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.landing-brand-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
    max-width: min(180px, 42vw);
}

.landing-brand img {
    display: block;
    height: 34px;
    width: auto;
    max-height: 34px;
    max-width: 100%;
    object-fit: contain;
}

.landing-brand-mark--footer img {
    height: 32px;
    max-height: 32px;
}

.landing-brand-text {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-brand-accent {
    color: var(--yara-primary);
}

.landing-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.landing-nav-links a {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6b7280;
    transition: color 0.2s;
}

.landing-nav-links a:hover {
    color: var(--yara-primary);
}

.landing-nav-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

.landing-link-btn {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

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

.landing-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    background: var(--yara-primary);
    color: #ffffff;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(30, 86, 255, 0.25);
    transition: transform 0.2s, background 0.2s;
}

.landing-pill-btn,
.landing-pill-btn:visited {
    color: #ffffff;
}

.landing-pill-btn:hover {
    background: var(--yara-primary-dark);
    color: #ffffff;
    transform: scale(1.03);
}

.landing-pill-btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

.landing-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
}

.landing-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

.landing-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid #f3f4f6;
}

.landing-mobile-menu a {
    font-weight: 700;
    font-size: 0.9rem;
    color: #4b5563;
    padding: 0.35rem 0;
}

.landing-mobile-menu a:hover {
    color: var(--yara-primary);
}

.landing-hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .landing-hero {
        padding: 11rem 0 7rem;
    }
}

.landing-hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(48px);
}

.landing-hero-blob-tr {
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    margin: -5rem -5rem 0 0;
    background: rgba(191, 219, 254, 0.5);
}

.landing-hero-blob-bl {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    margin: 0 0 -5rem -5rem;
    background: #eff6ff;
}

.landing-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .landing-hero-grid {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.landing-hero-copy {
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .landing-hero-copy {
        flex: 1;
        text-align: left;
    }
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: var(--yara-primary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.landing-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yara-primary);
    animation: landing-pulse 2s ease-in-out infinite;
}

@keyframes landing-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

.landing-hero-copy h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(2rem, 5vw, 3.65rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

.landing-lead {
    margin: 0 0 2.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.65;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .landing-lead {
        margin-left: 0;
    }
}

.landing-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

@media (min-width: 640px) {
    .landing-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .landing-hero-actions {
        justify-content: flex-start;
    }
}

.landing-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--yara-primary);
    color: #ffffff;
    font-weight: 800;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(30, 86, 255, 0.2);
    transition: transform 0.2s, background 0.2s;
}

.landing-btn-primary,
.landing-btn-primary:visited {
    color: #ffffff;
}

.landing-btn-primary:hover {
    background: var(--yara-primary-dark);
    color: #ffffff;
    transform: scale(1.02);
}

.landing-btn-primary svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.landing-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #374151;
    font-weight: 800;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.landing-btn-outline,
.landing-btn-outline:visited {
    color: #374151;
}

.landing-btn-outline:hover {
    border-color: #e5e7eb;
    background: #f9fafb;
    color: #111827;
}

.landing-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    min-height: 52px;
}

@media (min-width: 640px) {
    .landing-btn-lg {
        width: auto;
    }
}

.landing-social-proof {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .landing-social-proof {
        justify-content: flex-start;
    }
}

.landing-avatars {
    display: flex;
    margin-left: 0.5rem;
}

.landing-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
}

.landing-avatar-a {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    z-index: 3;
}

.landing-avatar-b {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    z-index: 2;
}

.landing-avatar-c {
    background: linear-gradient(135deg, #f43f5e, #fb7185);
    z-index: 1;
}

.landing-avatar-more {
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.65rem;
    z-index: 0;
}

.landing-social-proof p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #6b7280;
}

.landing-hero-visual {
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .landing-hero-visual {
        flex: 1;
    }
}

.landing-mock-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, var(--yara-primary), #22d3ee);
    border-radius: 3rem;
    transform: rotate(3deg) scale(1.05);
    opacity: 0.2;
    filter: blur(16px);
}

.landing-mock-frame {
    position: relative;
    background: #fff;
    padding: 0.5rem;
    border-radius: 2.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.landing-mock-screen {
    border-radius: 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    min-height: 220px;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .landing-mock-screen {
        min-height: 280px;
    }
}

.landing-mock-toolbar {
    height: 10px;
    width: 40%;
    border-radius: 6px;
    background: #e2e8f0;
    margin-bottom: 1.25rem;
}

.landing-mock-rows {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.landing-mock-rows span {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
}

.landing-mock-rows span:nth-child(1) {
    width: 100%;
}

.landing-mock-rows span:nth-child(2) {
    width: 92%;
}

.landing-mock-rows span:nth-child(3) {
    width: 78%;
}

.landing-mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    padding-top: 0.5rem;
}

.landing-mock-chart span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--yara-primary), #60a5fa);
    opacity: 0.85;
}

.landing-mock-chart span:nth-child(1) {
    height: 45%;
}

.landing-mock-chart span:nth-child(2) {
    height: 70%;
}

.landing-mock-chart span:nth-child(3) {
    height: 55%;
}

.landing-mock-chart span:nth-child(4) {
    height: 90%;
}

.landing-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid #f9fafb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: landing-float 3s ease-in-out infinite;
}

.landing-float-card-right {
    animation-duration: 4s;
    animation-delay: 0.5s;
}

@keyframes landing-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.landing-float-card-left {
    left: -1rem;
    top: 22%;
}

.landing-float-card-right {
    right: -0.5rem;
    bottom: 22%;
}

@media (min-width: 768px) {
    .landing-float-card-left {
        left: -2.5rem;
    }

    .landing-float-card-right {
        right: -1.5rem;
    }
}

.landing-float-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-float-icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.landing-float-icon-blue {
    background: #eff6ff;
    color: var(--yara-primary);
}

.landing-float-label {
    margin: 0 0 0.15rem;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.landing-float-value {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111827;
}

.fade-in-up {
    animation: landing-fade-in-up 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(18px);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes landing-fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.landing-section-white {
    background: #fff;
}

.landing-section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.landing-kicker {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yara-primary);
}

.landing-section-head h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.landing-section-desc {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.6;
}

.landing-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .landing-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.landing-feature-card {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 2rem;
    padding: 2rem;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.landing-feature-card:hover {
    border-color: #dbeafe;
    box-shadow: 0 20px 40px rgba(30, 86, 255, 0.08);
}

.landing-feature-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yara-primary);
    margin-bottom: 1.5rem;
}

.landing-feature-card:hover .landing-feature-icon {
    transform: scale(1.08);
}

.landing-feature-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.landing-feature-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.65;
}

.landing-pattern {
    background-color: #f9fafb;
    background-image: radial-gradient(var(--yara-primary) 1px, transparent 1px);
    background-size: 32px 32px;
}

.landing-split {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .landing-split {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }
}

.landing-split-copy,
.landing-split-visual {
    width: 100%;
}

.landing-split-copy h2 {
    margin: 0 0 2rem;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.landing-steps li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.landing-step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    background: #dbeafe;
    color: var(--yara-primary);
}

.landing-step-num-solid {
    background: var(--yara-primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(30, 86, 255, 0.25);
}

.landing-steps h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.landing-steps p {
    margin: 0;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.6;
}

.landing-panel-card {
    background: #fff;
    border-radius: 2.5rem;
    border: 4px solid #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    padding: 2rem;
    transform: rotate(0deg);
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .landing-panel-card {
        transform: rotate(-2deg);
    }
}

.landing-panel-bar {
    height: 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--yara-primary), #93c5fd);
    margin-bottom: 1rem;
}

.landing-panel-bar.short {
    width: 55%;
    background: #e5e7eb;
    margin-bottom: 1.5rem;
}

.landing-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.landing-panel-grid span {
    aspect-ratio: 1.4;
    border-radius: 1rem;
    background: #f3f4f6;
}

.landing-cta-wrap {
    max-width: 64rem;
}

.landing-cta-card {
    position: relative;
    background: var(--yara-primary);
    border-radius: 3rem;
    padding: 2.5rem 1.75rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(30, 86, 255, 0.25);
}

@media (min-width: 768px) {
    .landing-cta-card {
        padding: 4rem 3rem;
    }
}

.landing-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.landing-cta-glow-tr {
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.12);
    transform: translate(40%, -40%);
}

.landing-cta-glow-bl {
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-40%, 40%);
}

.landing-cta-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 1.5rem;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.landing-cta-card > p {
    position: relative;
    z-index: 1;
    margin: 0 auto 2.5rem;
    max-width: 36rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #dbeafe;
    line-height: 1.6;
}

.landing-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .landing-cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.landing-btn-on-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--yara-primary);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s;
}

.landing-btn-on-primary,
.landing-btn-on-primary:visited {
    color: var(--yara-primary);
}

.landing-btn-on-primary:hover {
    transform: scale(1.03);
    color: var(--yara-primary-dark);
}

.landing-btn-ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s;
}

.landing-btn-ghost-light,
.landing-btn-ghost-light:visited {
    color: #ffffff;
}

.landing-btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.landing-footer {
    background: #111827;
    color: #fff;
    padding: 4rem 0 2.5rem;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .landing-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.landing-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-footer-brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.landing-footer-tagline {
    margin: 0 0 1.5rem;
    max-width: 28rem;
    color: #9ca3af;
    font-weight: 500;
    line-height: 1.65;
}

.landing-footer-credit {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #6b7280;
}

.landing-footer-credit strong {
    color: #fff;
    font-weight: 800;
}

.landing-footer-title {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.landing-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-footer-list li {
    margin-bottom: 1rem;
}

.landing-footer-list a {
    color: #9ca3af;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-footer-list a:hover {
    color: #fff;
}

.landing-footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .landing-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.landing-footer-bottom > p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.landing-footer-admin {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    transition: color 0.2s;
}

.landing-footer-admin:hover {
    color: #9ca3af;
}

@media (min-width: 768px) {
    .landing-nav-links,
    .landing-nav-cta {
        display: flex;
    }

    .landing-menu-btn {
        display: none;
    }

    .landing-mobile-menu {
        display: none !important;
    }
}
