/* =========================================================
   SoftFlo Corporate Homepage V1
   - 기업 브랜드 중심
   - EstateHub 전환 중심
========================================================= */

:root {
    --sf-bg: #050b16;
    --sf-bg-soft: #091326;
    --sf-panel: rgba(11, 25, 47, 0.84);
    --sf-line: rgba(148, 181, 224, 0.18);
    --sf-text: #ffffff;
    --sf-muted: #b8c5d8;
    --sf-blue: #2d8cff;
    --sf-cyan: #39d7e7;
    --sf-purple: #9c6cff;
    --sf-green: #36d99e;
}

/* =========================================================
   Public Account
========================================================= */

.sf-account-page {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(5, 11, 22, 0.96), rgba(8, 20, 38, 0.94)),
        url("../images/softflo/backgrounds/image-05.webp") center/cover;
}

.sf-account-auth {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 96px 24px 48px;
}

.sf-account-auth--wide .sf-account-panel {
    width: min(820px, 100%);
}

.sf-account-brand {
    position: fixed;
    top: 24px;
    left: 24px;
    font-size: 22px;
    font-weight: 900;
}

.sf-account-panel {
    width: min(460px, 100%);
    padding: 34px;
    border: 1px solid rgba(148, 181, 224, 0.2);
    border-radius: 8px;
    background: rgba(8, 20, 38, 0.88);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.sf-account-panel h1,
.sf-account-header h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
}

.sf-account-panel p,
.sf-account-header p {
    margin: 10px 0 0;
    color: #b8c5d8;
}

.sf-account-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.sf-account-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sf-account-form__full {
    grid-column: 1 / -1;
}

.sf-account-form label {
    display: grid;
    gap: 8px;
    color: #dbe7f7;
    font-size: 13px;
    font-weight: 800;
}

.sf-account-input {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid rgba(148, 181, 224, 0.24);
    border-radius: 8px;
    background: rgba(5, 11, 22, 0.72);
    color: #ffffff;
    font: inherit;
}

.sf-account-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px;
    color: #c7d2e3;
}

.sf-account-check input {
    width: 18px;
    height: 18px;
}

.sf-account-button {
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.sf-account-button--primary {
    background: linear-gradient(135deg, #2d92ff, #1657da);
}

.sf-account-button--disabled,
.sf-account-button:disabled {
    background: rgba(148, 181, 224, 0.16);
    color: rgba(219, 231, 247, 0.58);
    cursor: not-allowed;
}

.sf-account-help {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #b8c5d8;
    font-size: 14px;
}

.sf-account-help a {
    color: #7dc4ff;
    font-weight: 900;
}

.sf-account-alert {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(45, 140, 255, 0.16);
    color: #dbeafe;
}

.sf-account-alert--danger {
    background: rgba(239, 68, 68, 0.16);
    color: #fecaca;
}

.sf-account-alert--success {
    background: rgba(54, 217, 158, 0.16);
    color: #bbf7d0;
}

.sf-account-topbar {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 10, 21, 0.78);
}

.sf-account-topbar .sf-account-brand {
    position: static;
}

.sf-account-topbar > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sf-account-topbar a,
.sf-account-topbar button {
    border: 0;
    background: transparent;
    color: #c7d2e3;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.sf-account-shell {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 36px 0 80px;
}

.sf-account-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.sf-account-header span,
.sf-account-metrics span {
    color: #7dc4ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sf-account-status {
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(54, 217, 158, 0.16);
    color: #bbf7d0;
    font-size: 12px;
}

.sf-account-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sf-account-metrics article {
    padding: 20px;
    border: 1px solid rgba(148, 181, 224, 0.18);
    border-radius: 8px;
    background: rgba(8, 20, 38, 0.78);
}

.sf-account-metrics strong {
    display: block;
    margin-top: 8px;
    font-size: 32px;
}

.sf-account-section {
    margin-top: 28px;
}

.sf-account-section h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

.sf-account-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sf-account-plans article,
.sf-account-empty {
    padding: 20px;
    border: 1px solid rgba(148, 181, 224, 0.18);
    border-radius: 8px;
    background: rgba(8, 20, 38, 0.78);
}

.sf-account-plans span {
    color: #7dc4ff;
    font-size: 12px;
    font-weight: 900;
}

.sf-account-plans h3 {
    margin: 8px 0 0;
    font-size: 18px;
}

.sf-account-plans p {
    min-height: 48px;
    margin: 10px 0 0;
    color: #b8c5d8;
    font-size: 13px;
    line-height: 1.55;
}

.sf-account-plans strong {
    display: block;
    margin-top: 14px;
    font-size: 22px;
}

.sf-account-plans small {
    display: block;
    margin-top: 7px;
    color: #9fb5d1;
}

.sf-account-plans .sf-account-plan-note {
    color: #facc15;
    line-height: 1.5;
}

.sf-account-plans form {
    margin-top: 16px;
}

.sf-account-plans button,
.sf-account-plans .sf-account-button {
    width: 100%;
}

.sf-account-plans .sf-account-button,
.sf-account-header .sf-account-button {
    display: inline-flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    text-decoration: none;
}

.sf-account-plans .sf-account-button {
    margin-top: 16px;
}

.sf-home-alerts {
    position: fixed;
    top: 86px;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
}

.sf-account-table {
    overflow-x: auto;
    border: 1px solid rgba(148, 181, 224, 0.18);
    border-radius: 8px;
    background: rgba(8, 20, 38, 0.78);
}

.sf-account-table table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.sf-account-table th,
.sf-account-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 181, 224, 0.12);
    text-align: left;
    font-size: 14px;
}

