/* =========================================================
   PDF INSPECTOR
   HOMEPAGE — NEW SAAS DESIGN
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.home-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 76% 35%,
            rgba(113,128,255,.20),
            transparent 29%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(105,232,193,.10),
            transparent 25%
        ),
        #09101f;
    color: #fff;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 35%,
        black 100%
    );
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 760px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.home-hero-content {
    position: relative;
    z-index: 5;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding: 7px 11px;
    background: rgba(113,128,255,.09);
    border: 1px solid rgba(113,128,255,.2);
    border-radius: 100px;
    color: #9ca7ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
}

.home-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #69e8c1;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(105,232,193,.7);
}

.home-hero h1 {
    max-width: 650px;
    font-size: clamp(52px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 900;
}

.home-hero h1 span {
    display: block;
    background: linear-gradient(
        100deg,
        #7180ff,
        #a996ff,
        #69e8c1
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero-description {
    max-width: 555px;
    margin-top: 27px;
    color: #9ca8bf;
    font-size: 16px;
    line-height: 1.8;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 34px;
}

.home-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 0 21px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.home-button:hover {
    transform: translateY(-3px);
}

.home-button-primary {
    background: #7180ff;
    color: #fff;
    box-shadow: 0 14px 35px rgba(113,128,255,.25);
}

.home-button-primary:hover {
    background: #7f8cff;
    box-shadow: 0 18px 40px rgba(113,128,255,.32);
}

.home-button-secondary {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
    color: #e5e9f3;
}

.home-button-secondary:hover {
    background: rgba(255,255,255,.1);
}

.home-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 27px;
    color: #65718b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.home-trust i {
    width: 3px;
    height: 3px;
    background: #536078;
    border-radius: 50%;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.home-hero-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspection-grid {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(113,128,255,.12);
    border-radius: 50%;
}

.inspection-grid::before,
.inspection-grid::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(113,128,255,.1);
    border-radius: 50%;
}

.inspection-grid::after {
    inset: 27%;
    border-color: rgba(105,232,193,.11);
}

.inspection-label {
    position: absolute;
    color: #58647d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.inspection-label-top {
    top: 38px;
    right: 20%;
}


/* =========================================================
   MAIN PDF VISUAL
   ========================================================= */

.home-pdf-card {
    position: relative;
    z-index: 4;
    width: 410px;
    padding: 17px;
    background: rgba(20,29,51,.9);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 20px;
    box-shadow:
        0 45px 100px rgba(0,0,0,.4),
        0 0 80px rgba(113,128,255,.08);
    backdrop-filter: blur(14px);
    transform: rotate(-3deg);
}

.pdf-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 5px 15px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.pdf-card-file {
    display: flex;
    align-items: center;
    gap: 11px;
}

.pdf-file-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7180ff;
    border-radius: 8px;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
}

.pdf-card-file strong {
    display: block;
    color: #f1f3f8;
    font-size: 11px;
}

.pdf-card-file small {
    display: block;
    margin-top: 2px;
    color: #68758f;
    font-size: 8px;
    letter-spacing: .08em;
}

.pdf-status {
    padding: 5px 8px;
    background: rgba(105,232,193,.08);
    border: 1px solid rgba(105,232,193,.15);
    border-radius: 6px;
    color: #69e8c1;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .1em;
}


/* =========================================================
   PDF PAGE
   ========================================================= */

.pdf-card-page {
    position: relative;
    min-height: 360px;
    margin: 15px 18px;
    padding: 36px 34px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 7px;
    color: #121826;
    box-shadow: 0 15px 35px rgba(0,0,0,.16);
}

.pdf-page-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #edf0f6;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.pdf-page-label {
    display: inline-flex;
    padding: 5px 7px;
    background: #eef0ff;
    color: #6372ed;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 900;
}

