/* ============================================
   LONGRUN Website - Unified Design System
   Odoo Brand Colors: Plum #714B67, Teal #017E84
   ============================================ */

/* Google Fonts loaded via <link> in head for performance */

:root {
    --lr-plum: #714B67;
    --lr-plum-light: #8a6480;
    --lr-plum-dark: #5a3c53;
    --lr-teal: #017E84;
    --lr-teal-light: #01969d;
    --lr-teal-dark: #016b70;
    --lr-dark: #2d2d3a;
    --lr-text: #4a4a5a;
    --lr-muted: #6b7280;
    --lr-light: #f8f7fa;
    --lr-lighter: #faf9fc;
    --lr-border: #e8e4ec;
    --lr-white: #ffffff;
    --lr-gradient-hero: linear-gradient(135deg, #f5f0f4 0%, #edf7f7 50%, #f3eff2 100%);
    --lr-gradient-cta: linear-gradient(135deg, var(--lr-plum), var(--lr-teal));
}

/* ---- Global Typography ---- */
.lr-page * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.lr-page h1, .lr-page h2, .lr-page h3, .lr-page h4, .lr-page h5, .lr-page h6 {
    color: var(--lr-dark);
    letter-spacing: -0.3px;
}
.lr-page p {
    color: var(--lr-text);
    line-height: 1.7;
}

/* ---- Container ---- */
.lr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Navigation ---- */
.lr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lr-border);
}
.lr-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.lr-nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lr-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.lr-nav-logo span {
    color: var(--lr-teal);
}
.lr-nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lr-nav-links a {
    color: var(--lr-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.lr-nav-links a:hover,
.lr-nav-links a.active {
    color: var(--lr-plum);
}
.lr-nav-cta {
    background: var(--lr-plum);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.lr-nav-cta:hover {
    background: var(--lr-plum-dark);
    transform: translateY(-1px);
}
/* Mobile hamburger toggle */
.lr-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.lr-nav-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--lr-dark);
}
.lr-nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    gap: 4px;
}
.lr-nav-mobile a {
    color: var(--lr-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--lr-border);
}
.lr-nav-mobile a:hover {
    color: var(--lr-plum);
}
.lr-nav-mobile.open {
    display: flex;
}
@media(max-width:768px) {
    .lr-nav-links { display: none; }
    .lr-nav .lr-nav-cta { display: none; }
    .lr-nav-toggle { display: block; }
    .lr-nav-mobile .lr-nav-cta { display: block !important; }
}