.sf-account-table th {
    color: #9fb5d1;
    font-size: 12px;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .sf-account-form--grid,
    .sf-account-metrics,
    .sf-account-plans {
        grid-template-columns: 1fr;
    }

    .sf-account-topbar,
    .sf-account-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--sf-bg);
    color: var(--sf-text);
    font-family: "Noto Sans KR", "Pretendard", Inter, sans-serif;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.sf-wrap {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
   Navigation
========================================================= */

.sf-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(4, 10, 21, 0.74);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.sf-nav__inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.sf-nav__brand img {
    display: block;
    width: 154px;
    height: auto;
    transform: translateY(3px);
}

.sf-nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sf-nav__links a {
    color: #c7d2e3;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.sf-nav__links a:hover {
    color: #ffffff;
}

.sf-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-nav__estate,
.sf-nav__trial {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;

    padding: 0 16px;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 850;
}

.sf-nav__estate {
    border: 1px solid rgba(91, 160, 255, 0.32);

    background: rgba(25, 83, 156, 0.24);

    color: #dcecff;
}

.sf-nav__logout {
    margin: 0;
}

.sf-nav__logout button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;

    padding: 0 16px;

    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 10px;

    background: rgba(15, 23, 42, 0.2);
    color: #dcecff;

    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.sf-nav__logout button:hover {
    border-color: rgba(248, 250, 252, 0.5);
    color: #ffffff;
}

.sf-nav__trial {
    background: linear-gradient(135deg, #278eff, #1558d8);

    box-shadow: 0 10px 24px rgba(21, 89, 218, 0.28);
}

/* =========================================================
   Shared Buttons
========================================================= */

.sf-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 25px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 850;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.sf-button:hover {
    transform: translateY(-3px);
}

.sf-button--primary {
    background: linear-gradient(135deg, #2d92ff, #1657da);

    box-shadow: 0 16px 34px rgba(18, 90, 220, 0.32);
}

.sf-button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.28);

    background: rgba(7, 17, 35, 0.44);

    backdrop-filter: blur(8px);
}

.sf-button--light {
    background: #ffffff;
    color: #0a1c39;
}

/* =========================================================
   Hero
========================================================= */

.sf-hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    overflow: hidden;

    padding: 118px 0 72px;
}

.sf-hero__background,
.sf-hero__shade {
    position: absolute;
    inset: 0;
}

.sf-hero__background {
    background-image: url("../images/softflo/backgrounds/image-05.webp");
    background-position: center center;
    background-size: cover;

    transform: scale(1.02);
}

.sf-hero__shade {
    background:
        linear-gradient(90deg, rgba(3, 10, 23, 0.96) 0%, rgba(3, 10, 23, 0.84) 39%, rgba(4, 13, 28, 0.28) 70%, rgba(4, 13, 28, 0.42) 100%),
        linear-gradient(180deg, rgba(3, 8, 18, 0.18), rgba(3, 8, 18, 0.64));
}

.sf-hero__content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(600px, 0.98fr);
    gap: 34px;
    align-items: center;
}

.sf-hero__copy {
    max-width: 720px;
}

.sf-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 26px;

    color: #60d9e8;

    font-size: 11px;
    font-weight: 900;
    font-style: italic;

    letter-spacing: 0.2em;
}

.sf-kicker::before {
    content: "";

    width: 38px;
    height: 2px;

    background: linear-gradient(90deg, #2c91ff, #46e1eb);

    box-shadow: 0 0 14px rgba(61, 216, 232, 0.65);
}

.sf-hero__logo {
    display: block;
    width: min(350px, 70vw);
    height: auto;

    margin-bottom: 33px;
}

.sf-hero h1 {
    margin: 0;

    font-size: clamp(42px, 5.4vw, 76px);
    line-height: 1.18;
    font-weight: 900;

    letter-spacing: -0.065em;
    word-break: keep-all;
}

.sf-hero h1 span {
    color: #62c6ff;
}

.sf-hero__copy > p {
    max-width: 720px;

    margin: 27px 0 0;

    color: #c7d4e5;

    font-size: 18px;
    line-height: 1.85;

    word-break: keep-all;
}

.sf-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 34px;
}

.sf-hero__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: center;

    margin-top: 32px;

    color: #d7e5f5;

    font-size: 12px;
    font-weight: 800;
}

.sf-hero__quick span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;

    padding: 0 13px;

    border: 1px solid rgba(89, 167, 255, 0.28);
    border-radius: 999px;

    background: rgba(7, 38, 76, 0.42);
}

.sf-hero__quick i {
    color: #48d9e7;
    font-style: normal;
}