.pdf-card-page h3 {
    margin-top: 25px;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.pdf-lines {
    display: grid;
    gap: 7px;
    margin-top: 23px;
}

.pdf-lines i {
    height: 5px;
    background: #e8eaf0;
    border-radius: 10px;
}

.pdf-lines i:nth-child(2) {
    width: 82%;
}

.pdf-lines i:nth-child(3) {
    width: 93%;
}

.pdf-lines i:nth-child(4) {
    width: 67%;
}

.pdf-lines i:nth-child(5) {
    width: 86%;
}

.pdf-page-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    height: 70px;
    margin-top: 28px;
}

.pdf-page-box span {
    display: block;
    background:
        linear-gradient(
            135deg,
            #f0f2f7,
            #dfe4ef
        );
    border-radius: 4px;
}


/* =========================================================
   PDF FOOTER
   ========================================================= */

.pdf-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 2px 5px 4px;
}

.pdf-card-footer div {
    padding: 10px;
    background: rgba(255,255,255,.035);
    border-radius: 8px;
}

.pdf-card-footer small {
    display: block;
    color: #68758e;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .1em;
}

.pdf-card-footer strong {
    display: block;
    margin-top: 2px;
    color: #eef1f8;
    font-size: 12px;
}

.pdf-card-footer .status-good {
    color: #69e8c1;
}


/* =========================================================
   FLOATING RESULT
   ========================================================= */

.inspection-result {
    position: absolute;
    z-index: 6;
    right: -5px;
    bottom: 62px;
    width: 245px;
    padding: 17px;
    background: #ffffff;
    border: 1px solid #e4e7ef;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(4,11,27,.25);
}

.inspection-result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 11px;
    border-bottom: 1px solid #edf0f5;
    color: #727c91;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
}

.inspection-result-head b {
    color: #2bb98d;
    font-size: 7px;
}

.inspection-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #f0f1f5;
    color: #7c8598;
    font-size: 10px;
}

.inspection-result-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.inspection-result-row strong {
    color: #182033;
    font-size: 11px;
}

.result-ok {
    color: #26aa83 !important;
}

.inspection-mark {
    position: absolute;
    z-index: 7;
    left: 8%;
    bottom: 92px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #69e8c1;
    color: #10231e;
    border-radius: 50%;
    font-size: 21px;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(105,232,193,.25);
}


/* =========================================================
   TOOLS SECTION
   ========================================================= */

.home-tools {
    padding: 115px 0;
    background: #f7f8fc;
}

.home-section-heading {
    display: grid;
    grid-template-columns: 1fr 350px;
    align-items: end;
    gap: 60px;
    margin-bottom: 45px;
}

.section-kicker {
    display: block;
    color: #6877e9;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.home-section-heading h2 {
    margin-top: 12px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -.055em;
}

.home-section-heading p {
    color: #788298;
    font-size: 14px;
    line-height: 1.8;
}

.home-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.home-tool-card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    padding: 35px;
    border-radius: 22px;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.home-tool-card:hover {
    transform: translateY(-7px);
}

.home-tool-card-red {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(113,128,255,.2),
            transparent 30%
        ),
        #111a31;
    color: #fff;
    box-shadow: 0 25px 60px rgba(10,20,45,.14);
}

.home-tool-card-dark {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(105,232,193,.13),
            transparent 30%
        ),
        #e9ecf7;
    color: #111827;
}

.home-tool-number {
    position: absolute;
    top: 25px;
    right: 30px;
    color: rgba(255,255,255,.28);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
}

.home-tool-card-dark .home-tool-number {
    color: #a5adbd;
}

.home-tool-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7180ff;
    color: #fff;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(113,128,255,.25);
}

.home-tool-card-dark .home-tool-icon {
    background: #17233e;
}

.home-tool-icon.font-icon {
    font-size: 23px;
}

.home-tool-content {
    margin-top: 65px;
}

.home-tool-label {
    color: #7180ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.home-tool-card-red .home-tool-label {
    color: #93a0ff;
}

.home-tool-content h3 {
    margin-top: 8px;
    font-size: 27px;
    letter-spacing: -.045em;
}

