:root {
    --paper: #ececec;
    --ink: #141a27;
    --left-bg: #041235;
    --left-bg-2: #010a23;
    --right-bg: #000000;
    --deep: #010d2b;
    --brand: #2aa8ff;
    --text: #e8edf7;
    --muted: #c4cee0;
    --panel: #434a59;
    --panel-line: #6e7788;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

.container {
    width: min(1200px, 94%);
    margin: 0 auto;
}

.topbar {
    height: 48px;
    background: #f5f5f5;
    border-bottom: 1px solid #dadada;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 1.35rem;
    padding: 0 1.45rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    width: 28px;
    height: 28px;
    display: block;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1px;
}

.main-nav {
    display: flex;
    gap: 1.65rem;
    align-items: center;
}

.main-nav a,
.social-links a {
    text-decoration: none;
    color: #171717;
    font-size: 0.85rem;
    font-weight: 500;
}

.main-nav a.active {
    border-bottom: 2px solid #111;
    padding-bottom: 0.22rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.62rem;
}

.social-links a {
    width: 1.32rem;
    height: 1.32rem;
    border: 1px solid #7a7a7a;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 0.56rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.social-links a:hover {
    border-color: #0f1a30;
    transform: translateY(-1px);
}

.home-split {
    min-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.panel {
    position: relative;
    min-height: 718px;
}

.panel-left {
    color: var(--text);
    background: linear-gradient(180deg, var(--left-bg), var(--left-bg-2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.1rem 3.55rem;
}

.copy-wrap {
    max-width: 545px;
    animation: slide-in-left 650ms ease-out both;
}

.copy-wrap h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.95rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.copy-wrap p {
    margin: 1.35rem 0 0;
    line-height: 1.62;
    color: var(--muted);
    max-width: 56ch;
    font-size: 1.03rem;
}

.scroll-hint {
    position: absolute;
    left: 3.3rem;
    bottom: 1.5rem;
    color: #b4c3dd;
    text-decoration: none;
    font-size: 1.45rem;
}

.panel-right {
    background: var(--right-bg);
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-visual {
    width: min(760px, 90%);
    max-width: 760px;
    animation: none;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: none;
}

.section-light {
    background: #ededed;
    padding: clamp(5.1rem, 8.5vw, 8rem) 0;
}

.text-block {
    max-width: 770px;
    text-align: center;
}

.text-block h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 2.9vw, 2.62rem);
    letter-spacing: -0.01em;
}

.text-block p {
    margin: 2.35rem auto 0;
    line-height: 1.6;
    color: #3f3f46;
    font-size: clamp(1rem, 1.65vw, 1.12rem);
    max-width: 43ch;
    text-align: left;
}

.section-dark {
    background: linear-gradient(90deg, #010818 0%, #011031 55%, #021432 100%);
    color: #eef2ff;
    padding: clamp(4.2rem, 7vw, 6.2rem) 0;
}

.showcase h2 {
    margin: 0 0 2.35rem;
    text-align: center;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.52rem);
}

.carousel {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr 74px;
    align-items: center;
    gap: 1rem;
}

.arrow {
    appearance: none;
    border: 0;
    background: transparent;
    color: #f8fafc;
    font-size: 3.3rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.9;
}

.arrow:hover {
    color: #d1e8ff;
}

.carousel-frame {
    overflow: hidden;
    width: min(570px, 90vw);
    margin: 0 auto;
}

.slides {
    display: flex;
    transition: transform 350ms ease;
}

.slide {
    min-width: 100%;
    text-align: center;
}

.slide img {
    width: 570px;
    height: 570px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.slide h3,
.slide h4 {
    margin: 1.15rem 0 0;
    font-family: "Sora", sans-serif;
}

.slide h3 {
    font-size: 2.25rem;
}

.slide h4 {
    font-size: 1.8rem;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.65rem;
}

.dot {
    width: 5px;
    height: 5px;
    border: 0;
    border-radius: 50%;
    background: #2f3c58;
    cursor: pointer;
    padding: 0;
}

.dot.is-active {
    width: 8px;
    height: 8px;
    background: #ffffff;
}

.text-block-cta p {
    max-width: 47ch;
}

.primary-btn {
    appearance: none;
    display: inline-block;
    border: 0;
    border-radius: 5px;
    text-decoration: none;
    background: #041233;
    color: #f6f9ff;
    padding: 0.88rem 2.15rem;
    font-size: 1.08rem;
    margin-top: 2rem;
    cursor: pointer;
}

.primary-btn:hover {
    background: #08204f;
}

.contact-section {
    padding: clamp(4.5rem, 7.6vw, 7.2rem) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(350px, 1fr);
    gap: clamp(1.7rem, 4vw, 4.15rem);
    align-items: start;
}

.contact-copy h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.1rem, 3.4vw, 3.15rem);
    max-width: 15ch;
}

.contact-copy p {
    margin-top: 1.5rem;
    color: #d7deee;
    line-height: 1.6;
    font-size: 1.06rem;
    max-width: 50ch;
}

.contact-card {
    background: var(--panel);
    border: 1px solid #4f586a;
    padding: 1.65rem;
    border-radius: 2px;
}

.progress-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #f4f7fd;
    margin-bottom: 0.8rem;
}

.progress-row span {
    white-space: nowrap;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #7b8495;
    position: relative;
}

.progress-bar span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 12%;
    background: #ffffff;
}

