@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;800&family=Lato:wght@400;700&display=swap');

:root {
    --cbc-primary: #2563eb;
    --cbc-secondary: #1e40af;
    --cbc-accent: #f59e0b;
    --cbc-background: #fff8f5; /* Warm off-white with peach tint */
    --cbc-text: #2d3748; /* Darker text for contrast */
    --cbc-muted: #a0aec0;
    --cbc-light-grey: #edf2f7;
    --cbc-border: #e2e8f0;
    --cbc-success: #38a169;
    --cbc-error: #e53e3e;
    --header-height: 80px;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-xxxl: 96px;
    --spacing-xxxxl: 128px;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px; /* Warm Human Service card radius */
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--cbc-text);
    background-color: var(--cbc-background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 1.125rem; /* 18px */
}

::selection {
    background-color: var(--cbc-primary);
    color: var(--cbc-background);
}

a {
    color: var(--cbc-primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--cbc-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

button, input, select, textarea {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, .lp-h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--cbc-text);
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72px */
}

h2, .lp-h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--cbc-text);
    font-size: clamp(2rem, 3.5vw, 3rem); /* 32px to 48px */
    margin-bottom: var(--spacing-lg);
}

h3, .lp-h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--cbc-text);
    font-size: 1.875rem; /* 30px */
    margin-bottom: var(--spacing-md);
}

h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cbc-text);
    font-size: 1.5rem; /* 24px */
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
    max-width: 65ch;
}

.lp-subheading {
    font-size: 1.25rem; /* 20px */
    color: var(--cbc-secondary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.lp-text-center {
    text-align: center;
}

/* Utility Classes */
.lp-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.lp-section {
    padding-top: var(--spacing-xxxl);
    padding-bottom: var(--spacing-xxxl);
    position: relative;
}

.lp-section-alt {
    background-color: #fcf1eb; /* Peach tinted */
    padding-top: var(--spacing-xxxl);
    padding-bottom: var(--spacing-xxxl);
    position: relative;
}

.lp-grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

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

.lp-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.lp-flex {
    display: flex;
    align-items: center;
}

.lp-flex-col {
    flex-direction: column;
}

.lp-flex-gap-md {
    gap: var(--spacing-md);
}

.lp-icon {
    width: 1.25rem; /* 20px */
    height: 1.25rem; /* 20px */
    color: currentColor;
    flex-shrink: 0;
}

.lp-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--cbc-primary), 0.1);
    border-radius: 50%;
    width: var(--spacing-xl);
    height: var(--spacing-xl);
    color: var(--cbc-primary);
    margin-bottom: var(--spacing-sm);
}

.lp-icon-large {
    width: var(--spacing-xl);
    height: var(--spacing-xl);
    color: var(--cbc-primary);
}

.lp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.lp-check-item .lp-icon {
    margin-top: 5px;
    color: var(--cbc-primary);
}

/* Header & Navigation */
.lp-header {
    background-color: var(--cbc-background);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lp-header > .lp-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
}

.lp-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cbc-text);
    text-decoration: none;
    line-height: 1;
}

.lp-logo span {
    color: var(--cbc-primary);
}

.lp-nav {
    display: flex;
    align-items: center;
}

.lp-nav-list {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
}

.lp-nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--cbc-text);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--cbc-primary);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-nav-link:hover {
    color: var(--cbc-primary);
    transform: translateY(-2px);
}

.lp-nav-link:hover::after {
    width: 100%;
}

.lp-mobile-toggle {
    display: none;
    font-size: var(--spacing-lg);
    background: none;
    border: none;
    color: var(--cbc-text);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .lp-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--cbc-background);
        padding-top: var(--header-height);
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .lp-nav-list.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }

    .lp-nav-item {
        margin-bottom: var(--spacing-lg);
    }

    .lp-nav-link {
        font-size: 1.8rem;
    }

    .lp-mobile-toggle {
        display: block;
    }

    .lp-mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .lp-mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .lp-mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Hero Section */
.lp-hero {
    background-color: var(--cbc-background);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xxxl) 0 var(--spacing-xxxl);
    position: relative;
    background-image: linear-gradient(135deg, rgba(237, 244, 255, 0.5) 0%, rgba(255, 248, 241, 0.5) 100%);
    overflow: hidden;
}

.lp-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
    position: relative;
}

.lp-hero-text h1 {
    margin-bottom: var(--spacing-md);
}

.lp-hero-subtitle {
    font-size: 1.5rem;
    color: var(--cbc-text);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    filter: grayscale(100%);
    max-width: 400px;
    height: auto;
    z-index: 1;
}