.home-tool-content p {
    max-width: 480px;
    margin-top: 13px;
    color: #7a859c;
    font-size: 13px;
    line-height: 1.8;
}

.home-tool-card-red .home-tool-content p {
    color: #8f9bb3;
}

.home-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    color: #7180ff;
    font-size: 12px;
    font-weight: 850;
}

.home-tool-card-red .home-tool-link {
    color: #a4adff;
}


/* =========================================================
   WHY SECTION
   ========================================================= */

.home-why {
    padding: 125px 0;
    background: #fff;
}

.home-why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.home-why-copy h2 {
    margin-top: 13px;
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1;
    letter-spacing: -.055em;
}

.home-why-copy p {
    max-width: 510px;
    margin-top: 23px;
    color: #7a8498;
    font-size: 14px;
    line-height: 1.85;
}

.home-feature-list {
    display: grid;
    gap: 12px;
}

.home-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 25px;
    background: #f6f7fb;
    border: 1px solid #e8eaf1;
    border-radius: 15px;
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.home-feature:hover {
    transform: translateX(6px);
    border-color: #cbd1ff;
}

.feature-number {
    color: #7180ff;
    font-size: 10px;
    font-weight: 900;
}

.home-feature h3 {
    font-size: 17px;
    letter-spacing: -.025em;
}

.home-feature p {
    margin-top: 6px;
    color: #7d879b;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   PROCESS
   ========================================================= */

.home-process {
    padding: 120px 0;
    background: #09101f;
    color: #fff;
}

.home-process-heading {
    max-width: 600px;
}

.home-process-heading h2 {
    margin-top: 13px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.06em;
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 55px;
}

.home-process-card {
    position: relative;
    min-height: 285px;
    padding: 30px;
    background: #111a31;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 17px;
    overflow: hidden;
}

.home-process-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    bottom: -55px;
    background: rgba(113,128,255,.08);
    border-radius: 50%;
}

.process-index {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #56627c;
    font-size: 10px;
    font-weight: 900;
}

.process-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7180ff;
    color: #fff;
    border-radius: 13px;
    font-size: 21px;
    font-weight: 800;
}

.home-process-card h3 {
    margin-top: 38px;
    font-size: 20px;
}

.home-process-card p {
    max-width: 270px;
    margin-top: 8px;
    color: #7d89a3;
    font-size: 12px;
}


/* =========================================================
   USE CASES
   ========================================================= */

.home-use-cases {
    padding: 120px 0;
    background: #f7f8fc;
}

.home-use-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
}

.home-use-intro h2 {
    margin-top: 13px;
    font-size: clamp(40px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.055em;
}

.home-use-intro p {
    max-width: 390px;
    margin-top: 23px;
    color: #7b8599;
    font-size: 14px;
    line-height: 1.8;
}

.home-use-list {
    border-top: 1px solid #dfe3ec;
}

.use-case {
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 15px;
    padding: 23px 0;
    border-bottom: 1px solid #dfe3ec;
}

.use-case > span {
    color: #7180ff;
    font-size: 10px;
    font-weight: 900;
}

.use-case strong {
    font-size: 16px;
}

.use-case p {
    grid-column: 2;
    margin-top: 5px;
    color: #7d879b;
    font-size: 12px;
}


/* =========================================================
   FAQ
   ========================================================= */

.home-faq {
    padding: 120px 0;
    background: #fff;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
}

.home-faq-intro h2 {
    margin-top: 13px;
    font-size: clamp(40px, 4vw, 57px);
    line-height: .98;
    letter-spacing: -.055em;
}

.home-faq-intro p {
    max-width: 350px;
    margin-top: 20px;
    color: #7b8599;
    font-size: 13px;
}

.home-faq-list {
    border-top: 1px solid #e0e3eb;
}

.home-faq-list details {
    border-bottom: 1px solid #e0e3eb;
}

.home-faq-list summary {
    position: relative;
    padding: 22px 40px 22px 0;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 800;
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 16px;
    color: #7180ff;
    font-size: 22px;
    font-weight: 400;
}

.home-faq-list details[open] summary::after {
    content: "−";
}

.home-faq-list details p {
    max-width: 700px;
    padding: 0 40px 22px 0;
    color: #7c869a;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.home-final {
    padding: 90px 0;
    background: #f7f8fc;
}

.home-final-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 55px 60px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(113,128,255,.22),
            transparent 30%
        ),
        #111a31;
    border-radius: 24px;
    color: #fff;
}

