.sm-page {
    --sm-bg: #04101c;
    --sm-bg-2: #071c32;
    --sm-panel: rgba(7, 20, 36, 0.9);
    --sm-panel-2: rgba(9, 29, 51, 0.94);
    --sm-panel-3: rgba(255, 255, 255, 0.055);
    --sm-line: rgba(129, 196, 255, 0.18);
    --sm-line-strong: rgba(67, 170, 255, 0.42);
    --sm-text: #f5faff;
    --sm-muted: #b9c9d8;
    --sm-blue: #1b99ff;
    --sm-cyan: #78d8ff;
    --sm-green: #7dff99;
    --sm-gold: #ffd166;
    --sm-danger: #ff6b6b;
    --sm-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
    --sm-soft-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
    color: var(--sm-text);
    background:
        radial-gradient(circle at 8% 0%, rgba(35, 149, 255, 0.23), transparent 30%),
        radial-gradient(circle at 86% 6%, rgba(120, 216, 255, 0.14), transparent 28%),
        radial-gradient(circle at 50% 48%, rgba(25, 93, 160, 0.14), transparent 38%),
        linear-gradient(180deg, #03101d 0%, #06192c 48%, #020a12 100%);
    padding: 46px 0 92px;
}

.sm-page * {
    box-sizing: border-box;
}

.sm-shell {
    width: min(1340px, calc(100% - 32px));
    margin: 0 auto;
}

.sm-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 9px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(120, 216, 255, 0.28);
    background: rgba(27, 153, 255, 0.12);
    color: #d9f3ff;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sm-kicker--hot {
    border-color: rgba(125, 255, 153, 0.42);
    background: rgba(125, 255, 153, 0.12);
    color: #dfffe7;
}

.sm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    color: var(--sm-text);
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sm-btn:hover,
.sm-btn:focus-visible {
    transform: translateY(-2px);
}

.sm-btn:focus-visible,
.sm-product-card button:focus-visible,
.sm-gallery-card:focus-visible,
.sm-lightbox__close:focus-visible,
.sm-field input:focus,
.sm-field select:focus,
.sm-field textarea:focus {
    outline: 2px solid rgba(120, 216, 255, 0.72);
    outline-offset: 3px;
}

.sm-btn--primary {
    border-color: rgba(120, 216, 255, 0.55);
    background: linear-gradient(135deg, #159bff, #80e2ff);
    color: #03101c;
    box-shadow: 0 18px 40px rgba(27, 153, 255, 0.26);
}

.sm-btn--primary:hover,
.sm-btn--primary:focus-visible {
    box-shadow: 0 24px 50px rgba(27, 153, 255, 0.36);
}

.sm-btn--external {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ecf8ff;
}

.sm-btn--external:hover,
.sm-btn--external:focus-visible {
    border-color: rgba(125, 255, 153, 0.55);
    background: rgba(125, 255, 153, 0.1);
}

.sm-btn--product {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    border-color: rgba(125, 255, 153, 0.34);
    background: linear-gradient(135deg, rgba(125, 255, 153, 0.24), rgba(27, 153, 255, 0.16));
    color: #edfff2;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sm-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 0;
    min-height: 720px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--sm-line);
    background:
        linear-gradient(135deg, rgba(3, 16, 29, 0.98), rgba(6, 31, 55, 0.9)),
        var(--sm-panel);
    box-shadow: var(--sm-shadow);
}

.sm-hero:before {
    content: "";
    position: absolute;
    inset: -30% -10% auto auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 216, 255, 0.22), transparent 64%);
    filter: blur(4px);
    pointer-events: none;
}

.sm-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 62px clamp(26px, 4.8vw, 66px);
}

.sm-logo {
    width: min(380px, 90%);
    margin-bottom: 28px;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.42));
}

.sm-hero h1 {
    margin: 18px 0 18px;
    max-width: 790px;
    font-size: clamp(44px, 6.6vw, 86px);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.sm-lead {
    max-width: 690px;
    margin: 0;
    color: #e8f6ff;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.45;
}

.sm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sm-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.sm-pills span {
    display: inline-flex;
    align-items: center;
    padding: 10px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    color: #dceef9;
    font-size: 13px;
    line-height: 1.2;
}

.sm-hero__media {
    position: relative;
    min-height: 720px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: #03101d;
}

.sm-hero__media:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 16, 29, 0.72), rgba(3, 16, 29, 0.08) 34%, rgba(3, 16, 29, 0.05)),
        linear-gradient(180deg, rgba(3, 16, 29, 0.02), rgba(3, 16, 29, 0.5));
    pointer-events: none;
}

.sm-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sm-deal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
    gap: 24px;
    align-items: center;
    margin-top: 24px;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(125, 255, 153, 0.28);
    background:
        radial-gradient(circle at 92% 0%, rgba(125, 255, 153, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(9, 38, 58, 0.94), rgba(4, 15, 27, 0.94));
    box-shadow: var(--sm-soft-shadow);
}