/* ---- Buttons ---- */
.lr-btn-primary {
    background: var(--lr-plum);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.lr-btn-primary:hover {
    background: var(--lr-plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(113,75,103,0.25);
    color: #fff;
}
.lr-btn-secondary {
    background: var(--lr-white);
    color: var(--lr-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--lr-border);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lr-btn-secondary:hover {
    border-color: var(--lr-plum-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.lr-btn-teal {
    background: var(--lr-teal);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}
.lr-btn-teal:hover {
    background: var(--lr-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(1,126,132,0.25);
    color: #fff;
}

/* ---- Section Headers ---- */
.lr-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.lr-section-label {
    display: inline-block;
    background: rgba(113,75,103,0.06);
    color: var(--lr-plum);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.lr-section-label-teal {
    background: rgba(1,126,132,0.08);
    color: var(--lr-teal);
}
.lr-section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.lr-subtitle {
    color: var(--lr-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Hero Section ---- */
.lr-hero {
    background: var(--lr-gradient-hero);
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lr-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(113,75,103,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.lr-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1,126,132,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
/* Hero Split Layout (text + video) */
.lr-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.lr-hero-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.15);
}
.lr-hero-video-el {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
/* Wide video block (full-width, used on subpages) */
.lr-video-wide {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    max-width: 960px;
    margin: 0 auto;
}
.lr-video-wide-el {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
@media(max-width:1024px) {
    .lr-hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lr-hero-video {
        max-width: 600px;
        margin: 0 auto;
    }
}
.lr-hero-content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}
.lr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(113,75,103,0.08);
    border: 1px solid rgba(113,75,103,0.18);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--lr-plum);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
}
.lr-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.lr-highlight {
    background: linear-gradient(135deg, var(--lr-plum), var(--lr-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lr-hero-sub {
    font-size: 1.15rem;
    color: var(--lr-muted);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
/* When hero has split layout, left-align text */
.lr-hero-split .lr-hero-content {
    text-align: left;
    margin: 0;
}
.lr-hero-split .lr-hero-content h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}
.lr-hero-split .lr-hero-sub {
    margin: 0 0 20px;
    font-size: 0.95rem;
}
.lr-hero-split .lr-hero-checks {
    justify-content: flex-start;
}
.lr-hero-split .lr-hero-cta-group {
    justify-content: flex-start;
}
.lr-hero-sub strong {
    color: var(--lr-dark);
    font-weight: 600;
}
.lr-hero-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}
.lr-hero-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lr-text);
    font-size: 0.95rem;
}
.lr-hero-checks li svg {
    width: 20px;
    height: 20px;
    color: var(--lr-teal);
    flex-shrink: 0;
}
.lr-hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
@media(max-width:768px) {
    .lr-hero { padding: 130px 20px 70px; }
    .lr-hero-checks { flex-direction: column; align-items: center; }
}

/* ---- Page Hero (for inner pages) ---- */
.lr-page-hero {
    background: var(--lr-gradient-hero);
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
}
.lr-page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.lr-page-hero p {
    font-size: 1.1rem;
    color: var(--lr-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}
@media(max-width:768px) {
    .lr-page-hero { padding: 120px 20px 50px; }
}

/* ---- Trust Bar ---- */
.lr-trust-bar {
    background: var(--lr-white);
    padding: 40px 24px;
    text-align: center;
    border-bottom: 1px solid var(--lr-border);
}
.lr-trust-bar p {
    font-size: 0.85rem;
    color: var(--lr-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 24px;
}
.lr-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.45;
}

/* ---- Cards Grid ---- */
.lr-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lr-card {
    background: var(--lr-lighter);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--lr-border);
    transition: all 0.3s;
}
.lr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(113,75,103,0.08);
    border-color: #d1c8ce;
}
.lr-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(113,75,103,0.08), rgba(1,126,132,0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--lr-plum);
}
.lr-card-icon svg {
    width: 24px;
    height: 24px;
}
.lr-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.lr-card p {
    font-size: 0.95rem;
    color: var(--lr-muted);
    line-height: 1.6;
    margin: 0;
}
@media(max-width:768px) {
    .lr-cards-grid { grid-template-columns: 1fr; }
}

/* ---- CTA Banner ---- */
.lr-cta-banner {
    background: var(--lr-gradient-cta);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: #fff;
}
.lr-cta-banner h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.lr-cta-banner .lr-btn-primary {
    background: #fff;
    color: var(--lr-plum);
}
.lr-cta-banner .lr-btn-primary:hover {
    background: #f8f7fa;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ---- Content Section ---- */
.lr-content-section {
    padding: 80px 24px;
}
.lr-content-section.bg-white {
    background: var(--lr-white);
}
.lr-content-section.bg-light {
    background: var(--lr-light);
}
.lr-content-section.bg-gradient {
    background: var(--lr-gradient-hero);
}

/* ---- Content Prose (for article pages) ---- */
.lr-prose {
    max-width: 800px;
    margin: 0 auto;
}
.lr-prose h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 16px;
}
.lr-prose h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
}
.lr-prose h4, .lr-prose h5, .lr-prose h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 10px;
}
.lr-prose p {
    margin-bottom: 16px;
    line-height: 1.8;
}
.lr-prose ul, .lr-prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}
.lr-prose li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--lr-text);
}
.lr-prose strong, .lr-prose b {
    color: var(--lr-dark);
    font-weight: 600;
}
.lr-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}
.lr-prose hr {
    border: none;
    border-top: 1px solid var(--lr-border);
    margin: 40px 0;
}
.lr-prose a {
    color: var(--lr-teal);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.lr-prose a:hover {
    color: var(--lr-plum);
}

/* ---- Contact Form ---- */
.lr-contact-form {
    background: var(--lr-lighter);
    border: 1px solid var(--lr-border);
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}
.lr-contact-form h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}
.lr-contact-form .lr-form-sub {
    text-align: center;
    color: var(--lr-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}
.lr-contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lr-dark);
    margin-bottom: 6px;
}
.lr-contact-form input[type="text"],
.lr-contact-form input[type="email"],
.lr-contact-form input[type="tel"],
.lr-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lr-border);
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: border-color 0.2s;
    background: var(--lr-white);
}
.lr-contact-form input:focus,
.lr-contact-form textarea:focus {
    outline: none;
    border-color: var(--lr-plum);
    box-shadow: 0 0 0 3px rgba(113,75,103,0.1);
}
.lr-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.lr-contact-form .lr-form-consent {
    font-size: 0.8rem;
    color: var(--lr-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.lr-contact-form .lr-form-consent a {
    color: var(--lr-teal);
}
.lr-contact-form button[type="submit"],
.lr-contact-form input[type="submit"] {
    width: 100%;
    background: var(--lr-plum);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
}
.lr-contact-form button[type="submit"]:hover,
.lr-contact-form input[type="submit"]:hover {
    background: var(--lr-plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(113,75,103,0.25);
}

/* ---- Checklist ---- */
.lr-checklist {
    list-style: none;
    padding: 0;
}
.lr-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--lr-text);
    line-height: 1.6;
}
.lr-checklist li::before {
    content: '✓';
    color: var(--lr-teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Process Steps ---- */
.lr-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.lr-process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--lr-plum), var(--lr-teal));
    z-index: 0;
}
.lr-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.lr-step-number {
    width: 64px;
    height: 64px;
    background: var(--lr-white);
    border: 2px solid var(--lr-plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--lr-plum);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(113,75,103,0.1);
}
.lr-process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.lr-process-step p {
    font-size: 0.9rem;
    color: var(--lr-muted);
    line-height: 1.5;
}
@media(max-width:768px) {
    .lr-process-steps { grid-template-columns: 1fr; }
    .lr-process-steps::before { display: none; }
}

