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

:root {
    --lm-bg-dark: #101f2b;
    --lm-bg-light: #f4efe7;
    --lm-primary: #ff8a3d;
    --lm-primary-dark: #d8651c;
    --lm-secondary: #0c8f8a;
    --lm-accent-soft: #fff3df;
    --lm-text-main: #162632;
    --lm-text-soft: #4b5b68;
    --lm-border-soft: #e0d6c8;
    --lm-radius-lg: 1.5rem;
    --lm-radius-md: 1rem;
    --lm-radius-sm: 0.75rem;
    --lm-shadow-soft: 0 18px 45px rgba(11, 28, 38, 0.25);
    --lm-shadow-small: 0 8px 20px rgba(11, 28, 38, 0.15);
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lm-text-main);
    background-color: var(--lm-bg-light);
}

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

a {
    color: var(--lm-primary);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background-color: rgba(16, 31, 43, 0.96);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-main {
    color: #ffffff;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--lm-primary);
    font-size: 1rem;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #ced8e2;
    font-size: 0.9rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.nav-link-active {
    background-color: var(--lm-primary);
    color: #101014;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--lm-bg-dark);
    color: #ffffff;
    padding: 3.5rem 0 3rem;
}

.hero-gradient {
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at top left, rgba(255, 138, 61, 0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(12, 143, 138, 0.4), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    z-index: 1;
}

.hero-text {
    max-width: 620px;
}

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #f3d6ae;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 0.98rem;
    margin-bottom: 0.75rem;
    color: #e2e7ef;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.7rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    background: transparent;
    color: var(--lm-primary);
}

.btn-primary {
    background: var(--lm-primary);
    color: #101014;
    box-shadow: var(--lm-shadow-small);
    border-color: var(--lm-primary);
}

.btn-primary:hover {
    background: var(--lm-primary-dark);
    border-color: var(--lm-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--lm-shadow-soft);
    color: #050607;
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #d0d7e2;
}

.hero-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-contact-item i {
    color: var(--lm-primary);
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-media-card {
    position: relative;
    border-radius: var(--lm-radius-lg);
    overflow: hidden;
    box-shadow: var(--lm-shadow-soft);
    background: #0b151f;
}

.hero-media-card img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    border-radius: 999px;
    background: rgba(10, 19, 27, 0.92);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.9rem;
}

.hero-badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #f2d4aa;
}

.hero-badge-text {
    font-size: 0.85rem;
    color: #f7f9fc;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stat {
    flex: 1 1 90px;
    border-radius: 1rem;
    padding: 0.8rem 0.9rem;
    background: rgba(6, 17, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lm-primary);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: #d1dae5;
}

/* Sections */

.section {
    padding: 3.5rem 0;
}

.section-light {
    background-color: var(--lm-bg-light);
    color: var(--lm-text-main);
}

.section-dark {
    background-color: var(--lm-bg-dark);
    color: #ffffff;
}

.section-accent {
    background: linear-gradient(135deg, #0c8f8a 0%, #101f2b 75%);
    color: #ffffff;
}

.section-accent-soft {
    background: var(--lm-accent-soft);
    color: var(--lm-text-main);
}

.section-header {
    max-width: 720px;
    margin-bottom: 2.1rem;
}

.section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lm-secondary);
    margin-bottom: 0.35rem;
}

.section-dark .section-kicker,
.section-accent .section-kicker {
    color: #9be5dd;
}

.section-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 0.98rem;
    color: var(--lm-text-soft);
}

.section-dark .section-intro,
.section-accent .section-intro {
    color: #d1dcea;
}

/* Grids and layout helpers */

