/* IvaClick public landing — navy brand aligned with auth/app shell */

:root {
    --ivaclick-navy: #003366;
    --ivaclick-navy-mid: #005fa3;
    --ivaclick-accent: #01b6e4;
    --ivaclick-accent-soft: #e8f7fc;
    --ivaclick-text: #1a2b3c;
    --ivaclick-muted: #5a6d80;
    --ivaclick-surface: #f3f7fb;
    --ivaclick-white: #ffffff;
    --ivaclick-border: rgba(0, 51, 102, 0.12);
    --header-h: 72px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-page {
    margin: 0;
    color: var(--ivaclick-text);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    background: var(--ivaclick-white);
    overflow-x: hidden;
}

body.landing-page a {
    color: var(--ivaclick-navy-mid);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.landing-page a:hover {
    color: var(--ivaclick-accent);
}

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

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* ----- Motion ----- */
@keyframes lp-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lp-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.lp-animate {
    animation: lp-fade-up 0.9s var(--ease-out) both;
}

.lp-animate-delay-1 {
    animation-delay: 0.12s;
}

.lp-animate-delay-2 {
    animation-delay: 0.24s;
}

.lp-animate-delay-3 {
    animation-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .lp-animate,
    .lp-hero-visual {
        animation: none !important;
    }
}

/* ----- Header ----- */
.lp-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(0, 51, 102, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 18px rgba(0, 20, 40, 0.18);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.lp-header.is-scrolled {
    height: 64px;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.28);
}

.lp-header-inner {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ivaclick-white) !important;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.lp-brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

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

.lp-nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-list a {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.lp-nav-list a:hover,
.lp-nav-list a.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ivaclick-white) !important;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.35rem;
    border-radius: 10px;
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), background 0.2s ease, color 0.2s ease,
        border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:hover {
    transform: translateY(-2px);
}

.lp-btn:active {
    transform: translateY(0);
}

.lp-btn-primary {
    background: var(--ivaclick-accent);
    color: var(--ivaclick-white) !important;
    box-shadow: 0 10px 24px rgba(1, 182, 228, 0.35);
}

.lp-btn-primary:hover {
    background: #00a3cc;
    color: var(--ivaclick-white) !important;
}

.lp-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--ivaclick-white) !important;
}

.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ivaclick-white) !important;
}

.lp-btn-outline {
    background: transparent;
    border-color: var(--ivaclick-navy);
    color: var(--ivaclick-navy) !important;
}

.lp-btn-outline:hover {
    background: var(--ivaclick-navy);
    color: var(--ivaclick-white) !important;
}

.lp-btn-login {
    background: var(--ivaclick-white);
    color: var(--ivaclick-navy) !important;
    padding: 0.5rem 1rem;
    margin-left: 0.35rem;
}

.lp-btn-login:hover {
    background: var(--ivaclick-accent-soft);
    color: var(--ivaclick-navy) !important;
}

.lp-nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--ivaclick-white);
    font-size: 1.75rem;
    line-height: 1;
    padding: 0.25rem;
    cursor: pointer;
}