.sm-deal h2 {
    margin: 16px 0 12px;
    max-width: 880px;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #effff3;
}

.sm-deal p {
    margin: 0;
    max-width: 820px;
    color: var(--sm-muted);
    line-height: 1.75;
}

.sm-deal__box {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(125, 255, 153, 0.32);
    background: rgba(125, 255, 153, 0.09);
}

.sm-deal__box strong {
    font-size: clamp(60px, 7vw, 100px);
    line-height: 0.88;
    letter-spacing: -0.08em;
    color: var(--sm-green);
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.sm-deal__box span {
    color: #e6fff0;
    line-height: 1.55;
}

.sm-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.sm-stats article {
    min-height: 126px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--sm-line);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: var(--sm-soft-shadow);
}

.sm-stats span {
    display: block;
    color: var(--sm-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sm-stats strong {
    display: block;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 29px);
    line-height: 1.05;
}

.sm-section {
    margin-top: 28px;
}

.sm-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 20px;
}

.sm-section-head h2,
.sm-why__copy h2,
.sm-inquiry__copy h2 {
    margin: 14px 0 0;
    max-width: 910px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.sm-section-head p,
.sm-why__copy p,
.sm-inquiry__copy p {
    margin: 0;
    max-width: 660px;
    color: var(--sm-muted);
    line-height: 1.75;
}

.sm-why {
    display: grid;
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
    align-items: stretch;
}

.sm-why__image,
.sm-price-visual,
.sm-gallery-card,
.sm-usecase-grid article,
.sm-product-card,
.sm-faq details,
.sm-form,
.sm-inquiry__copy {
    border: 1px solid var(--sm-line);
    background: var(--sm-panel);
    box-shadow: var(--sm-soft-shadow);
}

.sm-why__image {
    overflow: hidden;
    border-radius: 28px;
    min-height: 640px;
    cursor: zoom-in;
}

.sm-why__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.sm-why__image:hover img,
.sm-gallery-card:hover img,
.sm-price-visual:hover img {
    transform: scale(1.035);
}

.sm-why__copy {
    padding: 34px;
    border-radius: 28px;
    border: 1px solid var(--sm-line);
    background:
        radial-gradient(circle at 100% 0%, rgba(27, 153, 255, 0.18), transparent 28%),
        var(--sm-panel);
    box-shadow: var(--sm-soft-shadow);
}

.sm-why__copy p {
    margin-top: 16px;
}

.sm-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.sm-benefits article {
    min-height: 180px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.sm-benefits strong,
.sm-usecase-grid strong,
.sm-gallery-card strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.22;
}

.sm-benefits span,
.sm-usecase-grid p,
.sm-gallery-card span {
    display: block;
    margin-top: 10px;
    color: var(--sm-muted);
    line-height: 1.62;
    font-size: 14px;
}

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

.sm-product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    border-radius: 26px;
    flex-direction: column;
}

.sm-product-card__media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 230px;
    padding: 22px;
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.92), rgba(222, 232, 241, 0.92) 62%, rgba(188, 210, 231, 0.74));
}

.sm-product-card__media img {
    width: 100%;
    max-height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 20px 24px rgba(0, 20, 40, 0.2));
}

.sm-product-card__media span {
    position: absolute;
    left: 18px;
    top: 18px;
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: #005dbd;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(0, 36, 79, 0.2);
}

.sm-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.sm-product-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.sm-product-card p {
    margin: 12px 0 0;
    color: var(--sm-muted);
    line-height: 1.62;
    min-height: 68px;
}

.sm-specs {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
}

.sm-specs div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 10px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sm-specs dt {
    margin: 0;
    color: #78d8ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sm-specs dd {
    margin: 0;
    color: #ffffff;
    text-align: right;
    font-weight: 800;
}

.sm-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.sm-price-row div {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
}

.sm-price-row span {
    display: block;
    min-height: 32px;
    color: var(--sm-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sm-price-row strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: clamp(21px, 2.25vw, 30px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.sm-price-row__pilot {
    border-color: rgba(125, 255, 153, 0.35) !important;
    background: rgba(125, 255, 153, 0.09) !important;
}

.sm-price-row__pilot strong {
    color: var(--sm-green);
}

.sm-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sm-usecase-grid article {
    overflow: hidden;
    border-radius: 24px;
}

.sm-usecase-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    background: rgba(255, 255, 255, 0.08);
}

.sm-usecase-grid div {
    padding: 20px;
}

.sm-pricing {
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--sm-line);
    background:
        radial-gradient(circle at 10% 0%, rgba(120, 216, 255, 0.12), transparent 28%),
        rgba(255, 255, 255, 0.035);
    box-shadow: var(--sm-soft-shadow);
}

.sm-price-visual {
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    cursor: zoom-in;
    background: #e8f0f8;
}

.sm-price-visual img {
    width: 100%;
    height: auto;
    transition: transform 0.45s ease;
}

.sm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sm-gallery-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    cursor: zoom-in;
}

