* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #07110c;
    --bg-2: #0b1711;
    --card: rgba(255, 255, 255, 0.07);
    --card-2: rgba(255, 255, 255, 0.05);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f4fff7;
    --muted: #b9cbbf;
    --accent: #84ff9a;
    --accent-2: #27d27a;
    --dark: #08140e;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 10%, rgba(39, 210, 122, 0.22), transparent 25%), radial-gradient(circle at 85% 15%, rgba(132, 255, 154, 0.14), transparent 24%), linear-gradient(160deg, #04100a 0%, #0a1812 45%, #04100a 100%);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.blur-orb {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    background: #1fff8b;
    top: 40px;
    left: -110px;
}

.orb-2 {
    background: #6dffbf;
    top: 520px;
    right: -120px;
}

.btn-app {
    text-align: center;
    width: 130px;
}

.btn,
.form button {
    padding: 10px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #071e10;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(132, 255, 154, .2);
    transition: .35s;
}
.a-btn-free{
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #071e10;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(132, 255, 154, .2);
    transition: .35s;
}
.btn:hover,
.form button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(132, 255, 154, .3);
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, .05);
}

.hero {
    position: relative;
    z-index: 1;
    padding: 80px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(132, 255, 154, .2);
    background: rgba(132, 255, 154, .08);
    color: #dbffe2;
    margin-bottom: 24px;
    font-size: 14px;
}

.hero h1 {
    font-size: 48px;
    line-height: .96;
    margin-bottom: 24px;
    max-width: 760px;
}

.hero h1 span {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(132, 255, 154, .22);
}