/* Buttons */
.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 50px; /* Pill CTA */
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
}

.lp-button-primary {
    background-color: var(--cbc-primary);
    color: #595959;
    box-shadow: 0 4px 15px rgba(var(--cbc-primary), 0.2);
}

.lp-button-primary:hover {
    background-color: var(--cbc-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--cbc-primary), 0.3);
}

.lp-button-secondary {
    background-color: var(--cbc-accent);
    color: #595959;
    box-shadow: 0 4px 15px rgba(var(--cbc-accent), 0.2);
}

.lp-button-secondary:hover {
    background-color: #e58d0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--cbc-accent), 0.3);
}

.lp-button-outline {
    background-color: transparent;
    color: var(--cbc-primary);
    border: 2px solid var(--cbc-primary);
}

.lp-button-outline:hover {
    background-color: var(--cbc-primary);
    color: #595959;
    transform: translateY(-2px);
}

.lp-link {
    display: inline-flex;
    align-items: center;
    color: var(--cbc-primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-link:hover {
    color: var(--cbc-secondary);
    transform: translateX(4px);
}

/* Cards */
.lp-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-xl); /* 24px radius */
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    padding: var(--spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.08);
}

.lp-card-feature .lp-icon-large {
    margin: 0 auto var(--spacing-sm);
}

.lp-card-service, .lp-card-process {
    text-align: left;
    padding: var(--spacing-xl);
}

/* Editorial Moments */
.lp-pullquote {
    position: relative;
    font-family: 'Lato', serif;
    font-size: 1.875rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--cbc-text);
    margin: var(--spacing-xxxl) auto;
    max-width: 800px;
    padding-left: var(--spacing-xxl);
    border-left: 4px solid var(--cbc-primary);
    text-align: center;
}

.lp-pullquote::before {
    content: '“';
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--cbc-muted);
    position: absolute;
    left: -1rem;
    top: -1rem;
    opacity: 0.2;
    z-index: 1;
}

.lp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
    margin-top: var(--spacing-xxl);
}

.lp-stat-item {
    background-color: #fceee9; /* Slightly peach tinted */
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.lp-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--cbc-primary);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.lp-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cbc-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.lp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.lp-testimonial-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.08);
}

.lp-testimonial-quote {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--cbc-text);
    line-height: 1.7;
}

.lp-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    font-weight: 700;
    color: var(--cbc-text);
}

.lp-testimonial-cite img {
    width: var(--spacing-xl);
    height: var(--spacing-xl);
    border-radius: 50%;
    object-fit: cover;
}

.lp-testimonial-stars {
    color: var(--cbc-accent);
    display: flex;
    gap: 4px;
}

.lp-testimonial-stars .lp-icon {
    width: 1.125rem;
    height: 1.125rem;
    fill: currentColor;
}

/* FAQ */
.lp-faq {
    max-width: 900px;
    margin: 0 auto;
}

.lp-faq-item {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.lp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 700;
    cursor: pointer;
    color: var(--cbc-text);
    font-size: 1.125rem;
    background-color: var(--cbc-light-grey);
    transition: background-color 0.2s ease;
}

.lp-faq-q:hover {
    background-color: #e2e8f0;
}

.lp-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.lp-faq-item.active .lp-faq-q::after {
    transform: rotate(45deg);
}

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 var(--spacing-lg);
}

.lp-faq-item.active .lp-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding: var(--spacing-md) var(--spacing-lg);
}

.lp-faq-a p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cbc-muted);
}

/* CTA */
.lp-cta {
    background-color: var(--cbc-primary);
    color: #595959;
    padding: var(--spacing-xxxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.lp-cta h2 {
    color: #595959;
    margin-bottom: var(--spacing-sm);
}

.lp-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}

/* Forms */
.lp-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background-color: #ffffff;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05), 0 2px 5px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.lp-form-group {
    margin-bottom: var(--spacing-sm);
}

.lp-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--cbc-text);
    font-size: 0.95rem;
}

.lp-form-input, .lp-form-textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--cbc-border);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--cbc-text);
    background-color: #fdfdfd;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-form-input:focus, .lp-form-textarea:focus {
    outline: none;
    border-color: var(--cbc-primary);
    box-shadow: 0 0 0 3px rgba(var(--cbc-primary), 0.2);
}

.lp-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.lp-form-error {
    color: var(--cbc-error);
    font-size: 0.875rem;
    margin-top: 4px;
}