.home-final-box::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -80px;
    bottom: -140px;
    border: 1px solid rgba(105,232,193,.16);
    border-radius: 50%;
}

.home-final-box > div:first-child {
    position: relative;
    z-index: 2;
}

.home-final-box > div:first-child > span {
    color: #8995ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.home-final-box h2 {
    margin-top: 9px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -.055em;
}

.home-final-box p {
    margin-top: 13px;
    color: #8995ad;
    font-size: 13px;
}

.home-final-actions {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 9px;
    min-width: 220px;
}

.home-final-button {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 18px;
    background: #7180ff;
    border-radius: 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    transition: transform .2s ease;
}

.home-final-button:hover {
    transform: translateX(4px);
}

.home-final-button.secondary {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 65px 0 25px;
    background: #070d19;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 290px;
    margin-top: 17px;
    color: #69758e;
    font-size: 12px;
}

.footer-column h2 {
    margin-bottom: 17px;
    color: #e8ebf4;
    font-size: 11px;
    letter-spacing: .06em;
}

.footer-column ul {
    display: grid;
    gap: 8px;
}

.footer-column a {
    color: #68748c;
    font-size: 11px;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-bottom p {
    color: #59647a;
    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .home-hero-grid {
        grid-template-columns: 1fr;
        padding: 90px 0;
    }

    .home-hero-content {
        text-align: center;
    }

    .home-hero h1,
    .home-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .home-eyebrow,
    .home-hero-actions,
    .home-trust {
        justify-content: center;
    }

    .home-hero-visual {
        min-height: 540px;
    }

    .home-section-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-why-grid,
    .home-use-grid,
    .home-faq-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .home-hero {
        min-height: auto;
    }

    .home-hero-grid {
        min-height: auto;
        padding: 70px 0 80px;
        gap: 40px;
    }

    .home-hero h1 {
        font-size: 48px;
    }

    .home-hero-description {
        font-size: 14px;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-button {
        width: 100%;
    }

    .home-trust {
        justify-content: center;
        text-align: center;
        line-height: 2;
    }

    .home-hero-visual {
        min-height: 430px;
        transform: scale(.84);
        transform-origin: center;
        margin-top: -35px;
        margin-bottom: -40px;
    }

    .inspection-grid {
        width: 440px;
        height: 440px;
    }

    .home-pdf-card {
        width: 355px;
    }

    .pdf-card-page {
        min-height: 310px;
    }

    .inspection-result {
        right: -15px;
        bottom: 35px;
        width: 220px;
    }

    .inspection-mark {
        left: 2%;
        bottom: 70px;
    }

    .home-tools,
    .home-why,
    .home-process,
    .home-use-cases,
    .home-faq {
        padding: 80px 0;
    }

    .home-tools-grid {
        grid-template-columns: 1fr;
    }

    .home-tool-card {
        min-height: 380px;
        padding: 27px;
    }

    .home-tool-content {
        margin-top: 50px;
    }

    .home-section-heading h2,
    .home-why-copy h2,
    .home-use-intro h2,
    .home-faq-intro h2 {
        font-size: 42px;
    }

    .home-final {
        padding: 55px 0;
    }

    .home-final-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 27px;
        border-radius: 18px;
    }

    .home-final-actions {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media (max-width: 390px) {

    .home-hero h1 {
        font-size: 43px;
    }

    .home-hero-visual {
        transform: scale(.72);
        margin-left: -40px;
        margin-right: -40px;
    }

    .home-tool-card {
        min-height: 400px;
    }
}