/* ---- FAQ Accordion ---- */
.lr-faq-item {
    border: 1px solid var(--lr-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--lr-white);
}
.lr-faq-q {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--lr-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.lr-faq-q:hover {
    background: var(--lr-lighter);
}
.lr-faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--lr-plum);
    font-weight: 300;
    transition: transform 0.3s;
}
.lr-faq-item.active .lr-faq-q::after {
    content: '−';
}
.lr-faq-a {
    padding: 0 24px 20px;
    color: var(--lr-muted);
    line-height: 1.7;
    display: none;
}
.lr-faq-item.active .lr-faq-a {
    display: block;
}

/* ---- Stats Row ---- */
.lr-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    padding: 60px 0;
}
.lr-stat h3 {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lr-plum), var(--lr-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.lr-stat p {
    font-size: 0.95rem;
    color: var(--lr-muted);
}
@media(max-width:768px) {
    .lr-stats-row { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- Bento Grid ---- */
.lr-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lr-bento-card {
    background: var(--lr-lighter);
    border: 1px solid var(--lr-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}
.lr-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(113,75,103,0.06);
}
.lr-span-2 {
    grid-column: span 2;
}
.lr-bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.lr-bento-icon svg {
    width: 28px;
    height: 28px;
}
.lr-bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.lr-bento-label {
    font-size: 0.8rem;
    color: var(--lr-muted);
    font-weight: 500;
    margin-bottom: 12px;
}
.lr-bento-card p:last-child {
    font-size: 0.95rem;
    color: var(--lr-muted);
    line-height: 1.6;
    margin: 0;
}
@media(max-width:768px) {
    .lr-bento-grid { grid-template-columns: 1fr; }
    .lr-span-2 { grid-column: span 1; }
}

/* ---- Module Items ---- */
.lr-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.lr-module-category {
    background: var(--lr-white);
    border: 1px solid var(--lr-border);
    border-radius: 20px;
    padding: 36px;
}
.lr-module-category h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lr-module-category h3 svg {
    width: 24px;
    height: 24px;
}
.lr-module-category > p {
    font-size: 0.85rem;
    color: var(--lr-muted);
    margin-bottom: 24px;
}
.lr-module-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.lr-module-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lr-lighter);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--lr-border);
    transition: all 0.2s;
}
.lr-module-item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(113,75,103,0.06);
    border-color: #d1c8ce;
}
.lr-module-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.lr-module-icon img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.lr-module-item-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 2px;
}
.lr-module-item-text p {
    font-size: 0.75rem;
    color: var(--lr-muted);
    margin: 0;
}
@media(max-width:768px) {
    .lr-modules-grid { grid-template-columns: 1fr; }
    .lr-module-items { grid-template-columns: 1fr; }
}

/* ---- Pricing Table ---- */
.lr-pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}
.lr-pricing-table th {
    background: var(--lr-plum);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}
.lr-pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--lr-border);
    font-size: 0.95rem;
    color: var(--lr-text);
}
.lr-pricing-table tr:nth-child(even) td {
    background: var(--lr-lighter);
}
.lr-pricing-table tr:last-child td {
    font-weight: 700;
    color: var(--lr-dark);
}