.sf-hero-deck {
    width: min(100%, 640px);
    justify-self: end;
}

.sf-hero-deck__stage {
    position: relative;

    min-height: 625px;
    padding-right: 54px;

    transform-style: flat;
}

.sf-hero-deck__card {
    position: absolute;
    inset: 0 54px 0 0;

    display: flex;
    flex-direction: column;
    overflow: hidden;

    border: 1px solid rgba(143, 199, 255, 0.34);
    border-radius: 18px;

    background:
        linear-gradient(160deg, rgba(14, 42, 77, 0.98) 0%, rgba(5, 16, 32, 0.98) 54%, rgba(3, 10, 21, 0.99) 100%);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    opacity: 0;

    transform: translate(66px, 26px) scale(0.9);
    transform-origin: left center;
    transition: transform 0.72s cubic-bezier(0.2, 0.85, 0.25, 1), opacity 0.48s ease, filter 0.48s ease;
    will-change: transform, opacity;
}

.sf-hero-deck__visual {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 360px;

    border-bottom: 1px solid rgba(143, 199, 255, 0.15);

    background:
        linear-gradient(180deg, rgba(30, 86, 142, 0.35), rgba(6, 20, 39, 0.08));
}

.sf-hero-deck__visual::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg, rgba(5, 16, 32, 0), rgba(5, 16, 32, 0.14));
}

.sf-hero-deck__visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
    opacity: 0.96;
    filter: saturate(1.02) contrast(1.08);
}

.sf-hero-deck__body {
    padding: 22px 30px 32px;
}

.sf-hero-deck__heading {
    display: flex;
    gap: 11px;
    align-items: center;

    margin-bottom: 16px;
}

.sf-hero-deck__heading img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.sf-hero-deck__heading span {
    display: inline-flex;

    color: #4ce2ef;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sf-hero-deck__body h2 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.18;
    font-weight: 900;

    word-break: keep-all;
}

.sf-hero-deck__body p {
    margin: 16px 0 0;

    color: #c9d8e9;

    font-size: 15px;
    line-height: 1.7;

    word-break: keep-all;
}

.sf-hero-deck__body em {
    display: block;
    margin-top: 21px;

    color: #8fc7ff;

    font-size: 12px;
    font-style: normal;
    font-weight: 800;

    word-break: keep-all;
}

.sf-hero-deck__card.is-active {
    z-index: 10;

    opacity: 1;
    clip-path: none;
    filter: saturate(1.05);
    transform: translate(0, 0) scale(1);
}

.sf-hero-deck__card.is-fan-1 {
    z-index: 8;

    opacity: 0.72;
    clip-path: inset(0 0 0 calc(100% - 24px));
    filter: saturate(0.74) brightness(0.66);
    transform: translate(14px, 8px) scale(0.982);
}

.sf-hero-deck__card.is-fan-2 {
    z-index: 6;

    opacity: 0.55;
    clip-path: inset(0 0 0 calc(100% - 20px));
    filter: saturate(0.62) brightness(0.56);
    transform: translate(27px, 16px) scale(0.964);
}

.sf-hero-deck__card.is-fan-3 {
    z-index: 4;

    opacity: 0.42;
    clip-path: inset(0 0 0 calc(100% - 16px));
    filter: saturate(0.52) brightness(0.48);
    transform: translate(40px, 24px) scale(0.946);
}

.sf-hero-deck__card.is-fan-4 {
    z-index: 2;

    opacity: 0.3;
    clip-path: inset(0 0 0 calc(100% - 12px));
    filter: saturate(0.44) brightness(0.42);
    transform: translate(52px, 32px) scale(0.928);
}

.sf-hero-deck__card.is-hidden {
    pointer-events: none;
}

.sf-hero-deck__card:not(.is-active) .sf-hero-deck__visual {
    opacity: 0.04;
}

.sf-hero-deck__card:not(.is-active) .sf-hero-deck__body {
    opacity: 0;
}

.sf-hero-deck__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;

    margin-top: 23px;
}

.sf-hero-deck__arrow,
.sf-hero-deck__dots button {
    border: 1px solid rgba(143, 199, 255, 0.3);
    background: rgba(7, 28, 56, 0.72);
    color: #ffffff;

    cursor: pointer;
}

.sf-hero-deck__arrow {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    font-size: 24px;
    line-height: 1;
}

.sf-hero-deck__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sf-hero-deck__dots button {
    width: 9px;
    height: 9px;
    padding: 0;

    border-radius: 50%;
    opacity: 0.52;
}

.sf-hero-deck__dots button.is-active {
    width: 26px;

    border-radius: 999px;

    background: #54cfff;
    opacity: 1;
}

.sf-scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    color: rgba(220, 232, 246, 0.64);

    transform: translateX(-50%);
}

.sf-scroll-cue span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.sf-scroll-cue i {
    font-size: 17px;
    font-style: normal;
}

/* =========================================================
   Summary
========================================================= */

.sf-summary {
    position: relative;
    z-index: 5;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background: #071224;
}

