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

:root {
    --ikb-primary: #b45309;
    --ikb-secondary: #92400e;
    --ikb-accent: #6366f1;
    --ikb-background: #fffbeb;
    --ikb-text: #451a03;
    --ikb-muted: #fcd34d;
    --ikb-light-gray: #f8f8f8;
    --ikb-dark-gray: #333333;
    --ikb-white: #ffffff;

    --lp-spacing-extra-small: 8px;
    --lp-spacing-small: 16px;
    --lp-spacing-medium: 24px;
    --lp-spacing-large: 32px;
    --lp-spacing-extra-large: 48px;
    --lp-spacing-huge: 64px;
    --lp-spacing-section-desktop: 96px;
    --lp-spacing-section-mobile: 64px;

    --lp-border-radius-card: 12px;
    --lp-border-radius-button: 8px;
    --lp-border-radius-image: 8px;

    --lp-font-heading: 'Merriweather', serif;
    --lp-font-body: 'Lato', sans-serif;

    --lp-shadow-card: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --lp-shadow-card-hover: 0 8px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--lp-font-body);
    color: var(--ikb-text);
    background-color: var(--ikb-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Scale */
h1, .lp-h1 {
    font-family: var(--lp-font-heading);
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ikb-text);
}

h2, .lp-h2 {
    font-family: var(--lp-font-heading);
    font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--ikb-text);
}

h3, .lp-h3 {
    font-family: var(--lp-font-heading);
    font-size: clamp(1.5rem, 2.5vw + 0.25rem, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ikb-text);
}

p {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.75;
    margin-bottom: var(--lp-spacing-medium);
}

.lp-subheading {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--ikb-text);
    line-height: 1.5;
}

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

.lp-section {
    padding-top: var(--lp-spacing-section-desktop);
    padding-bottom: var(--lp-spacing-section-desktop);
}

.lp-section-alt {
    background-color: var(--ikb-light-gray);
    padding-top: var(--lp-spacing-section-desktop);
    padding-bottom: var(--lp-spacing-section-desktop);
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--lp-spacing-large);
}

.lp-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 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;
    gap: var(--lp-spacing-small);
}

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

/* Top Contact Bar */
.lp-top-bar {
    background-color: var(--ikb-secondary);
    color: var(--ikb-white);
    padding: var(--lp-spacing-small) var(--lp-spacing-medium);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-top-bar a {
    color: var(--ikb-white);
    margin-left: var(--lp-spacing-small);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-top-bar a:hover {
    opacity: 0.8;
}

.lp-top-bar-contact {
    display: flex;
    gap: var(--lp-spacing-large);
}

/* Header & Navigation */
.lp-header {
    background-color: var(--ikb-white);
    padding: var(--lp-spacing-medium) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.lp-logo {
    font-family: var(--lp-font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--ikb-text);
}

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

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

.lp-nav-link {
    font-weight: 600;
    color: var(--ikb-text);
    padding: var(--lp-spacing-extra-small) 0;
    position: relative;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .lp-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--lp-spacing-extra-small);
    }
    .lp-top-bar-contact {
        gap: var(--lp-spacing-small);
    }
    .lp-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--ikb-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .lp-nav.active {
        right: 0;
    }

    .lp-nav-list {
        flex-direction: column;
        text-align: center;
        gap: var(--lp-spacing-large);
    }

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

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

    .lp-header-content {
        padding-right: var(--lp-spacing-medium);
    }
}

/* Hero Section */
.lp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--lp-spacing-section-desktop);
    padding-bottom: var(--lp-spacing-section-desktop);
}

.lp-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.4) 50%, rgba(20, 20, 20, 0.1) 100%);
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    color: var(--ikb-white);
    max-width: 900px;
    padding: var(--lp-spacing-large);
}

.lp-hero-content .lp-h1 {
    color: var(--ikb-white);
    margin-bottom: var(--lp-spacing-medium);
}

.lp-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--lp-spacing-large);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--lp-spacing-small) var(--lp-spacing-large);
    font-weight: 700;
    border-radius: var(--lp-border-radius-button);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.lp-button-primary {
    background-color: var(--ikb-primary);
    color: var(--ikb-white);
    border: 2px solid var(--ikb-primary);
}