.lp-form-success {
    color: var(--cbc-success);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: var(--spacing-sm);
    border: 1px solid var(--cbc-success);
    background-color: rgba(var(--cbc-success), 0.1);
    border-radius: var(--border-radius-sm);
}

/* Footer */
.lp-footer {
    background-color: var(--cbc-text);
    color: var(--cbc-muted);
    padding: var(--spacing-xxxl) 0 var(--spacing-md);
    font-size: 0.9rem;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.lp-footer-col h4 {
    color: #595959;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.lp-footer-col p {
    max-width: none;
}

.lp-footer-col .lp-logo {
    color: #595959;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.lp-footer-col .lp-logo span {
    color: var(--cbc-accent);
}

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

.lp-footer-list li {
    margin-bottom: var(--spacing-xs);
}

.lp-footer-link {
    color: var(--cbc-muted);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-footer-link:hover {
    color: #595959;
    text-decoration: underline;
}

.lp-social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.lp-social-links a {
    color: var(--cbc-muted);
    font-size: 1.5rem;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-social-links a:hover {
    color: #595959;
}

.lp-footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cbc-muted);
    font-size: 0.85rem;
}

/* Animations */
.lp-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.lp-animate.lp-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Waves/Dividers (Warm Human Service) */
.lp-section-wave-top {
    position: relative;
    padding-top: var(--spacing-xxxl);
    padding-bottom: var(--spacing-xxxl);
}

.lp-section-wave-top::before {
    content: '';
    position: absolute;
    top: -1px; /* Overlap to hide pixel line */
    left: 0;
    width: 100%;
    height: 100px; /* Adjust height of the wave */
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 C240,100 480,0 720,50 C960,100 1200,0 1440,50 L1440,100 L0,100 Z" fill="%23fcf1eb"></path></svg>'); /* Peach tinted background */
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateY(-100%);
    z-index: 1;
}

.lp-section-wave-bottom {
    position: relative;
    padding-top: var(--spacing-xxxl);
    padding-bottom: var(--spacing-xxxl);
}

.lp-section-wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Overlap to hide pixel line */
    left: 0;
    width: 100%;
    height: 100px; /* Adjust height of the wave */
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 C240,0 480,100 720,50 C960,0 1200,100 1440,50 L1440,0 L0,0 Z" fill="%23fcf1eb"></path></svg>'); /* Peach tinted background */
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateY(100%);
    z-index: 1;
}

/* Specific section styles for Warm Human Service */
.lp-process-section .lp-card {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
    background-color: var(--cbc-light-grey);
    box-shadow: none;
    border: 1px solid var(--cbc-border);
}

.lp-process-section .lp-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.lp-process-section .lp-card .lp-icon-large {
    margin-bottom: var(--spacing-md);
}

.lp-process-section .lp-card h4 {
    color: var(--cbc-primary);
}

.lp-cta-trust-section {
    background-color: #f7edea; /* Even warmer peach tint */
}

.lp-why-choose-us-section .lp-card-feature {
    background-color: #ffffff;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    padding: var(--spacing-xl);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.lp-why-choose-us-section .lp-card-feature .lp-icon-wrapper {
    margin-left: 0;
    background-color: rgba(var(--cbc-accent), 0.1);
    color: var(--cbc-accent);
}