.sf-summary__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sf-summary__grid > div {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.sf-summary__grid > div:last-child {
    border-right: 0;
}

.sf-summary strong {
    color: #67c8ff;

    font-size: 28px;
    font-weight: 920;
}

.sf-summary span {
    margin-top: 5px;

    color: #9fb0c6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

/* =========================================================
   Shared Sections
========================================================= */

.sf-section {
    position: relative;

    padding: 122px 0;
}

.sf-about {
    background:
        radial-gradient(circle at 5% 20%, rgba(42, 134, 255, 0.1), transparent 30%),
        linear-gradient(180deg, #071224, #09172b);
}

.sf-split,
.sf-advantage__layout {
    display: grid;
    grid-template-columns: minmax(520px, 1.05fr) minmax(430px, 0.95fr);
    gap: 72px;
    align-items: center;
}

.sf-split--reverse {
    grid-template-columns: minmax(430px, 0.92fr) minmax(520px, 1.08fr);
}

.sf-media-card {
    position: relative;

    margin: 0;

    overflow: hidden;

    border: 1px solid rgba(111, 164, 229, 0.23);
    border-radius: 30px;

    background: #0a1b32;

    box-shadow: 0 32px 78px rgba(0, 0, 0, 0.3);
}

.sf-media-card img {
    display: block;
    width: 100%;
    min-height: 470px;

    object-fit: cover;
}

.sf-media-card__line {
    position: absolute;
    right: 9%;
    bottom: 0;
    left: 9%;

    height: 3px;

    background: linear-gradient(90deg, transparent, #37cce4, #438fff, transparent);
}

.sf-media-card--glow {
    box-shadow:
        0 32px 78px rgba(0, 0, 0, 0.32),
        0 0 48px rgba(91, 82, 224, 0.12);
}

.sf-section-label {
    display: block;

    margin-bottom: 17px;

    color: #47d5e4;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.2em;
}

.sf-section-copy h2,
.sf-section-heading h2 {
    margin: 0;

    font-size: clamp(36px, 4.1vw, 58px);
    line-height: 1.27;
    font-weight: 910;

    letter-spacing: -0.058em;
    word-break: keep-all;
}

.sf-section-copy h2 span,
.sf-section-heading h2 strong {
    color: #65c9ff;
}

.sf-section-copy__lead {
    margin: 26px 0 0;

    color: #b9c8da;

    font-size: 17px;
    line-height: 1.87;

    word-break: keep-all;
}

.sf-values {
    display: grid;
    gap: 13px;

    margin-top: 33px;
}

.sf-values > div {
    display: grid;
    grid-template-columns: 42px 150px 1fr;
    gap: 14px;
    align-items: center;

    padding: 17px 18px;

    border: 1px solid rgba(109, 162, 226, 0.19);
    border-radius: 15px;

    background: rgba(10, 31, 61, 0.62);
}

.sf-values b {
    color: #46d5e4;

    font-size: 11px;
    letter-spacing: 0.1em;
}

.sf-values strong {
    font-size: 14px;
}

.sf-values p {
    margin: 0;

    color: #9fafc4;

    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   Technology
========================================================= */

.sf-technology {
    overflow: hidden;

    background: #050c19;
}

.sf-tech-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 80% 20%, rgba(124, 75, 255, 0.12), transparent 31%),
        radial-gradient(circle at 20% 80%, rgba(45, 145, 255, 0.1), transparent 29%);
}

.sf-technology .sf-wrap {
    position: relative;
    z-index: 2;
}

.sf-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 31px;
}

.sf-tech-pills span {
    display: inline-flex;
    min-height: 37px;
    align-items: center;

    padding: 0 14px;

    border: 1px solid rgba(141, 118, 255, 0.33);
    border-radius: 999px;

    background: rgba(50, 34, 102, 0.48);

    color: #e2dcff;

    font-size: 11px;
    font-weight: 800;
}

/* =========================================================
   EstateHub Platform
========================================================= */

.sf-estatehub {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
}

.sf-estatehub__visual,
.sf-estatehub__overlay {
    position: absolute;
    inset: 0;
}

.sf-estatehub__visual {
    background-image: url("../images/softflo/backgrounds/image-06.webp");
    background-position: center center;
    background-size: cover;
}

.sf-estatehub__overlay {
    background:
        linear-gradient(90deg, rgba(3, 10, 23, 0.96) 0%, rgba(3, 10, 23, 0.74) 38%, rgba(3, 10, 23, 0.12) 68%, rgba(3, 10, 23, 0.34) 100%),
        linear-gradient(180deg, rgba(4, 10, 21, 0.18), rgba(4, 10, 21, 0.58));
}

.sf-estatehub__content {
    position: relative;
    z-index: 2;

    max-width: 660px;
}

.sf-estatehub__title {
    display: flex;
    align-items: center;
    gap: 21px;
}

.sf-estatehub__title img {
    width: 88px;
    height: 88px;

    object-fit: contain;
}

.sf-estatehub__title span {
    color: #57d6e6;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.16em;
}

.sf-estatehub__title h2 {
    margin: 5px 0 0;

    font-size: clamp(58px, 7vw, 95px);
    line-height: 0.95;
    font-weight: 950;

    letter-spacing: -0.075em;
}

.sf-estatehub__content > p {
    max-width: 620px;

    margin: 28px 0 32px;

    color: #c4d2e4;

    font-size: 18px;
    line-height: 1.85;

    word-break: keep-all;
}

/* =========================================================
   Product Family
========================================================= */

.sf-products {
    background:
        radial-gradient(circle at 50% 0%, rgba(37, 119, 255, 0.12), transparent 35%),
        linear-gradient(180deg, #081427, #071123);
}

.sf-section-heading {
    max-width: 830px;

    margin: 0 auto 55px;

    text-align: center;
}

.sf-section-heading > span {
    display: block;

    margin-bottom: 15px;

    color: #4bd5e5;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.2em;
}

.sf-section-heading p {
    margin: 22px 0 0;

    color: #aebed1;

    font-size: 16px;
    line-height: 1.7;
}

.sf-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sf-product-card {
    --product-accent: #4a9dff;
    --product-soft: rgba(74, 157, 255, 0.13);

    position: relative;
    display: flex;
    min-height: 560px;
    flex-direction: column;

    padding: 34px 31px 30px;

    border: 1px solid rgba(111, 163, 226, 0.22);
    border-radius: 25px;

    background:
        linear-gradient(180deg, rgba(13, 36, 70, 0.92), rgba(7, 23, 48, 0.98));

    box-shadow: 0 27px 65px rgba(0, 0, 0, 0.23);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.sf-product-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;

    height: 2px;

    background: linear-gradient(90deg, transparent, var(--product-accent), transparent);
}

.sf-product-card:hover {
    transform: translateY(-8px);

    border-color: var(--product-accent);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.3),
        0 0 35px var(--product-soft);
}

.sf-product-card--prop {
    --product-accent: #a66cff;
    --product-soft: rgba(166, 108, 255, 0.14);
}

.sf-product-card--rental {
    --product-accent: #39d79e;
    --product-soft: rgba(57, 215, 158, 0.13);
}

.sf-product-card > img {
    width: 78px;
    height: 78px;

    object-fit: contain;
}

.sf-product-card > span {
    margin-top: 26px;

    color: var(--product-accent);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.17em;
}

.sf-product-card h3 {
    margin: 7px 0 0;

    font-size: 36px;
    font-weight: 920;

    letter-spacing: -0.055em;
}

.sf-product-card > p {
    margin: 19px 0 0;

    color: #b8c7d8;

    font-size: 14px;
    line-height: 1.75;

    word-break: keep-all;
}

.sf-product-card ul {
    display: grid;
    gap: 10px;

    margin: 25px 0 0;
    padding: 22px 0 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    list-style: none;
}

.sf-product-card li {
    position: relative;

    padding-left: 18px;

    color: #e1ebf6;

    font-size: 13px;
}

.sf-product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;

    color: var(--product-accent);
}

.sf-product-card > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;
    padding-top: 29px;

    color: var(--product-accent);

    font-size: 14px;
    font-weight: 850;
}

