@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap");

/*
  Landing Page (Public) – Unique design aligned with internal client UI system.
  Palette + tokens sourced from styles.css (variables assumed already declared there):
  --primary: #008500
*/
:root {
    --lp-bg: #f4f7fa;
    --lp-surface: #ffffff;
    --lp-surface-alt: #f1f5f9;
    --lp-text-darker: #0f172a;
    --lp-text: #1e293b;
    --lp-text-soft: #64748b;
    --lp-radius-sm: 10px;
    --lp-radius: 18px;
    --lp-radius-lg: 34px;
    --lp-shadow-sm: 0 2px 6px -1px rgba(15, 23, 42, 0.08),
        0 1px 3px rgba(15, 23, 42, 0.06);
    --lp-shadow: 0 6px 18px -6px rgba(15, 23, 42, 0.18);
    --lp-shadow-lift: 0 12px 34px -10px rgba(15, 23, 42, 0.25);
    --lp-grad-green: linear-gradient(135deg, #0d3c1e, #01210c 62%);
    --lp-grad-soft: linear-gradient(135deg, #ffffff, #f1fff7);
    --lp-focus-ring: 0 0 0 3px #00850033;
}

/* Smooth scrolling for in-page section navigation */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body.landing-body {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: "DM Sans", "Segoe UI", sans-serif;
}

/* Layout Utilities */
.lp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 720px) {
    .lp-container {
        padding: 0 24px;
    }
}

.section {
    padding: 90px 0 70px;
    position: relative;
}

.section.tight {
    padding: 70px 0 50px;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 46px;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--lp-text-darker);
}

.section-head p {
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--lp-text-soft);
    margin: 0;
}

/* PUBLIC NAV */
.landing-nav {
    background: #ffffffd9;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 80;
    border-bottom: 1px solid #e2e8f0;
}

.landing-nav .nav-inner {
    display: flex;
    align-items: center;
    gap: 42px;
    justify-content: space-between;
    min-height: 76px;
}

.landing-nav .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.landing-nav img {
    display: block;
}

.landing-nav .links {
    display: flex;
    gap: 34px;
    font-weight: 600;
}

.landing-nav .links a {
    text-decoration: none;
    color: var(--lp-text-darker);
    font-size: 0.9rem;
    position: relative;
    padding: 6px 0;
}

.landing-nav .links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: 0.35s;
}

.landing-nav .links a:hover {
    color: var(--primary);
}

.landing-nav .links a:hover:after {
    width: 100%;
}

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

.landing-nav .auth a {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.landing-nav .auth .cta {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 16px -6px rgba(0, 133, 0, 0.4);
}

.landing-nav .auth .cta:hover {
    background: #006a00;
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #d6dee6;
    background: #fff;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: 0.4s;
}

.nav-toggle span:nth-child(1) {
    top: 14px;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 14px;
}

.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: 320px;
    max-width: 80%;
    background: #fff;
    box-shadow: -8px 0 30px -8px rgba(15, 23, 42, 0.25);
    transform: translateX(110%);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 28px 30px 50px;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer-links a {
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lp-text-darker);
}