.lp-button-primary:hover {
    background-color: var(--ikb-secondary);
    border-color: var(--ikb-secondary);
    transform: translateY(-2px);
}

.lp-button-secondary {
    background-color: var(--ikb-accent);
    color: var(--ikb-white);
    border: 2px solid var(--ikb-accent);
}

.lp-button-secondary:hover {
    background-color: #5154bd;
    border-color: #5154bd;
    transform: translateY(-2px);color:#fddece}

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

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

/* Cards */
.lp-card {
    background-color: var(--ikb-white);
    border-radius: var(--lp-border-radius-card);
    box-shadow: var(--lp-shadow-card);
    padding: var(--lp-spacing-large);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.lp-card-feature .lp-icon-wrapper {
    margin-bottom: var(--lp-spacing-medium);
}

.lp-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--ikb-primary-rgb), 0.1);
    border-radius: 50%;
    padding: var(--lp-spacing-small);
    margin-bottom: var(--lp-spacing-small);
}

.lp-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    stroke: currentColor;
    stroke-width: 2;
    fill: none; /* Default for stroke icons */
}

.lp-icon.fill {
    fill: currentColor;
    stroke: none;
}

.lp-icon-large {
    width: 48px;
    height: 48px;
    color: var(--ikb-primary);
}

/* Check List */
.lp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--lp-spacing-small);
    margin-bottom: var(--lp-spacing-small);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.lp-check-item .lp-icon {
    width: 20px;
    height: 20px;
    color: var(--ikb-primary);
    flex-shrink: 0;
    margin-top: 4px; /* Align with text */
}

/* Editorial Moments */
.lp-pullquote {
    font-family: var(--lp-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-style: italic;
    color: var(--ikb-text);
    max-width: 800px;
    margin: var(--lp-spacing-huge) auto;
    text-align: center;
    position: relative;
    padding: 0 var(--lp-spacing-large);
}

.lp-pullquote::before {
    content: '“';
    font-size: 8rem;
    line-height: 0.8;
    color: var(--ikb-muted);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.7;
    font-family: var(--lp-font-heading);
}

.lp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--lp-spacing-large);
    text-align: center;
    margin-top: var(--lp-spacing-huge);
    padding: var(--lp-spacing-large) 0;
    background-color: var(--ikb-light-gray);
}

.lp-stat-item {
    padding: var(--lp-spacing-medium);
}

.lp-stat-number {
    font-family: var(--lp-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--ikb-primary);
    line-height: 1;
    margin-bottom: var(--lp-spacing-extra-small);
}

.lp-stat-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ikb-text);
    opacity: 0.8;
}

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

.lp-testimonial-card {
    background-color: var(--ikb-white);
    border-radius: var(--lp-border-radius-card);
    box-shadow: var(--lp-shadow-card);
    padding: var(--lp-spacing-large);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lp-testimonial-quote {
    font-style: italic;
    margin-bottom: var(--lp-spacing-medium);
    color: var(--ikb-dark-gray);
    flex-grow: 1;
}

.lp-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--lp-spacing-small);
    font-weight: 600;
    color: var(--ikb-text);
}

.lp-testimonial-cite img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.lp-testimonial-stars {
    color: var(--ikb-muted);
    margin-bottom: var(--lp-spacing-small);
    display: flex;
    gap: 4px;
}

.lp-testimonial-stars .lp-icon {
    width: 20px;
    height: 20px;
    fill: var(--ikb-muted);
    stroke: none;
}

/* FAQ */
.lp-faq-item {
    background-color: var(--ikb-white);
    border: 1px solid #eee;
    border-radius: var(--lp-border-radius-button);
    margin-bottom: var(--lp-spacing-small);
    overflow: hidden;
    box-shadow: var(--lp-shadow-card);
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-faq-item:hover {
    box-shadow: var(--lp-shadow-card-hover);
}

.lp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--lp-spacing-medium);
    font-weight: 700;
    cursor: pointer;
    color: var(--ikb-text);
    font-family: var(--lp-font-heading);
    font-size: 1.125rem;
    line-height: 1.4;
}

.lp-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--ikb-primary);
    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-left: var(--lp-spacing-medium);
    padding-right: var(--lp-spacing-medium);
    padding-bottom: 0;
    color: var(--ikb-dark-gray);
}

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