/* =========================================================
   Advantage
========================================================= */

.sf-advantage {
    background: linear-gradient(180deg, #050c19, #07152a);
}

.sf-advantage__visual {
    overflow: hidden;

    border: 1px solid rgba(102, 162, 230, 0.22);
    border-radius: 29px;

    box-shadow: 0 32px 78px rgba(0, 0, 0, 0.3);
}

.sf-advantage__visual img {
    display: block;
    width: 100%;
    min-height: 650px;

    object-fit: cover;
}

.sf-advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;

    margin-top: 31px;
}

.sf-advantage-grid > div {
    min-height: 150px;

    padding: 20px 19px;

    border: 1px solid rgba(102, 160, 226, 0.18);
    border-radius: 16px;

    background: rgba(10, 31, 61, 0.65);
}

.sf-advantage-grid b {
    color: #49d6e5;

    font-size: 10px;
    letter-spacing: 0.12em;
}

.sf-advantage-grid strong {
    display: block;

    margin-top: 15px;

    font-size: 15px;
}

.sf-advantage-grid p {
    margin: 9px 0 0;

    color: #9fb0c5;

    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   Human Philosophy
========================================================= */

.sf-human {
    position: relative;
    display: flex;
    min-height: 660px;
    align-items: center;
    overflow: hidden;
}

.sf-human__image,
.sf-human__overlay {
    position: absolute;
    inset: 0;
}

.sf-human__image {
    background-image: url("../images/softflo/backgrounds/image-03.webp");
    background-position: center center;
    background-size: cover;
}

.sf-human__overlay {
    background:
        linear-gradient(90deg, rgba(4, 11, 24, 0.96) 0%, rgba(4, 11, 24, 0.78) 42%, rgba(4, 11, 24, 0.16) 72%, rgba(4, 11, 24, 0.28) 100%),
        linear-gradient(180deg, rgba(4, 11, 24, 0.16), rgba(4, 11, 24, 0.5));
}

.sf-human__content {
    position: relative;
    z-index: 2;

    max-width: 690px;
}

.sf-human__content > span {
    color: #4ad7e6;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.2em;
}

.sf-human h2 {
    margin: 19px 0 0;

    font-size: clamp(39px, 4.7vw, 65px);
    line-height: 1.3;
    font-weight: 910;

    letter-spacing: -0.058em;
    word-break: keep-all;
}

.sf-human p {
    max-width: 610px;

    margin: 25px 0 0;

    color: #c2cfdf;

    font-size: 17px;
    line-height: 1.8;
}

/* =========================================================
   Final CTA
========================================================= */

.sf-final {
    padding: 100px 0;

    background:
        radial-gradient(circle at 50% 0%, rgba(46, 142, 255, 0.14), transparent 39%),
        #061124;
}

.sf-final__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;

    padding: 48px 52px;

    border: 1px solid rgba(100, 165, 240, 0.3);
    border-radius: 28px;

    background:
        linear-gradient(110deg, rgba(14, 62, 126, 0.9), rgba(11, 31, 70, 0.96));

    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28);
}