/* ---- Testimonial Card ---- */
.lr-testimonial {
    background: var(--lr-lighter);
    border: 1px solid var(--lr-border);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
}
.lr-testimonial blockquote {
    font-style: italic;
    color: var(--lr-text);
    line-height: 1.7;
    margin: 0 0 16px;
    font-size: 1rem;
}
.lr-testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--lr-dark);
}
.lr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.lr-testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.lr-testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--lr-dark);
}
.lr-testimonial-author span {
    font-size: 0.8rem;
    color: var(--lr-muted);
}

/* ---- Footer ---- */
.lr-footer {
    background: var(--lr-dark);
    padding: 64px 24px 32px;
    color: #94a3b8;
}
.lr-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.lr-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}
.lr-footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}
.lr-footer-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.lr-footer-detail svg {
    width: 16px;
    height: 16px;
    color: var(--lr-teal);
    flex-shrink: 0;
    margin-top: 2px;
}
.lr-footer-contact-row {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}
.lr-footer-contact-row a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--lr-teal-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.lr-footer-contact-row a svg {
    width: 14px;
    height: 14px;
}
.lr-footer-hours {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #64748b;
}
.lr-footer-media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lr-footer-media-tag {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: background 0.2s;
}
.lr-footer-media-tag:hover {
    background: rgba(255,255,255,0.12);
}
.lr-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.lr-footer-bottom-links {
    display: flex;
    gap: 24px;
}
.lr-footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.lr-footer-bottom-links a:hover {
    color: #cbd5e1;
}
@media(max-width:768px) {
    .lr-footer-grid { grid-template-columns: 1fr; }
    .lr-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---- Utility ---- */
.lr-text-center { text-align: center; }
.lr-mt-0 { margin-top: 0; }
.lr-mb-0 { margin-bottom: 0; }
.lr-mt-40 { margin-top: 40px; }
.lr-mb-40 { margin-bottom: 40px; }
.lr-mt-64 { margin-top: 64px; }
.lr-mb-64 { margin-bottom: 64px; }
.lr-pt-0 { padding-top: 0; }
.lr-pb-0 { padding-bottom: 0; }

/* ---- Bento Icon Variants ---- */
.lr-bento-icon--plum {
    background: linear-gradient(135deg, rgba(113,75,103,0.08), rgba(1,126,132,0.08));
    color: #714B67;
}
.lr-bento-icon--teal {
    background: linear-gradient(135deg, rgba(1,126,132,0.08), rgba(1,150,157,0.08));
    color: #017E84;
}
.lr-bento-icon--plum-alt {
    background: linear-gradient(135deg, rgba(113,75,103,0.08), rgba(138,100,128,0.08));
    color: #714B67;
}
.lr-bento-icon--teal-alt {
    background: linear-gradient(135deg, rgba(1,126,132,0.08), rgba(1,107,112,0.08));
    color: #017E84;
}

/* ---- Card Grid Variants ---- */
.lr-cards-grid--2col { grid-template-columns: repeat(2, 1fr); }
.lr-card-icon--teal { color: var(--lr-teal); }

/* ---- Contact Page ---- */
.lr-contact-phone {
    color: var(--lr-teal);
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
}
.lr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.lr-contact-form--full { max-width: 100%; }
.lr-contact-info-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 32px;
}
/* ---- Contact Info Details ---- */
.lr-info-block { margin-bottom: 24px; }
.lr-info-label {
    font-size: 0.85rem;
    color: var(--lr-muted);
    margin-bottom: 4px;
}
.lr-info-value {
    font-weight: 600;
    color: var(--lr-dark);
}
.lr-info-name {
    font-weight: 700;
    color: var(--lr-dark);
    margin-bottom: 4px;
}
.lr-info-sub {
    color: var(--lr-muted);
    font-size: 0.95rem;
}
.lr-info-link {
    color: var(--lr-teal);
    font-weight: 600;
    text-decoration: none;
}
.lr-info-link:hover { text-decoration: underline; }