.sm-gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.sm-gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 64px 20px 18px;
    background: linear-gradient(180deg, transparent, rgba(1, 8, 15, 0.94));
}

.sm-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sm-faq details {
    overflow: hidden;
    border-radius: 20px;
}

.sm-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 22px;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.35;
}

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

.sm-faq summary:after {
    content: "+";
    float: right;
    color: var(--sm-cyan);
    font-size: 24px;
    line-height: 0.8;
}

.sm-faq details[open] summary:after {
    content: "−";
}

.sm-faq p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--sm-muted);
    line-height: 1.68;
}

.sm-inquiry {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 24px;
    align-items: start;
}

.sm-inquiry__copy {
    border-radius: 28px;
    padding: 30px;
}

.sm-inquiry__copy p {
    margin-top: 16px;
}

.sm-inquiry__copy img {
    width: 100%;
    margin-top: 24px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-form {
    border-radius: 28px;
    padding: 24px;
}

.sm-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sm-field {
    display: grid;
    gap: 8px;
}

.sm-field--full {
    grid-column: 1 / -1;
}

.sm-field span {
    color: #d9f3ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.sm-field input,
.sm-field select,
.sm-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(1, 8, 15, 0.72);
    color: #ffffff;
    padding: 13px 14px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sm-field select {
    min-height: 49px;
}

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

.sm-field input::placeholder,
.sm-field textarea::placeholder {
    color: #7f97aa;
}

.sm-field input:focus,
.sm-field select:focus,
.sm-field textarea:focus {
    border-color: rgba(120, 216, 255, 0.62);
    box-shadow: 0 0 0 4px rgba(120, 216, 255, 0.1);
    background: rgba(3, 15, 27, 0.88);
}

.sm-form__submit {
    width: 100%;
    margin-top: 16px;
}

.sm-form__status {
    min-height: 22px;
    margin-top: 12px;
    color: #d9f3ff;
    font-size: 14px;
}

.sm-lightbox[hidden] {
    display: none;
}

.sm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 6, 12, 0.88);
    backdrop-filter: blur(10px);
}

.sm-lightbox img {
    max-width: min(1180px, 96vw);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.64);
}

.sm-lightbox p {
    margin: 14px 0 0;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
}

.sm-lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 1180px) {
    .sm-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sm-hero__media {
        min-height: 560px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sm-stats,
    .sm-usecase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm-product-grid,
    .sm-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm-why,
    .sm-inquiry {
        grid-template-columns: 1fr;
    }

    .sm-why__image {
        min-height: 520px;
    }
}

@media (max-width: 780px) {
    .sm-page {
        padding-top: 28px;
    }

    .sm-shell {
        width: min(100%, calc(100% - 22px));
    }

    .sm-hero,
    .sm-deal,
    .sm-pricing,
    .sm-why__copy,
    .sm-why__image,
    .sm-inquiry__copy,
    .sm-form {
        border-radius: 20px;
    }

    .sm-hero__copy {
        padding: 34px 22px;
    }

    .sm-logo {
        width: 260px;
        max-width: 86%;
    }

    .sm-hero h1 {
        font-size: 42px;
        letter-spacing: -0.045em;
    }

    .sm-lead {
        font-size: 16px;
    }

    .sm-hero__actions .sm-btn,
    .sm-btn--product {
        width: 100%;
    }

    .sm-hero__media {
        min-height: 360px;
    }

    .sm-deal {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .sm-stats,
    .sm-product-grid,
    .sm-usecase-grid,
    .sm-gallery-grid,
    .sm-faq-grid,
    .sm-form__grid {
        grid-template-columns: 1fr;
    }

    .sm-section-head {
        display: block;
    }

    .sm-section-head p {
        margin-top: 12px;
    }

    .sm-why__copy,
    .sm-form,
    .sm-inquiry__copy,
    .sm-pricing {
        padding: 20px;
    }

    .sm-why__image {
        min-height: 420px;
    }

    .sm-benefits {
        grid-template-columns: 1fr;
    }

    .sm-product-card__media {
        min-height: 210px;
    }

    .sm-price-row {
        grid-template-columns: 1fr;
    }

    .sm-gallery-card img {
        height: 290px;
    }

    .sm-field--full {
        grid-column: auto;
    }
}

@media (max-width: 460px) {
    .sm-kicker {
        white-space: normal;
        line-height: 1.25;
    }

    .sm-hero h1 {
        font-size: 36px;
    }

    .sm-section-head h2,
    .sm-why__copy h2,
    .sm-inquiry__copy h2,
    .sm-deal h2 {
        font-size: 30px;
    }

    .sm-hero__media {
        min-height: 300px;
    }

    .sm-why__image {
        min-height: 340px;
    }

    .sm-specs div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .sm-specs dd {
        text-align: left;
    }
}