.sf-final__card > div:first-child {
    max-width: 760px;
}

.sf-final__card span {
    color: #50d7e6;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.18em;
}

.sf-final h2 {
    margin: 15px 0 0;

    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.35;

    letter-spacing: -0.05em;
}

.sf-final p {
    margin: 18px 0 0;

    color: #b9c9dc;

    font-size: 15px;
    line-height: 1.7;
}

.sf-final__buttons {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 11px;

    min-width: 210px;
}

/* =========================================================
   Footer
========================================================= */

.sf-footer {
    padding: 64px 0 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #030812;
}

.sf-footer__top {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.sf-footer__brand img {
    width: 205px;
    height: auto;
}

.sf-footer__brand p {
    max-width: 420px;

    margin: 19px 0 0;

    color: #8798ae;

    font-size: 13px;
    line-height: 1.7;
}

.sf-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
}

.sf-footer__links > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sf-footer__links strong {
    margin-bottom: 5px;

    color: #d6e1ef;

    font-size: 12px;
}

.sf-footer__links a {
    color: #8192a8;

    font-size: 12px;
}

.sf-footer__links a:hover {
    color: #ffffff;
}

.sf-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 48px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    color: #65778d;

    font-size: 11px;
}

.sf-footer__bottom div {
    display: flex;
    gap: 18px;
}

/* =========================================================
   Reveal Animation
========================================================= */