.lp-faq-a p {
    margin-bottom: 0;
}

/* CTA Banner */
.lp-cta {
    background-color: var(--ikb-primary);
    color: var(--ikb-white);
    padding: var(--lp-spacing-huge) 0;
    text-align: center;
}

.lp-cta-content .lp-h2 {
    color: var(--ikb-white);
    margin-bottom: var(--lp-spacing-medium);
}

.lp-cta p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--lp-spacing-large);
    font-size: 1.2rem;
    opacity: 0.9;
}

.lp-cta .lp-button-primary {
    background-color: var(--ikb-white);
    color: var(--ikb-primary);
    border-color: var(--ikb-white);
}

.lp-cta .lp-button-primary:hover {
    background-color: var(--ikb-light-gray);
    border-color: var(--ikb-light-gray);
    color: var(--ikb-secondary);
}

/* Forms */
.lp-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--ikb-white);
    padding: var(--lp-spacing-large);
    border-radius: var(--lp-border-radius-card);
    box-shadow: var(--lp-shadow-card);
}

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

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

.lp-form-input, .lp-form-textarea {
    width: 100%;
    padding: var(--lp-spacing-small);
    border: 1px solid #ccc;
    border-radius: var(--lp-border-radius-button);
    font-family: var(--lp-font-body);
    font-size: 1rem;
    color: var(--ikb-text);
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.lp-form-error {
    color: #a40e0e;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.lp-form-success {
    color: #157a3a;
    font-weight: 600;
    text-align: center;
    padding: var(--lp-spacing-small);
    background-color: #ecfdf5;
    border: 1px solid #d1fae5;
    border-radius: var(--lp-border-radius-button);
    margin-top: var(--lp-spacing-medium);
    display: none;
}

/* Trust Badges */
.lp-trust-strip {
    background-color: var(--ikb-white);
    padding: var(--lp-spacing-large) 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.lp-trust-strip .lp-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.lp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--lp-spacing-extra-small);
    color: var(--ikb-text);
    font-weight: 600;
    font-size: 1.0625rem;
}

.lp-trust-item .lp-icon {
    width: 32px;
    height: 32px;
    color: var(--ikb-primary);
}

/* Footer */
.lp-footer {
    background-color: var(--ikb-text);
    color: var(--ikb-white);
    padding-top: var(--lp-spacing-section-desktop);
    padding-bottom: var(--lp-spacing-small);
    font-size: 0.95rem;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--lp-spacing-large);
    padding-bottom: var(--lp-spacing-huge);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lp-footer-col h3 {
    color: var(--ikb-primary);
    margin-bottom: var(--lp-spacing-medium);
    font-size: 1.2rem;
}

.lp-footer-col p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--lp-spacing-small);
    font-size: 0.95rem;
}

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

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