/* ----- Hero ----- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 2rem) 0 2.5rem;
    color: var(--ivaclick-white);
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(1, 182, 228, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 95, 163, 0.5), transparent 50%),
        linear-gradient(145deg, var(--ivaclick-navy) 0%, var(--ivaclick-navy-mid) 58%, #0179a8 100%);
    overflow: hidden;
}

.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.lp-hero-copy {
    padding-bottom: 0.5rem;
}

.lp-hero-brand {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 4.75rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ivaclick-white);
}

.lp-hero-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.94);
    max-width: 22ch;
}

.lp-hero-lead {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 36ch;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lp-hero-visual {
    position: relative;
    width: 100%;
    animation: lp-float 7s ease-in-out infinite;
}

.lp-app-window {
    border-radius: 14px;
    overflow: hidden;
    background: #f4f7fb;
    box-shadow: 0 28px 56px rgba(0, 20, 40, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-app-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    background: #e8eef5;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
}

.lp-app-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c5d0dc;
}

.lp-app-dot:nth-child(1) {
    background: #ff5f57;
}

.lp-app-dot:nth-child(2) {
    background: #febc2e;
}

.lp-app-dot:nth-child(3) {
    background: #28c840;
}

.lp-app-url {
    margin-left: 0.65rem;
    flex: 1;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: #fff;
    color: #6b7c93;
    font-size: 0.72rem;
    font-weight: 500;
}

.lp-app-body {
    display: grid;
    grid-template-columns: 148px 1fr;
    min-height: 320px;
}

.lp-app-sidebar {
    background: linear-gradient(180deg, #003366 0%, #005fa3 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.85rem 0.65rem;
}

.lp-app-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0 0.35rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
}

.lp-app-brand img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.lp-app-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.2rem;
}

.lp-app-sidebar li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
}

.lp-app-sidebar li.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.lp-app-main {
    padding: 0.85rem;
    background: #f3f7fb;
}

.lp-app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lp-app-topbar strong {
    color: #003366;
    font-size: 0.88rem;
}

.lp-app-pill {
    background: rgba(1, 182, 228, 0.15);
    color: #005fa3;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.lp-app-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.lp-app-kpi {
    background: #fff;
    border-radius: 10px;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(0, 51, 102, 0.08);
    border-left: 3px solid #01b6e4;
}

.lp-app-kpi-ok {
    border-left-color: #28a745;
}

.lp-app-kpi-warn {
    border-left-color: #ffc107;
}

.lp-app-kpi span {
    display: block;
    font-size: 0.62rem;
    color: #6b7c93;
    margin-bottom: 0.15rem;
}

.lp-app-kpi strong {
    color: #003366;
    font-size: 0.95rem;
}

.lp-app-table {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 51, 102, 0.08);
    overflow: hidden;
}

.lp-app-table-head,
.lp-app-row {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 0.9fr 0.7fr;
    gap: 0.35rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.65rem;
    align-items: center;
}

.lp-app-table-head {
    background: #eef3f8;
    color: #5a6d80;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.lp-app-row {
    color: #1a2b3c;
    border-top: 1px solid #eef2f6;
}

.lp-app-row span:last-child {
    font-weight: 700;
    color: #003366;
    text-align: right;
}

.lp-badge-ok,
.lp-badge-wait {
    display: inline-flex;
    justify-content: center;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
}

.lp-badge-ok {
    background: #e8f7ef;
    color: #146c43;
}

.lp-badge-wait {
    background: #fff4d6;
    color: #9a6b00;
}

/* ----- Sections shared ----- */
.lp-section {
    padding: 5rem 0;
}

.lp-section-alt {
    background: var(--ivaclick-surface);
}

.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.lp-eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivaclick-navy-mid);
}

.lp-section-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--ivaclick-navy);
    line-height: 1.15;
}

.lp-section-desc {
    margin: 0;
    color: var(--ivaclick-muted);
    font-size: 1.05rem;
}

/* ----- About ----- */
.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.lp-about-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.14);
}

.lp-about-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lp-about-content h3 {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--ivaclick-navy);
    line-height: 1.25;
}

.lp-about-content p {
    margin: 0 0 1.25rem;
    color: var(--ivaclick-muted);
}

.lp-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.lp-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--ivaclick-text);
}

.lp-checklist i {
    color: var(--ivaclick-accent);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ----- Features ----- */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-feature {
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
    background: var(--ivaclick-white);
    border: 1px solid var(--ivaclick-border);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 51, 102, 0.1);
    border-color: rgba(1, 182, 228, 0.35);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--ivaclick-navy), var(--ivaclick-navy-mid));
    color: var(--ivaclick-white);
    font-size: 1.25rem;
}

.lp-feature h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ivaclick-navy);
}

.lp-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--ivaclick-muted);
}

/* ----- FAQ ----- */
.lp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.lp-faq-item {
    border: 1px solid var(--ivaclick-border);
    border-radius: 12px;
    background: var(--ivaclick-white);
    overflow: hidden;
}