.reveal-up {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1080px) {
    .sf-nav__links {
        display: none;
    }

    .sf-hero__content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sf-hero__copy {
        max-width: 780px;
    }

    .sf-hero-deck {
        justify-self: start;
        width: min(100%, 620px);
    }

    .sf-hero-deck__stage {
        min-height: 600px;
    }

    .sf-hero-deck__visual {
        height: 340px;
    }

    .sf-split,
    .sf-split--reverse,
    .sf-advantage__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sf-product-grid {
        grid-template-columns: 1fr;
    }

    .sf-product-card {
        min-height: auto;
    }

    .sf-advantage__visual img {
        min-height: 500px;
    }

    .sf-final__card {
        align-items: flex-start;
        flex-direction: column;
    }

    .sf-final__buttons {
        width: 100%;
        flex-direction: row;
    }

    .sf-final__buttons .sf-button {
        flex: 1;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 720px) {
    .sf-wrap {
        width: min(100% - 30px, 1240px);
    }

    .sf-nav__inner {
        min-height: 64px;
    }

    .sf-nav__brand img {
        width: 125px;
    }

    .sf-nav__estate {
        display: none;
    }

    .sf-nav__trial {
        min-height: 38px;
        padding: 0 13px;
    }

    .sf-hero {
        min-height: 1010px;
        align-items: flex-end;

        padding: 105px 0 76px;
    }

    .sf-hero__background {
        background-position: 68% center;
    }

    .sf-hero__shade {
        background:
            linear-gradient(180deg, rgba(3, 10, 23, 0.4) 0%, rgba(3, 10, 23, 0.76) 43%, rgba(3, 10, 23, 0.98) 78%),
            linear-gradient(90deg, rgba(3, 10, 23, 0.78), rgba(3, 10, 23, 0.18));
    }

    .sf-hero__logo {
        width: 240px;
        margin-bottom: 25px;
    }

    .sf-hero h1 {
        font-size: 38px;
    }

    .sf-hero__copy > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .sf-hero__buttons {
        flex-direction: column;
    }

    .sf-button {
        width: 100%;
    }

    .sf-hero__quick {
        gap: 7px;
    }

    .sf-hero__quick i {
        display: none;
    }

    .sf-hero-deck {
        width: 100%;
    }

    .sf-hero-deck__stage {
        min-height: 420px;
        padding-right: 28px;
    }

    .sf-hero-deck__card {
        inset: 0 28px 0 0;
        border-radius: 14px;
    }

    .sf-hero-deck__visual {
        height: 165px;
    }

    .sf-hero-deck__body {
        padding: 20px 20px 23px;
    }

    .sf-hero-deck__body h2 {
        font-size: 23px;
    }

    .sf-hero-deck__body p {
        font-size: 14px;
    }

    .sf-hero-deck__card.is-fan-1 {
        opacity: 0.48;
        clip-path: inset(0 0 0 calc(100% - 14px));
        transform: translate(8px, 7px) scale(0.98);
    }

    .sf-hero-deck__card.is-fan-2 {
        opacity: 0.34;
        clip-path: inset(0 0 0 calc(100% - 12px));
        transform: translate(15px, 14px) scale(0.96);
    }

    .sf-hero-deck__card.is-fan-3 {
        opacity: 0.22;
        clip-path: inset(0 0 0 calc(100% - 10px));
        transform: translate(22px, 21px) scale(0.94);
    }

    .sf-hero-deck__card.is-fan-4 {
        opacity: 0.14;
        clip-path: inset(0 0 0 calc(100% - 8px));
        transform: translate(28px, 28px) scale(0.92);
    }

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

    .sf-summary__grid > div:nth-child(2) {
        border-right: 0;
    }

    .sf-summary__grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sf-section {
        padding: 82px 0;
    }

    .sf-media-card img {
        min-height: 320px;
    }

    .sf-section-copy h2,
    .sf-section-heading h2 {
        font-size: 34px;
    }

    .sf-section-copy__lead {
        font-size: 15px;
    }

    .sf-values > div {
        grid-template-columns: 32px 1fr;
    }

    .sf-values p {
        grid-column: 2;
    }

    .sf-estatehub {
        min-height: 780px;
        align-items: flex-end;

        padding: 0 0 72px;
    }

    .sf-estatehub__visual {
        background-position: 60% center;
    }

    .sf-estatehub__overlay {
        background:
            linear-gradient(180deg, rgba(3, 10, 23, 0.28), rgba(3, 10, 23, 0.76) 52%, rgba(3, 10, 23, 0.98) 80%);
    }

    .sf-estatehub__title {
        align-items: flex-end;
    }

    .sf-estatehub__title img {
        width: 64px;
        height: 64px;
    }

    .sf-estatehub__title h2 {
        font-size: 58px;
    }

    .sf-estatehub__content > p {
        font-size: 15px;
    }

    .sf-product-card {
        padding: 29px 25px;
    }

    .sf-advantage__visual img {
        min-height: 410px;
    }

    .sf-advantage-grid {
        grid-template-columns: 1fr;
    }

    .sf-human {
        min-height: 720px;
        align-items: flex-end;

        padding-bottom: 72px;
    }

    .sf-human__image {
        background-position: 63% center;
    }

    .sf-human__overlay {
        background:
            linear-gradient(180deg, rgba(4, 11, 24, 0.28), rgba(4, 11, 24, 0.82) 58%, rgba(4, 11, 24, 0.98) 84%);
    }

    .sf-human h2 {
        font-size: 36px;
    }

    .sf-final {
        padding: 72px 0;
    }

    .sf-final__card {
        padding: 31px 25px;
    }

    .sf-final__buttons {
        flex-direction: column;
    }

    .sf-footer__top {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .sf-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* 모션 최소화 환경 지원 */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Edge/Windows forced-colors mode can replace gradients, text, and panels with
   system colors, which breaks the image-led homepage. Preserve the authored
   palette for these branded public surfaces. */
@media (forced-colors: active) {
    body,
    .sf-nav,
    .sf-nav *,
    .sf-hero,
    .sf-hero *,
    .sf-summary,
    .sf-summary *,
    .sf-section,
    .sf-section *,
    .sf-footer,
    .sf-footer *,
    .sf-account-page,
    .sf-account-page * {
        forced-color-adjust: none;
    }

    body {
        background: var(--sf-bg);
        color: var(--sf-text);
    }
}


/* =========================================================
   RentalHub 카드: 신규 사업 도전 메시지 강조
========================================================= */
.sf-product-card__message {
    display: block;
    margin-top: 18px;

    color: #f4fffb;

    font-size: 19px;
    line-height: 1.5;
    font-weight: 880;

    letter-spacing: -0.035em;
    word-break: keep-all;
}

.sf-product-card--rental .sf-product-card__message {
    color: #b9ffe2;
}

/* =========================================================
   Video Library & Education Center
========================================================= */
.sv-page,
.se-page {
    min-height: 100vh;
    padding-top: 72px;
    background: #050b16;
}

.sv-hero,
.se-hero,
.se-detail-hero {
    padding: 96px 0 72px;
    background:
        linear-gradient(110deg, rgba(5, 11, 22, 0.96), rgba(7, 24, 47, 0.82)),
        url("../images/softflo/backgrounds/image-02.webp") center/cover no-repeat;
}

.sv-hero span,
.se-hero span,
.se-detail-hero span,
.sv-head span,
.se-course-card span {
    color: #49d7e6;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.sv-hero h1,
.se-hero h1,
.se-detail-hero h1 {
    margin: 14px 0 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.1;
}

.sv-hero p,
.se-hero p,
.se-detail-hero p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #c1cfdf;
    font-size: 18px;
    line-height: 1.7;
}

.sv-section,
.se-section {
    padding: 64px 0;
}

.sv-head {
    margin-bottom: 24px;
}

.sv-head h2 {
    margin: 7px 0 0;
    font-size: 30px;
}

.sv-featured-grid,
.sv-grid,
.se-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sv-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 26px;
}

.sv-filter a {
    min-height: 36px;
    padding: 9px 13px;
    border: 1px solid rgba(148, 181, 224, 0.22);
    border-radius: 999px;
    color: #c9d7e8;
    font-size: 12px;
    font-weight: 850;
}

.sv-filter a.is-active {
    border-color: rgba(57, 215, 231, 0.5);
    background: rgba(45, 140, 255, 0.22);
    color: #fff;
}

.sv-card,
.se-course-card {
    overflow: hidden;
    border: 1px solid rgba(111, 164, 229, 0.2);
    border-radius: 16px;
    background: rgba(10, 25, 49, 0.92);
}

.sv-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #081326;
}

.sv-card--shorts .sv-card__media {
    aspect-ratio: 9 / 16;
}

.sv-card__media iframe,
.sv-card__media img,
.se-player iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.sv-card__media > span,
.sv-card__placeholder,
.se-player__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(4, 12, 25, 0.7);
    color: #dbe8f7;
    font-weight: 900;
}