.lp-footer-link {
    color: rgba(255,255,255,0.8);
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-footer-link:hover {
    color: var(--ikb-white);
}

.lp-footer-bottom {
    text-align: center;
    padding-top: var(--lp-spacing-small);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

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

.lp-social-links a {
    color: var(--ikb-white);
    opacity: 0.8;
}

.lp-social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lp-social-links .lp-icon {
    width: 24px;
    height: 24px;
}

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

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .lp-section {
        padding-top: var(--lp-spacing-huge);
        padding-bottom: var(--lp-spacing-huge);
    }
    .lp-section-alt {
        padding-top: var(--lp-spacing-huge);
        padding-bottom: var(--lp-spacing-huge);
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding-top: var(--lp-spacing-section-mobile);
        padding-bottom: var(--lp-spacing-section-mobile);
    }
    .lp-section-alt {
        padding-top: var(--lp-spacing-section-mobile);
        padding-bottom: var(--lp-spacing-section-mobile);
    }
    .lp-hero-content {
        padding: var(--lp-spacing-medium);
    }
    .lp-h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    .lp-h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .lp-hero-subtitle {
        font-size: 1rem;
    }
    .lp-pullquote {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .lp-pullquote::before {
        font-size: 6rem;
        top: -20px;
    }
    .lp-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .lp-top-bar {
        padding: var(--lp-spacing-small);
    }
    .lp-top-bar-contact {
        flex-direction: column;
        align-items: flex-start;
    }
    .lp-container {
        padding-left: var(--lp-spacing-small);
        padding-right: var(--lp-spacing-small);
    }
    .lp-logo {
        font-size: 1.5rem;
    }
    .lp-stats {
        grid-template-columns: 1fr;
    }
    .lp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lp-footer-col p, .lp-footer-list {
        margin-left: auto;
        margin-right: auto;
    }
    .lp-footer-col h3 {
        text-align: center;
    }
    .lp-social-links {
        justify-content: center;
    }
}


/* === 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: #fffbeb; }
.lp-section-alt { padding: 96px 0; background: color-mix(in srgb, #b45309 4%, #fffbeb); }
.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, #451a03 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: Merriweather; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #b45309; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.lp-brand-mark { display: inline-flex; color: #b45309; 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: #451a03; 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: #b45309; }
.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, #b45309 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #b45309 7%, #fffbeb) 0%, #fffbeb 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: Merriweather; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #451a03; 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: #fcd34d; 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, #b45309 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: #fcd34d; max-width: 60ch; }
.lp-h1 { font-family: Merriweather; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #451a03; margin: 0; }
.lp-h2 { font-family: Merriweather; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #451a03; margin: 0 0 24px; }
.lp-h3 { font-family: Merriweather; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #451a03; margin: 0 0 12px; }
.lp-subheading { font-size: 1.125rem; line-height: 1.7; color: #fcd34d; 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: #b45309; color: #fff; border-color: #b45309; }
.lp-button-primary:hover { background: #92400e; border-color: #92400e; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #b45309 50%, transparent); }
.lp-button-secondary { background: #92400e; color: #fff; border-color: #92400e; }
.lp-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.lp-button-outline { background: transparent; color: #b45309; border-color: #b45309; }
.lp-button-outline:hover { background: #b45309; color: #fff; }
.lp-link { color: #b45309; 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, #451a03 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, #b45309 10%, transparent); color: #b45309; }
.lp-icon-wrapper svg, .lp-icon-wrapper .lp-icon { width: 28px; height: 28px; stroke: #b45309; }
.lp-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.lp-icon-large { width: 48px; height: 48px; stroke: #b45309; }
/* 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: #b45309; margin-top: 4px; }
/* Editorial */
.lp-pullquote { font-family: Merriweather; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #451a03; 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: #b45309; 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: Merriweather; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #b45309; 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: #fcd34d; }
/* 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, #451a03 6%, transparent); }
.lp-testimonial-quote { font-style: italic; line-height: 1.7; color: #451a03; margin-bottom: 16px; }
.lp-testimonial-cite { font-weight: 600; color: #b45309; font-size: 0.95rem; }
.lp-testimonial-stars { color: #6366f1; 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, #451a03 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: #451a03; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.lp-faq-q::after { content: '+'; font-size: 1.5rem; color: #b45309; 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, #b45309 0%, #92400e 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: #b45309; border-color: #fff; }
.lp-cta .lp-button-primary:hover { background: #fffbeb; color: #b45309; }
/* 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, #451a03 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #b45309 40%, transparent); text-align: left; color: #451a03; }
.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: #451a03; 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, #451a03 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #b45309 2%, #fff); color: #451a03; 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, #b45309 35%, transparent); }
.lp-form-input:focus, .lp-form-textarea:focus, .lp-form input:focus, .lp-form textarea:focus { outline: none; border-color: #b45309; box-shadow: 0 0 0 4px color-mix(in srgb, #b45309 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: #451a03; }
.lp-cta .lp-form button[type="submit"], .lp-cta .lp-contact-form button[type="submit"] { background: #b45309; color: #fff; border-color: #b45309; }
/* Footer */
.lp-footer { background: #451a03; 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: Merriweather; 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: local_trust_corporate === */
.lp-header { box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.lp-hero { background: linear-gradient(180deg, color-mix(in srgb, #b45309 6%, #fffbeb) 0%, #fffbeb 100%); padding: 96px 0 80px; }
.lp-card { border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.lp-button-primary { background: #b45309; color: #fff; border-radius: 8px; }
.lp-stats { background: color-mix(in srgb, #b45309 4%, #fffbeb); padding: 48px 24px; border-radius: 16px; }