/* LinkzHub Premium Frontend Styling - Version 4.0.0 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --dark-slate: #1e293b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --text: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER / NAVBAR --- */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    gap: 8px;
}

.logo img {
    max-height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: var(--light);
    color: var(--dark);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

/* --- HERO SECTION --- */
.hero {
    background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
                var(--white);
    padding: 100px 0 80px 0;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 24px;
}

/* --- MODERN HOME PAGE --- */
.lzh-home {
    background: var(--white);
}

.lzh-home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0) 38%),
        var(--white);
    padding: 96px 0 72px;
    border-bottom: 1px solid var(--border);
}

.lzh-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.lzh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.lzh-home-hero-copy h1 {
    max-width: 760px;
    font-size: 58px;
    line-height: 1.04;
    margin-bottom: 22px;
}

.lzh-home-hero-copy p {
    max-width: 650px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.lzh-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.lzh-home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.lzh-home-proof span {
    color: var(--dark-slate);
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
}

.lzh-hero-platform {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
    overflow: hidden;
}

.lzh-platform-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.lzh-platform-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #38bdf8;
}

.lzh-platform-topbar span:nth-child(2) {
    background: #22c55e;
}

.lzh-platform-topbar span:nth-child(3) {
    background: #f59e0b;
    margin-right: 8px;
}

.lzh-platform-topbar strong {
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lzh-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
}

.lzh-platform-card,
.lzh-platform-chart,
.lzh-platform-list {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px;
}

.lzh-platform-card small {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lzh-platform-card strong {
    display: block;
    color: var(--dark);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}

.lzh-platform-card em {
    color: var(--success);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.lzh-platform-card-dark {
    background: #1d4ed8;
}

.lzh-platform-card-dark small,
.lzh-platform-card-dark strong,
.lzh-platform-card-dark em {
    color: #ffffff;
}

.lzh-platform-chart {
    grid-column: 1 / -1;
    min-height: 180px;
    display: flex;
    align-items: end;
    gap: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lzh-platform-chart div {
    flex: 1;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    min-height: 42px;
}

.lzh-platform-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
}

.lzh-platform-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.lzh-platform-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.lzh-platform-list span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.lzh-platform-list strong {
    color: var(--primary);
    font-size: 13px;
}

.lzh-trust-band {
    background: var(--dark);
    padding: 26px 0;
}

.lzh-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lzh-trust-grid div {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 20px;
}

.lzh-trust-grid strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 4px;
}

.lzh-trust-grid span {
    color: #cbd5e1;
    font-size: 13px;
}

.lzh-home-section {
    background: var(--white);
}

.lzh-split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.lzh-split-section h2,
.lzh-testimonial-layout h2 {
    font-size: 40px;
    line-height: 1.15;
}

.lzh-split-section p,
.lzh-testimonial-layout p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.lzh-text-link {
    display: inline-flex;
    color: var(--primary);
    font-weight: 800;
    margin-top: 18px;
}

.lzh-pathways-section,
.lzh-feature-section,
.lzh-faq-preview {
    background: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lzh-pathway-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.lzh-pathway-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.lzh-card-mark {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.lzh-card-mark-alt {
    background: var(--secondary);
}

.lzh-pathway-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.lzh-pathway-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.lzh-pathway-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.lzh-pathway-card li {
    position: relative;
    color: var(--text);
    font-size: 14px;
    padding-left: 22px;
}

.lzh-pathway-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.lzh-vertical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lzh-vertical-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lzh-vertical-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.lzh-vertical-card span {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.lzh-vertical-card strong {
    display: block;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.lzh-vertical-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.lzh-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lzh-feature-grid article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
}

.lzh-feature-grid span {
    display: inline-flex;
    min-width: 46px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: #ecfeff;
    color: #0891b2;
    border: 1px solid #a5f3fc;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 18px;
}

.lzh-feature-grid h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.lzh-feature-grid p {
    color: var(--text-muted);
    font-size: 14px;
}

.lzh-testimonial-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.lzh-testimonial-stack {
    display: grid;
    gap: 16px;
}

.lzh-testimonial-stack blockquote {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.lzh-testimonial-stack p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 14px;
}

.lzh-testimonial-stack cite {
    color: var(--primary);
    font-style: normal;
    font-weight: 800;
}

.lzh-faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lzh-faq-preview-grid div {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
}

.lzh-faq-preview-grid strong {
    display: block;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.lzh-faq-preview-grid p {
    color: var(--text-muted);
    font-size: 14px;
}

.lzh-final-cta {
    background: var(--dark);
    padding: 64px 0;
}

.lzh-final-cta .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.lzh-final-cta h2 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 10px;
}

.lzh-final-cta p {
    max-width: 680px;
    color: #cbd5e1;
}

.lzh-final-cta .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
}

.lzh-final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* --- STATS COUNTERS --- */
.stats-strip {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    color: #94a3b8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- SECTION GENERAL --- */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- BENEFIT CARDS --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background-color: var(--light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- CONTACT FORM --- */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info-panel {
    background-color: var(--dark-slate);
    color: var(--white);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info-panel p {
    color: #cbd5e1;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    font-size: 20px;
}

.contact-detail-text h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-detail-text p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary);
}

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

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* --- FAQ ACCORDION --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    user-select: none;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 15px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* --- ABOUT VIEW SPECIFICS --- */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-member {
    text-align: center;
    background-color: var(--light);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.team-member h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-muted);
    font-size: 13px;
}

/* --- LEGAL DOCUMENT VIEW --- */
.legal-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 40px auto;
}