.sv-card__body {
    padding: 18px;
}

.sv-card__body > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sv-card__body span {
    color: #55d7e6;
    font-size: 11px;
    font-weight: 850;
}

.sv-card__body h3,
.se-course-card h2,
.se-player h2 {
    margin: 12px 0 0;
    font-size: 21px;
    line-height: 1.35;
}

.sv-card__body p,
.se-course-card p,
.se-player p {
    margin: 10px 0 0;
    color: #aebed1;
    font-size: 14px;
    line-height: 1.65;
}

.sv-empty {
    grid-column: 1 / -1;
    padding: 48px;
    border: 1px solid rgba(148, 181, 224, 0.18);
    border-radius: 16px;
    color: #9fb0c6;
    text-align: center;
}

.se-course-card {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px;
}

.se-course-card__thumb {
    display: grid;
    min-height: 160px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 140, 255, 0.35), rgba(54, 217, 158, 0.22));
    color: #fff;
    font-weight: 950;
}

.se-course-card__thumb img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.se-course-card .sf-button {
    margin-top: 20px;
}

.se-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.se-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.se-player {
    overflow: hidden;
    border: 1px solid rgba(111, 164, 229, 0.2);
    border-radius: 16px;
    background: rgba(10, 25, 49, 0.92);
}

.se-player iframe,
.se-player__empty {
    position: relative;
    aspect-ratio: 16 / 9;
}

.se-player h2,
.se-player p {
    padding: 0 22px;
}

.se-player p {
    padding-bottom: 22px;
}

.se-lessons {
    display: grid;
    gap: 10px;
}

.se-lessons a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 12px;
    padding: 15px;
    border: 1px solid rgba(148, 181, 224, 0.18);
    border-radius: 12px;
    background: rgba(10, 25, 49, 0.72);
}

.se-lessons a.is-active {
    border-color: rgba(57, 215, 231, 0.5);
    background: rgba(45, 140, 255, 0.2);
}

.se-lessons b {
    grid-row: span 2;
    color: #49d7e6;
}

.se-lessons span {
    font-weight: 850;
}

.se-lessons small {
    color: #98abc0;
}

.sf-form-page {
    min-height: 100vh;
    padding: 150px 0 90px;
    background:
        linear-gradient(110deg, rgba(5, 11, 22, 0.96), rgba(8, 23, 45, 0.82)),
        url("../images/softflo/backgrounds/image-05.webp") center/cover no-repeat;
}

.sf-form-page__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(460px, 1fr);
    gap: 54px;
    align-items: start;
}

.sf-form-page__copy span {
    color: #49d7e6;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.sf-form-page__copy h1 {
    margin: 16px 0 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.1;
}

.sf-form-page__copy p {
    margin: 22px 0 0;
    color: #c1cfdf;
    font-size: 18px;
    line-height: 1.75;
}

.sf-form-card {
    padding: 28px;
    border: 1px solid rgba(148, 181, 224, 0.2);
    border-radius: 18px;
    background: rgba(10, 25, 49, 0.92);
}

.sf-public-field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.sf-public-field label,
.sf-public-check {
    color: #d8e4f1;
    font-size: 13px;
    font-weight: 850;
}

.sf-public-field input,
.sf-public-field select,
.sf-public-field textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(148, 181, 224, 0.28);
    border-radius: 10px;
    background: rgba(3, 9, 20, 0.58);
    color: #fff;
    padding: 11px 12px;
    font: inherit;
}

.sf-public-field textarea {
    min-height: 150px;
    resize: vertical;
}

.sf-public-field p,
.sf-public-error {
    margin: 4px 0 0;
    color: #ffd0d0;
    font-size: 12px;
}

.sf-public-check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 10px 0 18px;
}

.sf-public-submit {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #2d92ff, #1657da);
    color: #fff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 1080px) {
    .sv-featured-grid,
    .sv-grid,
    .se-course-grid,
    .se-detail-layout,
    .sf-form-page__layout {
        grid-template-columns: 1fr;
    }

    .se-course-card {
        grid-template-columns: 1fr;
    }
}