.form-question {
    margin: 0.75rem 0 1.25rem;
    color: #ecf0f8;
    font-size: 1.16rem;
    line-height: 1.42;
}

.contact-card label {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #edf1fb;
    font-size: 2.04rem;
    margin-bottom: 0.98rem;
    line-height: 1.2;
}

.contact-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.05rem;
}

.ghost-btn {
    appearance: none;
    background: transparent;
    color: #818998;
    border: 1px solid var(--panel-line);
    border-radius: 6px;
    padding: 0.8rem 1.35rem;
    font-size: 1.04rem;
}

.contact-card .primary-btn {
    margin: 0;
    font-size: 1.08rem;
    background: #b8c7df;
    color: #1a2535;
}

.page-footer {
    background: #ececec;
    padding: 3.5rem 0 4.2rem;
}

.footer-inner {
    max-width: 1240px;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.9rem;
}

.footer-social a {
    width: 1.35rem;
    height: 1.35rem;
    text-decoration: none;
    color: #0f1725;
    border: 1px solid #0f1725;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 0.62rem;
    text-transform: uppercase;
}

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

.footer-links a {
    color: #2d2d2d;
    font-size: 1rem;
    text-decoration: underline;
}

.floating-wa {
    position: fixed;
    right: 1.1rem;
    bottom: 1rem;
    width: 3.45rem;
    height: 3.45rem;
    border-radius: 50%;
    text-decoration: none;
    background: #ffffff;
    color: #0f1725;
    border: 1px solid #d1d1d1;
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .home-split {
        grid-template-columns: 1fr;
    }

    .panel {
        min-height: auto;
    }

    .panel-left,
    .panel-right {
        min-height: 52vh;
    }

    .panel-right {
        padding: 1.2rem 0 1.8rem;
    }

    .hero-visual {
        width: min(540px, 92%);
    }

    .copy-wrap {
        max-width: 100%;
    }

    .scroll-hint {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-question {
        font-size: 1.08rem;
    }

    .contact-card label {
        font-size: 1.28rem;
    }

    .contact-card .primary-btn,
    .ghost-btn {
        font-size: 1rem;
    }
}

@media (max-width: 740px) {
    .topbar {
        height: auto;
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 0.7rem 0.95rem;
    }

    .main-nav,
    .social-links {
        gap: 0.85rem;
        flex-wrap: wrap;
    }

    .main-nav a,
    .social-links a {
        font-size: 0.8rem;
    }

    .panel-left {
        padding: 2rem 1.2rem;
    }

    .panel-right {
        min-height: 50vh;
        padding: 0.8rem 0 1.2rem;
    }

    .hero-visual {
        width: min(92vw, 560px);
    }

    .copy-wrap h1 {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }

    .copy-wrap p {
        font-size: 0.96rem;
    }

    .carousel {
        grid-template-columns: 1fr;
    }

    .arrow {
        display: none;
    }

    .slide img {
        width: 570px;
        height: 570px;
        max-width: 100%;
    }

    .slide h3 {
        font-size: 1.65rem;
    }

    .slide h4 {
        font-size: 1.32rem;
    }

    .text-block p {
        text-align: left;
    }

    .primary-btn {
        font-size: 1rem;
    }

    .footer-social {
        margin-bottom: 1.6rem;
    }

    .floating-wa {
        width: 3rem;
        height: 3rem;
    }
}