@media(max-width:768px) {
    .lr-cards-grid--2col { grid-template-columns: 1fr; }
    .lr-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Services Section ---- */
.lr-services {
    padding: 80px 24px;
    background: var(--lr-light);
}
.lr-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lr-service-card {
    background: var(--lr-white);
    border: 1px solid var(--lr-border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.lr-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lr-plum), var(--lr-teal));
    opacity: 0;
    transition: opacity 0.3s;
}
.lr-service-card:hover {
    border-color: var(--lr-plum-light);
    box-shadow: 0 12px 48px rgba(113,75,103,0.08);
    transform: translateY(-4px);
}
.lr-service-card:hover::before {
    opacity: 1;
}
.lr-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(113,75,103,0.08), rgba(1,126,132,0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.lr-service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--lr-plum);
}
.lr-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.lr-s-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lr-plum);
    margin-bottom: 12px;
}
.lr-service-card p {
    font-size: 0.9rem;
    color: var(--lr-muted);
    line-height: 1.65;
}
@media(max-width:1024px) {
    .lr-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
    .lr-services-grid { grid-template-columns: 1fr; }
}

/* ---- Modules Section (light theme) ---- */
.lr-modules {
    padding: 80px 24px;
    background: var(--lr-white);
}
.lr-modules-category {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lr-plum);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--lr-border);
}
.lr-modules-category:first-of-type {
    margin-top: 24px;
}
.lr-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}
@media(max-width:1024px) {
    .lr-modules-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:768px) {
    .lr-modules-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- AI Section ---- */
.lr-ai {
    padding: 80px 24px;
    background: var(--lr-light);
}

/* ---- Process Section ---- */
.lr-process {
    padding: 80px 24px;
    background: var(--lr-white);
}

/* ---- Why Section ---- */
.lr-why {
    padding: 80px 24px;
    background: var(--lr-light);
}
.lr-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.lr-why-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--lr-white);
    border: 1px solid var(--lr-border);
    border-radius: 16px;
    transition: all 0.3s;
}
.lr-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(113,75,103,0.06);
}
.lr-why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(113,75,103,0.06), rgba(1,126,132,0.06));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lr-why-icon svg {
    width: 32px;
    height: 32px;
    color: var(--lr-plum);
}
.lr-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.lr-why-card p {
    font-size: 0.9rem;
    color: var(--lr-muted);
    line-height: 1.7;
}
@media(max-width:768px) {
    .lr-why-grid { grid-template-columns: 1fr; }
}

/* ---- Final CTA Section ---- */
.lr-final-cta {
    padding: 80px 24px;
    background: var(--lr-gradient-cta);
    text-align: center;
}
.lr-final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.lr-final-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.lr-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lr-final-cta .lr-btn-primary {
    background: #fff;
    color: var(--lr-plum);
    padding: 18px 42px;
    font-size: 1.05rem;
}
.lr-final-cta .lr-btn-primary:hover {
    background: #f8f7fa;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    color: var(--lr-plum);
}
.lr-final-cta .lr-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    padding: 18px 42px;
    font-size: 1.05rem;
}
.lr-final-cta .lr-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ---- Trust logos image sizing ---- */
.lr-trust-logos img {
    height: auto;
    max-height: 45px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.lr-trust-logos:hover img {
    filter: grayscale(0%);
}
.lr-trust-logos span {
    display: flex;
    align-items: center;
}

/* ---- Form submit button styling ---- */
.s_website_form_submit {
    text-align: center;
    margin-top: 24px;
}
.s_website_form_submit button,
.s_website_form_submit .lr-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 260px;
    padding: 18px 48px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--lr-plum), var(--lr-plum-dark));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(113,75,103,0.3);
}
.s_website_form_submit button:hover,
.s_website_form_submit .lr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(113,75,103,0.4);
    background: linear-gradient(135deg, var(--lr-plum-dark), #5a3a50);
    color: #fff !important;
}
.s_website_form_submit button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(113,75,103,0.3);
}

/* ---- Media tags on light/white background (kontaktai, content pages) ---- */
.lr-page .lr-footer-media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lr-page .lr-footer-media-tag {
    background: #fff !important;
    color: var(--lr-muted) !important;
    border: 1px solid var(--lr-border);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.lr-page .lr-footer-media-tag:hover {
    background: var(--lr-light) !important;
    color: var(--lr-plum) !important;
    border-color: var(--lr-plum-light);
    transform: translateY(-1px);
}

/* ---- Trust bar title uppercase ---- */
.lr-trust-bar p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---- 3-column testimonials grid ---- */
.lr-cards-grid--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media(max-width:1024px) {
    .lr-cards-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:768px) {
    .lr-cards-grid--3col { grid-template-columns: 1fr; }
}

/* ---- Footer media tags as links ---- */
.lr-footer-media-tags a.lr-footer-media-tag {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s, background 0.2s;
}
.lr-footer-media-tags a.lr-footer-media-tag:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}