.hero p {
    font-size: 19px;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    padding: 22px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stat strong {
    display: block;
    font-size: 30px;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat span {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    min-height: 610px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: absolute;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.main-visual {
    width: 100%;
    max-width: 470px;
    height: 540px;
    padding: 22px;
    overflow: hidden;
}

.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.floating-card {
    padding: 18px 20px;
    min-width: 190px;
}

.floating-card small {
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

.floating-card strong {
    font-size: 24px;
    color: var(--accent);
}

.card-top {
    top: 8px;
    left: -26px;
}

.card-bottom {
    right: -14px;
    bottom: 46px;
}

section {
    position: relative;
    z-index: 1;
    padding: 50px 0 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: 48px;
    line-height: 1;
    max-width: 650px;
}

.section-head p {
    max-width: 480px;
    color: var(--muted);
}

.services {
    display: grid;
    gap: 20px;
}

.services {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: .35s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(132, 255, 154, .28);
}

.icon-title {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.icon img {
    width: 60px;
    height: 60px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.card p,
.card li {
    color: var(--muted);
    font-size: 15px;
}

.about {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.about-image,
.about-text {
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--card-2);
}

.about-image img {
    height: 720px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.about-text {
    padding: 34px;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 22px;
    line-height: 1;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 17px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.point {
    display: flex;
    gap: 15px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--line);
}

.point strong {
    font-size: 35px;
    color: var(--accent);
}

.catalog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(132, 255, 154, .3);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: bold;
}

.catalog-btn {
    text-align: center;
    margin-top: 30px;
}

.calc-section {
    padding: 50px 0 0;
}

.calc-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.calc-left,
.calc-right {
    height: 100%;
}

.calc-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-row label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--muted);
}

.calc-row select,
.calc-row input[type="range"] {
    width: 100%;
}

.calc-row select {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    outline: none;
    font-size: 15px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.calc-row select option {
    color: #000;
}

.calc-row input[type="range"] {
    accent-color: var(--accent);
}

.range-value {
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
    color: var(--accent);
}

.auto-type-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.auto-type-box span {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: bold;
    color: var(--accent);
}

.auto-type-box small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.result-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(132, 255, 154, 0.16), transparent 30%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.result-card strong#totalPrice {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    color: var(--accent);
}

.result-card p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 15px;
}

.result-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.result-info div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
}

.result-info span {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--muted);
}

.result-info b {
    font-size: 20px;
    color: var(--text);
}

.btn-calc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.btn-calc .btn1 {
    padding: 10px;
    border-radius: 99px;
    border: 1px solid var(--line);
    box-shadow: none;
    color: var(--text);
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-calc .btn1:hover {
    transform: translateY(-3px);
    border-color: rgba(132, 255, 154, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.btn-calc .btn2 {
    padding: 10px;
    border-radius: 99px;
    border: 1px solid var(--line);
    box-shadow: none;
    color: var(--text);
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #071e10;
    box-shadow: rgba(132, 255, 154, 0.2) 0px 12px 30px;
}

.btn-calc .btn2:hover {
    transform: translateY(-3px);
}

.trial-offer {
    padding: 30px 0 50px;
    position: relative;
    overflow: hidden;
}

.trial-free {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.trial-free-content {
    position: relative;
    z-index: 2;
}

.trial-mini {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(132, 255, 154, .10);
    border: 1px solid rgba(132, 255, 154, .22);
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 18px;
}

.trial-free-content h2 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 18px;
    max-width: 650px;
}

.trial-free-content h2 span {
    color: var(--accent);
}

.trial-free-content p {
    max-width: 560px;
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.trial-free-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.trial-free-points div {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--text);
    font-size: 14px;
}

.trial-free-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .9;
}

.glow-1 {
    width: 260px;
    height: 260px;
    background: rgba(132, 255, 154, .18);
    top: 40px;
    left: 40px;
}

.glow-2 {
    width: 180px;
    height: 180px;
    background: rgba(39, 210, 122, .16);
    bottom: 20px;
    right: 40px;
}

.trial-bubble {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
}

.trial-bubble.big {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(132, 255, 154, .30), rgba(255, 255, 255, .06));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trial-bubble.big strong {
    font-size: 64px;
    line-height: 1;
    color: var(--accent);
}

.trial-bubble.big span {
    margin-top: 8px;
    font-size: 16px;
    color: var(--text);
}

.trial-bubble.small {
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    font-size: 14px;
}

.bubble-1 {
    top: 40px;
    right: 30px;
}

.bubble-2 {
    bottom: 40px;
    left: 10px;
}

.callback {
    padding: 0 0 60px;
    position: relative;
}

.callback-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.95fr;
    gap: 34px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: radial-gradient(circle at top left, rgba(132, 255, 154, 0.12), transparent 32%), linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.callback-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    top: -80px;
    background: radial-gradient(circle, rgba(132, 255, 154, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.callback-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.callback-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(132, 255, 154, 0.25);
    background: rgba(132, 255, 154, 0.08);
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 18px;
}

.callback-left h2 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--text);
}

.callback-left h2 span {
    color: var(--accent);
}

.callback-left p {
    max-width: 560px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.callback-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.callback-feature {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.callback-feature strong {
    display: block;
    color: var(--text);
    font-size: 20px;
    margin-bottom: 6px;
}

.callback-feature span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.callback-right {
    position: relative;
    z-index: 1;
}

.callback-form {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: rgba(6, 16, 11, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-top-text {
    margin-bottom: 22px;
}

.form-top-text h3 {
    font-size: 28px;
    color: var(--text);
    margin-bottom: 8px;
}

.form-top-text p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
}

.callback-form input {
    width: 100%;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0 18px;
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: 0.25s ease;
}

.callback-form input::placeholder {
    color: #93a79a;
}

.callback-form input:focus {
    border-color: rgba(132, 255, 154, 0.45);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(132, 255, 154, 0.08);
}

.callback-submit {
    margin-top: 8px;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #06210f;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 18px 35px rgba(39, 210, 122, 0.22);
}

.callback-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(39, 210, 122, 0.28);
}

.callback .form-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

footer {
    border-top: 1px solid var(--line);
    padding: 26px 0 34px;
    position: relative;
    z-index: 1;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
}

.contacts {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contacts img {
    width: 30px;
    height: 30px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.form-note.success {
    color: var(--accent);
}

.form-note.error {
    color: #ff8b8b;
}

@media (max-width: 1100px) {

    .hero-grid,
    .about,
    .cta-box,
    .catalog-cards {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        min-height: 520px;
    }

    .cta-box {
        padding: 34px;
    }
    .card-top {
        left: 5px;
    }
}

@media (max-width: 900px) {

    .hero {
        padding-top: 30px;
    }

    .card-bottom {
        right: 0;
        bottom: 10px;
    }
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .services{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .callback-left h2,
    .cta-box h2,
    .trial-free-content h2,
    .section-head h2,
    .about-text h2 {
        font-size: 32px;
    }

    .card h3 {
        font-size: 24px;
    }

    .container {
        width: min(100% - 24px, 1200px);
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 30px 0 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .stat {
        padding: 15px 22px;
    }

    .stat strong {
        margin-bottom: 0;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 30px 0;
    }


    .main-visual {
        height: 430px;
        padding: 14px;
    }

    .hero-visual {
        min-height: 460px;
    }

    .floating-card {
        min-width: 160px;
        padding: 14px 16px;
    }

    .cta-box {
        padding: 26px 20px;
    }

    .about-text {
        padding: 24px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
    }

    .calc-section {
        padding: 30px 0 0;
    }

    .calc-box {
        padding: 20px;
        border-radius: 24px;
    }

    .calc-row {
        border-radius: 20px;
    }

    .result-card {
        padding: 22px;
    }

    .result-info {
        grid-template-columns: 1fr;
    }

    .btn-calc {
        grid-template-columns: 1fr;
    }

    .btn-calc a {
        min-height: 46px;
    }

    .trial-offer {
        padding: 50px 0;
    }

    .trial-bubble.big {
        width: 190px;
        height: 190px;
    }

    .trial-bubble.big strong {
        font-size: 48px;
    }

    .bubble-1,
    .bubble-2 {
        margin-top: 12px;
    }

    .trial-free-visual {
        flex-direction: column;
        gap: 12px;
    }

    .callback {
        padding: 0 0 30px;
    }

    .callback-box {
        padding: 22px;
        border-radius: 24px;
        gap: 20px;
    }

    .callback-form {
        padding: 20px;
        border-radius: 22px;
    }

    .form-top-text h3 {
        font-size: 24px;
    }

    .callback-form input,
    .callback-submit {
        height: 54px;
        border-radius: 16px;
    }

    .card-top {
        left: 0;
    }
}

@media (max-width: 980px) {
    .callback-box {
        grid-template-columns: 1fr;
    }

    .callback-features {
        grid-template-columns: 1fr;
    }

    .trial-free {
        grid-template-columns: 1fr;
    }

    .trial-free-visual {
        min-height: 300px;
    }

    .calc-box {
        grid-template-columns: 1fr;
    }
}