.legal-card h1 {
    font-size: 36px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 16px;
}

.legal-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 32px;
}

.legal-content h3 {
    font-size: 20px;
    margin: 28px 0 12px 0;
}

.legal-content p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--dark);
    color: #94a3b8;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo img {
    max-height: 36px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.5;
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #94a3b8;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .lzh-home-hero-grid,
    .lzh-split-section,
    .lzh-testimonial-layout,
    .lzh-final-cta .container {
        grid-template-columns: 1fr;
    }
    .lzh-home-hero-grid {
        gap: 36px;
    }
    .lzh-home-hero-copy,
    .lzh-split-section {
        text-align: center;
    }
    .lzh-home-actions,
    .lzh-home-proof {
        justify-content: center;
    }
    .lzh-trust-grid,
    .lzh-feature-grid,
    .lzh-faq-preview-grid {
        grid-template-columns: 1fr;
    }
    .lzh-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 16px 0;
        flex-direction: column;
        gap: 16px;
    }
    .nav-menu {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .lzh-home-hero {
        padding: 64px 0 52px;
    }
    .lzh-home-hero-grid {
        grid-template-columns: 1fr;
    }
    .lzh-home-hero-copy h1 {
        font-size: 38px;
    }
    .lzh-home-hero-copy p {
        font-size: 16px;
    }
    .lzh-hero-platform {
        border-radius: 8px;
    }
    .lzh-platform-grid,
    .lzh-pathway-grid,
    .lzh-vertical-grid {
        grid-template-columns: 1fr;
    }
    .lzh-platform-card,
    .lzh-platform-chart,
    .lzh-platform-list {
        grid-column: auto;
    }
    .lzh-platform-list div {
        flex-direction: column;
        gap: 4px;
    }
    .lzh-trust-grid div {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-left: 0;
        padding-top: 16px;
    }
    .lzh-split-section h2,
    .lzh-testimonial-layout h2,
    .lzh-final-cta h2 {
        font-size: 30px;
    }
    .lzh-pathway-card,
    .lzh-feature-grid article,
    .lzh-testimonial-stack blockquote,
    .lzh-faq-preview-grid div {
        padding: 22px;
    }
    .lzh-final-cta {
        text-align: center;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