.grid {
    display: grid;
    gap: 1.6rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.section-split-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

/* Feature cards */

.feature-card {
    border-radius: var(--lm-radius-md);
    border: 1px solid var(--lm-border-soft);
    background: #ffffff;
    padding: 1.3rem 1.3rem 1.2rem;
}

.section-dark .feature-card,
.section-accent .feature-card {
    background: rgba(7, 18, 27, 0.9);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-card-soft {
    background: #fffdf9;
}

.section-dark .feature-card-soft {
    background: rgba(7, 18, 27, 0.96);
}

.feature-title {
    font-size: 1.02rem;
    margin-bottom: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-title i {
    color: var(--lm-secondary);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--lm-text-soft);
}

.section-dark .feature-text,
.section-accent .feature-text {
    color: #d3dde9;
}

/* Image stacks and panels */

.image-stack {
    position: relative;
}

.image-main {
    border-radius: var(--lm-radius-lg);
    box-shadow: var(--lm-shadow-soft);
}

.image-float {
    position: absolute;
    width: 48%;
    right: -8%;
    bottom: -10%;
    border-radius: var(--lm-radius-md);
    box-shadow: var(--lm-shadow-soft);
}

.stat-panel {
    border-radius: var(--lm-radius-lg);
    background: #0b1825;
    padding: 1.6rem 1.5rem;
    box-shadow: var(--lm-shadow-soft);
}

.stat-panel-title {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    color: #f6f8fb;
}

.stat-list {
    list-style: none;
    margin-bottom: 0.5rem;
}

.stat-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    font-size: 0.93rem;
    color: #d9e3f0;
}

.stat-list li:last-child {
    border-bottom: none;
}

.stat-label {
    opacity: 0.9;
}

.stat-value {
    font-weight: 600;
    color: var(--lm-primary);
}

.stat-note {
    font-size: 0.8rem;
    color: #b5c4d6;
    margin-top: 0.6rem;
}

/* Timeline */

.timeline {
    position: relative;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.section-light .timeline {
    border-left-color: rgba(16, 31, 43, 0.16);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.7rem;
    padding-left: 1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -0.55rem;
    top: 0.35rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: var(--lm-primary);
    box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.25);
}

.timeline-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.timeline-text {
    font-size: 0.95rem;
    color: #d0d9e7;
}

.section-light .timeline-text {
    color: var(--lm-text-soft);
}

/* Lists */

.bullet-list {
    list-style: none;
    margin-top: 0.9rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.94rem;
    color: var(--lm-text-soft);
    margin-bottom: 0.45rem;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 0.6rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: var(--lm-secondary);
}

/* CTA */

.cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.cta-aside {
    display: flex;
    align-items: stretch;
}

.cta-card {
    border-radius: var(--lm-radius-lg);
    background: #ffffff;
    padding: 1.5rem 1.4rem;
    box-shadow: var(--lm-shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.cta-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 143, 138, 0.1);
    color: var(--lm-secondary);
    font-size: 1.2rem;
}

.cta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lm-text-soft);
}

.cta-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-small {
    font-size: 0.9rem;
    color: var(--lm-text-soft);
}

/* Contact */

.section-contact {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    margin: 1rem 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--lm-text-soft);
    margin-bottom: 0.4rem;
}

.contact-list i {
    color: var(--lm-secondary);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--lm-text-soft);
    margin-top: 0.6rem;
}

/* Forms */

.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--lm-radius-lg);
    box-shadow: var(--lm-shadow-soft);
    padding: 1.5rem 1.4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-row-inline {
    align-items: flex-start;
}

label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lm-text-main);
}

input,
select,
textarea {
    font: inherit;
    border-radius: 0.7rem;
    border: 1px solid var(--lm-border-soft);
    padding: 0.6rem 0.8rem;
    background-color: #fffdf9;
    color: var(--lm-text-main);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

input:focus,
select:focus,
textarea:focus {
    border-color: var(--lm-primary);
    box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.35);
    background-color: #ffffff;
}

.checkbox-label {
    display: inline-flex;
    gap: 0.6rem;
    font-size: 0.86rem;
    color: var(--lm-text-soft);
}

.checkbox-label input {
    width: 1rem;
    height: 1rem;
    border-radius: 0.3rem;
    margin-top: 0.15rem;
}

.checkbox-label input:checked {
    background-color: var(--lm-primary);
    border-color: var(--lm-primary);
}

.form-actions {
    margin-top: 0.5rem;
}

/* Legal */

.legal {
    background: #f8f2e8;
}

.legal-container {
    max-width: 900px;
}

.legal h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.legal h2 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

.legal p {
    font-size: 0.96rem;
    color: var(--lm-text-soft);
    margin-bottom: 0.55rem;
}

/* Subhero on about page */

.subhero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.subhero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

/* Thank you page */

.thankyou-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.thankyou-inner h1 {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
}

.thankyou-inner p {
    font-size: 0.97rem;
    color: var(--lm-text-soft);
    margin-bottom: 0.6rem;
}

.thankyou-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    margin: 0 auto 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 143, 138, 0.12);
    color: var(--lm-secondary);
    font-size: 1.7rem;
}

/* Footer */

.site-footer {
    background-color: #10141b;
    color: #d8e0ea;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.2rem 0 1.6rem;
    align-items: flex-start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #ffffff;
}

.footer-text {
    font-size: 0.9rem;
    color: #b9c4d1;
}

.footer-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 160px;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #f4f7fb;
}

.footer-line {
    font-size: 0.9rem;
    color: #b9c4d1;
}

.footer-link {
    display: block;
    font-size: 0.9rem;
    color: #d3deea;
    margin-bottom: 0.25rem;
}

.footer-link:hover {
    color: var(--lm-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: #9ca8b7;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-media {
        order: -1;
    }
    .section-split,
    .section-split-reverse,
    .contact-layout,
    .cta-box,
    .subhero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .image-float {
        position: static;
        width: 70%;
        margin: 0.9rem auto 0;
    }
    .footer-inner {
        flex-direction: column;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .main-nav {
        padding-bottom: 0.3rem;
    }
}

@media (max-width: 720px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
    .section {
        padding: 2.6rem 0;
    }
    .cta-card {
        padding: 1.25rem 1.1rem;
    }
}

@media (max-width: 520px) {
    .header-inner {
        padding: 0.8rem 0;
    }
    .main-nav {
        gap: 0.5rem;
    }
    .nav-link {
        padding-inline: 0.5rem;
    }
}