.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--ivaclick-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 1rem;
    color: var(--ivaclick-navy-mid);
    transition: transform 0.2s ease;
}

.lp-faq-item[open] summary::after {
    transform: rotate(180deg);
}

.lp-faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    color: var(--ivaclick-muted);
    font-size: 0.98rem;
}

/* ----- Pricing CTA ----- */
.lp-pricing {
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--ivaclick-navy) 0%, var(--ivaclick-navy-mid) 100%);
    color: var(--ivaclick-white);
    box-shadow: 0 24px 48px rgba(0, 51, 102, 0.22);
}

.lp-pricing .lp-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.lp-pricing h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--ivaclick-white);
}

.lp-pricing p {
    margin: 0 auto 1.5rem;
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.82);
}

/* ----- Contact ----- */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
}

.lp-contact-copy p {
    margin: 0 0 1rem;
    color: var(--ivaclick-muted);
}

.lp-contact-meta {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.lp-contact-meta a,
.lp-contact-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ivaclick-navy);
    font-weight: 600;
}

.lp-contact-form {
    background: var(--ivaclick-white);
    border: 1px solid var(--ivaclick-border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.06);
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lp-field {
    margin-bottom: 1rem;
}

.lp-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ivaclick-navy);
}

.lp-field input,
.lp-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--ivaclick-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--ivaclick-text);
    background: var(--ivaclick-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-field input:focus,
.lp-field textarea:focus {
    outline: none;
    border-color: var(--ivaclick-accent);
    box-shadow: 0 0 0 3px rgba(1, 182, 228, 0.18);
}

.lp-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

.lp-form-status {
    display: none;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
}

.lp-form-status.is-visible {
    display: block;
}

.lp-form-status.is-loading {
    background: var(--ivaclick-accent-soft);
    color: var(--ivaclick-navy);
}

.lp-form-status.is-success {
    background: #e8f7ef;
    color: #146c43;
}

.lp-form-status.is-error {
    background: #fdebec;
    color: #b02a37;
}

/* ----- Footer ----- */
.lp-footer {
    background: var(--ivaclick-navy);
    color: rgba(255, 255, 255, 0.78);
    padding: 2rem 0;
}

.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-footer strong {
    color: var(--ivaclick-white);
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lp-footer-links a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.92rem;
}

.lp-footer-links a:hover {
    color: var(--ivaclick-accent) !important;
}

/* ----- Back to top ----- */
.lp-back-top {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(135deg, var(--ivaclick-navy), var(--ivaclick-accent));
    color: var(--ivaclick-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.lp-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lp-back-top:hover {
    transform: translateY(-2px);
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
    .lp-hero-inner,
    .lp-about-grid,
    .lp-contact-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero {
        align-items: stretch;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .lp-hero-copy {
        padding-bottom: 1.5rem;
        padding-top: 1rem;
    }

    .lp-hero-visual {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .lp-app-body {
        grid-template-columns: 1fr;
    }

    .lp-app-sidebar {
        display: none;
    }

    .lp-app-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .lp-app-kpi:last-child {
        display: none;
    }

    .lp-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-nav-toggle {
        display: inline-flex;
    }

    .lp-nav {
        position: fixed;
        top: 64px;
        right: 1rem;
        left: 1rem;
        background: rgba(0, 51, 102, 0.98);
        border-radius: 14px;
        padding: 0.75rem;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 16px 40px rgba(0, 20, 40, 0.35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .lp-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lp-nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-nav-list a {
        padding: 0.7rem 0.85rem;
    }

    .lp-btn-login {
        margin: 0.5rem 0 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .lp-features-grid,
    .lp-form-row {
        grid-template-columns: 1fr;
    }

    .lp-hero-brand {
        font-size: 2.6rem;
    }

    .lp-hero-title {
        max-width: none;
    }

    .lp-section {
        padding: 3.5rem 0;
    }

    .lp-contact-form {
        padding: 1.25rem;
    }

    .lp-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .lp-footer-links {
        justify-content: center;
    }
}