.drawer-links a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 150;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 1020px) {
    .landing-nav .links {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .landing-nav .auth {
        display: none;
    }
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--lp-grad-green);
    min-height: 640px;
    display: flex;
    align-items: center;
    border-radius: 0 0 42px 42px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/landingBG.jpg") center/cover;
    opacity: 0.25;
    mix-blend-mode: overlay;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -50px -50px auto;
    height: 160%;
    background: radial-gradient(circle at 30% 35%,
            rgba(0, 133, 0, 0.55),
            rgba(1, 34, 13, 0.9));
    opacity: 0.85;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 46px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 120px 40px 130px;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 3.8vw, 3.7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.75px;
    background: linear-gradient(90deg, #ffffff, #c3ffd9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p {
    margin: 0;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #e5f7ec;
}

@media (max-width: 720px) {
    .hero-inner {
        padding: 90px 26px 120px;
    }

    .hero {
        border-radius: 0 0 30px 30px;
    }
}

/* Search Panel */
.search-panel {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 26px 26px 30px;
    max-width: 900px;
    box-shadow: 0 18px 60px -18px rgba(0, 0, 0, 0.55);
}

.search-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.search-switch button {
    flex: 1;
    border: 1px solid #1d4d2a;
    background: #184325;
    color: #d6ffe5;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 11px 14px;
    cursor: pointer;
    transition: 0.3s;
}

.search-switch button.active {
    background: #fff;
    color: #0f2b17;
    box-shadow: 0 0 0 2px #fff, var(--lp-shadow);
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.search-field {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.search-field input {
    width: 100%;
    background: #fff;
    border: 1.5px solid #d6dee6;
    padding: 14px 16px 14px 46px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
}

.search-field input:focus {
    border-color: var(--primary);
    box-shadow: var(--lp-focus-ring);
}

.search-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.search-row button.search-btn {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0 34px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.search-row button.search-btn:hover {
    background: #006a00;
}

.popular-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.7rem;
}

.popular-tags span {
    opacity: 0.7;
    color: #d7f7e4;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
}

.popular-tags a {
    background: #155a31;
    color: #cafee1;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.popular-tags a:hover {
    background: #1d7441;
    color: #fff;
}

@media (max-width: 740px) {
    .search-row {
        flex-direction: column;
    }

    .search-row button.search-btn {
        width: 100%;
        height: 54px;
        justify-content: center;
    }
}

/* Features */
.features-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background: var(--lp-surface);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 26px 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    box-shadow: var(--lp-shadow-sm);
    transition: 0.4s;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #e2f8ec;
    color: var(--primary);
    font-size: 22px;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--lp-text-soft);
}

/* Boosted Posts */
.boosted-section {
    background: linear-gradient(120deg, #081d11, #0b311b);
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
}

.boosted-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/landingBG.jpg") center/cover;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.boosted-section h2 {
    color: #fff;
    text-align: center;
    margin: 0 0 46px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
}

.boosted-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 290px;
    gap: 28px;
    overflow-x: hidden;
    /* hide manual scroll */
    scroll-snap-type: x mandatory;
    padding: 0 0 12px;
    /* internal padding removed to align with container width */
    max-width: 1320px;
    /* match other sections */
    margin: 0 auto;
    /* center */
}

.boosted-track::-webkit-scrollbar {
    display: none;
}

.boosted-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.boost-card {
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #d8e2ea;
    border-radius: 24px;
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
    position: relative;
    box-shadow: var(--lp-shadow-sm);
}

.boost-card .flag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 30px;
}

.boost-card h4 {
    margin: 20px 0 0;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 600;
}

.boost-card p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--lp-text-soft);
}

.boost-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--lp-text);
}

.boosted-track::-webkit-scrollbar {
    height: 10px;
}

.boosted-track::-webkit-scrollbar-thumb {
    background: #134e29;
    border-radius: 20px;
}

/* Categories */
.category-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.category-tile {
    background: var(--lp-surface);
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: 0.35s;
    position: relative;
}

.category-tile i {
    font-size: 20px;
    color: var(--primary);
}

.category-tile span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp-text-darker);
}

.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow);
}

/* Workflow */
.workflow-shell {
    background: var(--lp-grad-soft);
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    padding: 80px 70px 60px;
    position: relative;
    overflow: hidden;
}

.workflow-steps {
    margin-top: 50px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    box-shadow: var(--lp-shadow-sm);
    transition: 0.35s;
}

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

.step-num {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    background: #e4f9ed;
    color: #083219;
    border-radius: 16px;
}

.step h4 {
    margin: 0;
    font-size: 1rem;
}

.step p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--lp-text-soft);
}

@media (max-width: 900px) {
    .workflow-shell {
        padding: 70px 46px 56px;
    }
}

@media (max-width: 640px) {
    .workflow-shell {
        padding: 60px 30px 56px;
    }
}

/* Feedback */
.feedback-section {
    background: linear-gradient(135deg, #092615, #04150c);
    position: relative;
    padding: 110px 0 60px;
    padding-bottom: 90px;
    /* space below rating/testimonials */
}

.feedback-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/img/landingBG.jpg") center/cover;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.feedback-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 34px 30px 38px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    box-shadow: 0 14px 40px -14px rgba(15, 23, 42, 0.22);
    min-height: 220px;
}

.testimonial::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 34px;
    color: #d2f4dc;
}