@media (max-width: 1024px) {
    .lp-hero-subtitle {
        font-size: 1.3rem;
    }
    .lp-section {
        padding-top: var(--spacing-xxl);
        padding-bottom: var(--spacing-xxl);
    }
    .lp-section-alt {
        padding-top: var(--spacing-xxl);
        padding-bottom: var(--spacing-xxl);
    }
    .lp-pullquote {
        font-size: 1.5rem;
        padding-left: var(--spacing-lg);
    }
    .lp-pullquote::before {
        font-size: 4rem;
        left: 0;
    }
    .lp-footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    h1, .lp-h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    h2, .lp-h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    h3, .lp-h3 {
        font-size: 1.5rem;
    }
    .lp-hero {
        min-height: 60vh;
        padding-top: var(--spacing-xxl);
        padding-bottom: var(--spacing-xxl);
    }
    .lp-hero-subtitle {
        font-size: 1.125rem;
    }
    .lp-container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    .lp-card {
        padding: var(--spacing-md);
    }
    .lp-testimonial-card {
        padding: var(--spacing-md);
    }
    .lp-faq-q {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    .lp-faq-a {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    .lp-cta p {
        font-size: 1rem;
    }
    .lp-contact-form {
        padding: var(--spacing-md);
    }
    .lp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lp-footer-col h4, .lp-footer-col .lp-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .lp-social-links {
        justify-content: center;
    }
    .lp-section-wave-top::before, .lp-section-wave-bottom::after {
        height: 60px;
    }
}

@media (max-width: 480px) {
    h1, .lp-h1 {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }
    h2, .lp-h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .lp-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }
    .lp-stats {
        grid-template-columns: 1fr;
    }
    .lp-testimonial-grid {
        grid-template-columns: 1fr;
    }
    .lp-footer-bottom {
        font-size: 0.75rem;
    }
    .lp-pullquote {
        font-size: 1.3rem;
        padding-left: var(--spacing-sm);
        border-left: 2px solid var(--cbc-primary);
    }
    .lp-pullquote::before {
        font-size: 3rem;
        left: -0.5rem;
        top: -0.5rem;
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

@keyframes lpFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.lp-animate { opacity: 0; }
.lp-animate.lp-visible { animation: lpFadeInUp 0.6s ease forwards; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.lp-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.lp-faq-item.active .lp-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.lp-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.lp-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-section { padding: 96px 0; background: #ffffff; }
.lp-section-alt { padding: 96px 0; background: color-mix(in srgb, #2563eb 4%, #ffffff); }
.lp-grid { display: grid; gap: 32px; }
.lp-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.lp-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.lp-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.lp-text-center { text-align: center; }
/* Header / Nav */
.lp-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #0f172a 8%, transparent); }
.lp-header > .lp-container, .lp-header .lp-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.lp-brand, .lp-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Outfit; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #2563eb; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.lp-brand-mark { display: inline-flex; color: #2563eb; flex-shrink: 0; }
.lp-brand-mark svg { display: block; width: 24px; height: 24px; }
.lp-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.lp-nav-list, .lp-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.lp-nav-link { color: #0f172a; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.lp-nav-link + .lp-nav-link { margin-left: 0; }
.lp-nav-link:hover { color: #2563eb; }
.lp-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.lp-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #2563eb 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #2563eb 7%, #ffffff) 0%, #ffffff 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.lp-hero [class*="ghost"], .lp-hero [class*="bg-text"], .lp-hero [class*="watermark"], .lp-hero [class*="hero-bg"], .lp-hero [aria-hidden="true"][class*="text"], .lp-hero [data-decorative="true"] { display: none !important; }
.lp-hero .lp-hero-image, .lp-hero .lp-dashboard-mockup { position: relative !important; }
.lp-hero .lp-hero-image { max-width: 100%; }
.lp-hero .lp-hero-image > * { max-width: 100%; }
.lp-hero .lp-stats { position: static !important; }
.lp-hero > .lp-container { max-width: 1200px; }
.lp-hero h1, .lp-hero .lp-h1 { font-family: Outfit; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #0f172a; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.lp-hero p, .lp-hero .lp-hero-sub, .lp-hero .lp-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #94a3b8; max-width: 48ch; margin: 0; }
.lp-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.lp-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.lp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.lp-hero-image { position: relative; }
.lp-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #2563eb 12%, transparent); z-index: 0; }
.lp-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.lp-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #94a3b8; max-width: 60ch; }
.lp-h1 { font-family: Outfit; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #0f172a; margin: 0; }
.lp-h2 { font-family: Outfit; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #0f172a; margin: 0 0 24px; }
.lp-h3 { font-family: Outfit; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #0f172a; margin: 0 0 12px; }
.lp-subheading { font-size: 1.125rem; line-height: 1.7; color: #94a3b8; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.lp-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.lp-button-primary { background: #2563eb; color: #fff; border-color: #2563eb; }
.lp-button-primary:hover { background: #1e40af; border-color: #1e40af; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #2563eb 50%, transparent); }
.lp-button-secondary { background: #1e40af; color: #fff; border-color: #1e40af; }
.lp-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.lp-button-outline { background: transparent; color: #2563eb; border-color: #2563eb; }
.lp-button-outline:hover { background: #2563eb; color: #fff; }
.lp-link { color: #2563eb; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.lp-link:hover { gap: 10px; }
/* Cards */
.lp-card { background: #fff; border: 1px solid color-mix(in srgb, #0f172a 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.lp-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.lp-card-feature, .lp-card-service, .lp-card-process { text-align: left; }
/* Icons */
.lp-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #2563eb 10%, transparent); color: #2563eb; }
.lp-icon-wrapper svg, .lp-icon-wrapper .lp-icon { width: 28px; height: 28px; stroke: #2563eb; }
.lp-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.lp-icon-large { width: 48px; height: 48px; stroke: #2563eb; }
/* Check list */
.lp-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.lp-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.lp-check-item .lp-icon { color: #2563eb; margin-top: 4px; }
/* Editorial */
.lp-pullquote { font-family: Outfit; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #0f172a; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.lp-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #2563eb; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.lp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.lp-stat-item { text-align: center; }
.lp-stat-number { display: block; font-family: Outfit; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #2563eb; line-height: 1; letter-spacing: -0.03em; }
.lp-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
/* Testimonials */
.lp-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lp-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #0f172a 6%, transparent); }
.lp-testimonial-quote { font-style: italic; line-height: 1.7; color: #0f172a; margin-bottom: 16px; }
.lp-testimonial-cite { font-weight: 600; color: #2563eb; font-size: 0.95rem; }
.lp-testimonial-stars { color: #f59e0b; margin-bottom: 12px; }
/* FAQ */
.lp-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.lp-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #0f172a 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.lp-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.lp-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #0f172a; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.lp-faq-q::after { content: '+'; font-size: 1.5rem; color: #2563eb; transition: transform 0.3s ease; flex-shrink: 0; }
.lp-faq-item.active .lp-faq-q::after { transform: rotate(45deg); }
/* CTA */
.lp-cta { padding: 96px 0; background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); color: #fff; text-align: center; }
.lp-cta .lp-h2, .lp-cta h2 { color: #fff; }
.lp-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.lp-cta .lp-button-primary { background: #fff; color: #2563eb; border-color: #fff; }
.lp-cta .lp-button-primary:hover { background: #ffffff; color: #2563eb; }
/* Form */
.lp-form, .lp-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #0f172a 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #2563eb 40%, transparent); text-align: left; color: #0f172a; }
.lp-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .lp-form-row { grid-template-columns: 1fr; } }
.lp-form-group { display: flex; flex-direction: column; gap: 8px; }
.lp-form-label, .lp-form label { font-weight: 600; font-size: 0.9rem; color: #0f172a; letter-spacing: 0.01em; }
.lp-form-input, .lp-form-textarea, .lp-form input:not([type="submit"]), .lp-form textarea, .lp-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #0f172a 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #2563eb 2%, #fff); color: #0f172a; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.lp-form-input:hover, .lp-form-textarea:hover { border-color: color-mix(in srgb, #2563eb 35%, transparent); }
.lp-form-input:focus, .lp-form-textarea:focus, .lp-form input:focus, .lp-form textarea:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 4px color-mix(in srgb, #2563eb 18%, transparent); }
.lp-form-textarea, .lp-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.lp-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.lp-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.lp-form-error[hidden], .lp-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.lp-form-error.is-visible, .lp-form-success.is-visible { display: block; }
.lp-cta .lp-form, .lp-cta .lp-contact-form { color: #0f172a; }
.lp-cta .lp-form button[type="submit"], .lp-cta .lp-contact-form button[type="submit"] { background: #2563eb; color: #fff; border-color: #2563eb; }
/* Footer */
.lp-footer { background: #0f172a; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.lp-footer .lp-h3, .lp-footer h3, .lp-footer h4 { color: #fff; font-family: Outfit; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.lp-footer .lp-logo { color: #fff; }
.lp-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.lp-footer-col { display: flex; flex-direction: column; gap: 12px; }
.lp-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.lp-footer-link:hover { color: #fff; }
.lp-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.lp-social-links { display: flex; gap: 16px; }
.lp-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.lp-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .lp-hero { padding: 80px 0 64px; }
  .lp-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .lp-section, .lp-section-alt { padding: 64px 0; }
  .lp-cta { padding: 64px 0; }
  .lp-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .lp-nav-list { display: none; }
  .lp-mobile-toggle { display: inline-flex; }
  .lp-nav.active .lp-nav-list, .lp-header.active .lp-nav-list, .lp-nav-list.active, .lp-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .lp-card { padding: 24px; }
  .lp-form, .lp-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: warm_human_service === */
.lp-section { background: #fdf8f3; }
.lp-section-alt { background: #f8efe5; }
.lp-hero { background: radial-gradient(circle at 80% 20%, color-mix(in srgb, #f59e0b 18%, transparent), transparent 60%), #fdf8f3; padding: 112px 0 96px; }
.lp-card { border-radius: 24px; background: #fff; box-shadow: 0 8px 24px rgba(120,80,40,0.08); }
.lp-button-primary { background: #2563eb; color: #fff; border-radius: 999px; padding: 14px 28px; }
.lp-button-secondary { background: #fff; color: #2563eb; border-radius: 999px; border: 1px solid color-mix(in srgb, #2563eb 30%, transparent); }