.testimonial p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #334155;
}

.person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6f7ee;
    color: #0f3b1f;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.person span {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feedback-head {
    text-align: center;
    color: #fff;
    margin: 0 0 58px;
}

.feedback-head h2 {
    color: #fff;
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 700;
}

.feedback-head p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    max-width: 640px;
    line-height: 1.55;
    margin-inline: auto;
}

/* Video Section */
.video-section {
    padding: 0;
    /* remove extra white gap */
    margin-top: -10px;
    /* pull up to reduce transition space */
}

.video-wrapper {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px -22px rgba(15, 23, 42, 0.35),
        0 6px 18px -4px rgba(15, 23, 42, 0.25);
    border: 1px solid #0d2a18;
}

.showcase-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.showcase-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}

.showcase-video:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Contact Section (V2) */
.contact-section-alt {
    background: var(--lp-bg);
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
}

.contact-section-alt::before {
    content: none;
}

.contact-shell {
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.contact-title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.05;
    background: linear-gradient(90deg, #ffffff, #c3ffd9);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--lp-text-darker);
}

.contact-sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 560px;
    color: var(--lp-text-soft);
}

.contact-cards {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.c-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--lp-shadow-sm);
    transition: 0.35s;
}

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

.c-card i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f9ee;
    color: var(--primary);
    border-radius: 14px;
    font-size: 16px;
}

.c-card strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--lp-text-darker);
    text-transform: uppercase;
}

.c-card span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--lp-text-soft);
    margin-top: 3px;
}

.contact-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.contact-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-meta i {
    color: var(--primary);
}

.contact-form-v2 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 34px;
    padding: 50px 50px 56px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: var(--lp-shadow);
    position: relative;
}

.contact-form-v2::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(140deg, #008500, #3b82f6 65%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.65;
    pointer-events: none;
    /* allow clicks to pass through to inputs */
}

.contact-form-v2 .row {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.contact-form-v2 .f {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-v2 label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #475569;
}

.contact-form-v2 input,
.contact-form-v2 select,
.contact-form-v2 textarea {
    background: #fff;
    border: 1.5px solid #d6dee6;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
    font-weight: 500;
}

.contact-form-v2 input:focus,
.contact-form-v2 select:focus,
.contact-form-v2 textarea:focus {
    border-color: var(--primary);
    box-shadow: var(--lp-focus-ring);
}

.contact-form-v2 textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form-v2 .actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.send-btn-alt {
    background: #008500;
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 18px 34px -14px rgba(0, 133, 0, 0.55);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.send-btn-alt::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: 0.5s;
}

.send-btn-alt:hover {
    transform: translateY(-3px);
}

.send-btn-alt:hover::after {
    opacity: 1;
}

.send-btn-alt:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

.contact-form-v2 .form-status {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    min-height: 18px;
}

/* Simplified vertical layout variant */
.contact-form-v2.simple {
    gap: 22px;
}

.contact-form-v2.simple .f {
    min-width: 100%;
}

.contact-form-v2.simple .actions {
    padding-top: 6px;
}

@media (max-width: 820px) {
    .contact-form-v2 {
        padding: 46px 40px 52px;
    }
}

@media (max-width: 560px) {
    .contact-form-v2 {
        padding: 40px 30px 48px;
    }

    .contact-section-alt {
        padding: 90px 0 100px;
    }
}

/* Footer */
.lp-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 60px;
}

.lp-footer .cols {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lp-footer h4 {
    margin: 0 0 16px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #e2e8f0;
    font-weight: 700;
}

.lp-footer a {
    display: inline-flex;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.78rem;
    margin-bottom: 10px;
    gap: 8px;
    align-items: center;
}

.lp-footer a:hover {
    color: #fff;
}

.lp-footer .copy {
    margin-top: 60px;
    text-align: center;
    font-size: 0.7rem;
    color: #64748b;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Additional inline styles moved to CSS */
.mobile-drawer-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 14px 0;
}

.hero-highlight {
    color: #a7ffd0;
}

.workflow-title {
    margin: 0 0 18px;
}

.workflow-subtitle {
    margin: 0;
    max-width: 640px;
    line-height: 1.55;
    font-size: .95rem;
    color: #475569;
}
