/* #region Configuration */

:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --ivory: #F0F0EB;
    --gold: #e7d4aa;
    --gold-dark: #997B2F;
    --error: #e04f4f;
    --light-pos: 50%;
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
    --container: 1200px;
}

/* #endregion */

/* #region Basic */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Marcellus', serif;
    background-color: var(--bg);
    color: var(--ivory);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
}

button {
    font-family: 'Marcellus', serif;
}

/* #endregion */

/* #region Gold Effect */

.sync-gold {
    color: var(--gold);
    background: linear-gradient(110deg, var(--gold-dark) 0%, var(--gold) 40%, #FFFFFF 50%, var(--gold) 60%, var(--gold-dark) 100%);
    background-size: 200% 100%;
    background-position: var(--light-pos) 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

i.sync-gold {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* #endregion */

/* #region Utilities */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-top: 15px;
}

.label-left {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

.sub-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.8;
}

p {
    color: #999;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 1.05rem;
}

.btn-main {
    padding: 24px 60px;
    background: transparent;
    border: 1px solid #333;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--gold);
    transition: all 0.5s var(--ease-luxury);
}

    .btn-main:hover {
        border-color: var(--gold);
        background-color: rgba(212, 175, 55, 0.03);
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.8);
        transform: translateY(-2px);
    }

.btn-small {
    padding: 15px 40px;
    font-size: 0.9rem;
    border: 1px solid #222;
    color: #888;
}

    .btn-small:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* #endregion */

/* #region Animations */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-luxury);
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

.immediate-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

    .immediate-reveal.active {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }

.hero-content.reveal.active {
    transition-delay: 0.2s;
}

.card-stage.reveal.active {
    transition-delay: 0.4s;
}

.reveal.active .q-card:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active .q-card:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active .q-card:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.active .pricing-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active .pricing-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active .pricing-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.active .pricing-list li:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal.active .journal-container {
    transition-delay: 0.2s;
}

.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

    .blur-in.active {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }

.slide-in {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .slide-in.active {
        opacity: 1;
        transform: translateX(0);
    }

/* #endregion */

/* #region Header */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    background: rgba(3,3,3,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    animation: fadeInDown 1.2s var(--ease-luxury) forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

    .logo a {
        text-decoration: none;
        color: #fff;
    }

.lang-switch {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
}

    .lang-switch a {
        color: #666;
    }

    .lang-switch span.active {
        color: var(--gold);
    }

/* #endregion */

/* #region Hero */

.dot-blink {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: blink 2s infinite;
    box-shadow: 0 0 8px var(--gold);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #1a1a1a 0%, #050505 80%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-h1 {
    font-size: clamp(3.5rem, 6.5vw, 5.5rem);
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-availability {
    margin-top: 25px;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-stage {
    width: 320px;
    height: 500px;
    perspective: 1200px;
    margin: 0 auto;
    position: relative;
}

.card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    background: #090909;
    border-radius: 10px;
    border: 1px solid #222;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.9);
}

.card-art {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

/* #endregion */

/* #region Problem */

section {
    padding: 160px 0;
    border-top: 1px solid #111;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.lead-text {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
    text-transform: none;
}

.text-body {
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.benefit-list {
    list-style: none;
    margin-top: 10px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
}

.reveal.active .benefit-item {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s var(--ease-luxury);
}

.b-icon {
    font-size: 1.4rem;
    margin-top: 3px;
}

.b-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: block;
    text-transform: none;
}

.b-desc {
    margin: 0;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
}

/* #endregion */

/* #region Decks */

.decks-section {
    background: #080808;
}

.decks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.deck-showcase {
    border: 1px solid #222;
    padding: 60px 40px;
    text-align: center;
    background: #0a0a0a;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.reveal.active .deck-showcase {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s var(--ease-luxury);
}

    .reveal.active .deck-showcase:nth-child(2) {
        transition-delay: 0.2s;
    }

.deck-showcase:hover {
    border-color: var(--gold);
    background: #0e0e0e;
    transform: translateY(-5px);
}

.deck-visual {
    height: 220px;
    width: 150px;
    margin: 0 auto 40px;
    position: relative;
}

.d-card-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.deck-showcase:hover .d-card-svg:nth-child(1) {
    transform: rotate(-5deg) translateX(-10px);
}

.deck-showcase:hover .d-card-svg:nth-child(2) {
    transform: rotate(5deg) translateX(10px);
}

.deck-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    display: block;
    text-transform: none;
}

.deck-desc {
    font-size: 1rem;
    color: #888;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

/* #endregion */

/* #region Quality */

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.q-card {
    background: #080808;
    padding: 0 0 50px 0;
    border: 1px solid #1a1a1a;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: border-color 0.1s linear, transform 0.8s var(--ease-luxury);
}

.reveal.active .q-card {
    opacity: 1;
    transform: translateY(0);
}

.q-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.q-img-wrap {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.q-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: block;
    transition: transform 1.2s var(--ease-luxury), filter 1.2s var(--ease-luxury);
    filter: brightness(0.6);
}

.q-card:hover .q-img {
    transform: scale(1.08);
    filter: brightness(1);
}

.q-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: none;
}

.q-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    padding: 0 30px;
    color: #999;
}

/* #endregion */

/* #region Reviews */

.reviews-section {
    background: #050505;
    text-align: center;
}

.editorial-quote {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 40px;
    font-style: italic;
    position: relative;
}

    .editorial-quote::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(110deg, var(--gold-dark), var(--gold), var(--gold-dark));
        margin: 40px auto 0;
    }

.quote-author-block {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: #888;
}

    .quote-author-block span {
        font-weight: 600;
    }

/* #endregion */

/* #region Pricing */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: none;
    color: #fff;
}

.pricing-list {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
}

.reveal.active .pricing-list {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s var(--ease-luxury);
}

.pricing-list li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    color: #ccc;
    align-items: center;
    font-size: 1.05rem;
}

.pricing-list i {
    color: var(--gold);
    font-size: 0.9rem;
}

.price-box {
    text-align: center;
    border: 1px solid var(--gold);
    padding: 60px;
    background: #0a0a0a;
    box-shadow: 0 0 80px rgba(212,175,55,0.05);
    position: relative;
}

.price-main {
    font-size: 4.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.price-sub {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 30px;
}

.guarantee-box {
    margin-top: 25px;
    border-top: 1px solid #222;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.7;
}

.gb-item {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .gb-item i {
        color: var(--gold);
    }

/* #endregion*/

/* #region Blog */

.journal-section {
    padding-top: 160px;
}

.journal-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 120px;
}

.journal-main {
    position: relative;
    height: 100%;
    border: 1px solid #222;
    overflow: hidden;
    text-decoration: none;
    group: hover;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.journal-small {
    border: 1px solid #222;
    overflow: hidden;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.reveal.active .journal-main, .reveal.active .journal-small {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s var(--ease-luxury);
}

.art-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.8s var(--ease-luxury);
    filter: brightness(0.8);
}

    .art-img img {
        width: 100%;
    }

.journal-main:hover .art-img, .journal-small:hover .art-img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.art-tag {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.art-title {
    color: #fff;
    line-height: 1.3;
    text-transform: none;
    margin: 20px 25px 25px 25px;
    transition: color linear 0.3s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.journal-small:hover .art-title {
    color: var(--gold);
}

.journal-main .art-title {
    font-size: 2rem;
}

.journal-small .art-title {
    font-size: 1.3rem;
}

/* #endregion */

/* #region Footer */

footer {
    padding: 100px 0 0;
    border-top: 1px solid #222;
    background: #020202;
    font-size: 0.9rem;
    color: #666;
}

.footer-content {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s var(--ease-luxury);
}

.reveal.active .footer-content {
    opacity: 1;
    transform: translateY(0);
}

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: 0 auto;
    margin-right: 0 auto;
}

.f-brand-name {
    color: #fff;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 15px;
}

.f-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    max-width: 300px;
}

.f-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.f-col ul {
    list-style: none;
    padding: 0;
}

.f-col li {
    margin-bottom: 12px;
}

.f-col a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.85rem;
}

    .f-col a:hover {
        color: var(--gold);
        padding-left: 5px;
    }

.socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .socials a {
        font-size: 1.3rem;
        color: #fff;
        transition: 0.3s;
        padding: 0;
    }

        .socials a:hover {
            color: var(--gold);
            transform: scale(1.2);
            padding: 0;
        }

.f-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-top: 1px solid #1a1a1a;
    padding: 40px 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-bar {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

    .projects-bar a {
        color: #555;
        text-decoration: none;
        font-size: 0.85rem;
        transition: 0.3s;
    }

        .projects-bar a:hover {
            color: var(--gold);
            opacity: 1;
        }

.copyright a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

    .copyright a:hover {
        color: var(--gold);
    }

/* #endregion */

/* #region Order */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal {
    background: #0b0b0b;
    border: 1px solid #222;
    padding: 40px 45px;
    width: 95%;
    max-width: 600px;
    max-height: 95dvh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8);
    transform: translateY(100px) scale(0.95);
    opacity: 0;
    transition: all 0.6s var(--ease-luxury);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #555;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s var(--ease-out);
    border-radius: 50%;
}

    .close-btn svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        stroke-width: 2;
    }

    .close-btn:hover {
        color: #fff;
        transform: rotate(90deg);
        background: rgba(255,255,255,0.05);
    }

.modal-header {
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.inp-line {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    transition: 0.4s;
    border-radius: 0;
}

    .inp-line:focus {
        border-bottom-color: var(--gold);
    }

    .inp-line::placeholder {
        color: #444;
        transition: 0.3s;
    }

    .inp-line:focus::placeholder {
        color: #666;
        transform: translateY(-10px);
        font-size: 0.7rem;
    }

    .inp-line.error {
        border-bottom-color: var(--error);
    }

.error-msg {
    color: var(--error);
    font-size: 0.75rem;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.input-group.invalid .error-msg {
    max-height: 20px;
    opacity: 1;
    transform: translateY(0);
}

.delivery-toggle {
    display: flex;
    background: #111;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 25px;
}

.dt-opt {
    flex: 1;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

    .dt-opt.active {
        background: #222;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        background-image: linear-gradient(110deg, var(--gold-dark), var(--gold), #fff, var(--gold), var(--gold-dark));
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        background-position: var(--light-pos) 0;
    }

#delContent {
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s ease;
    overflow: hidden;
    opacity: 1;
}

.map-placeholder {
    width: 100%;
    height: 220px;
    background: #111;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.map-btn {
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: rgba(0,0,0,0.8);
    cursor: pointer;
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

    .map-btn:hover {
        background: var(--gold);
        color: #000;
    }

.check-group {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #777;
    cursor: pointer;
    position: relative;
}

    .check-group input {
        display: none;
    }

    .check-group a {
        color: #777;
    }

.check-box {
    width: 18px;
    height: 18px;
    border: 1px solid #444;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    transition: 0.2s;
}

.check-group input:checked + .check-box {
    border-color: var(--gold);
}

.check-box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: 0;
    transform: scale(0.5);
    transition: 0.2s;
}

.check-group input:checked + .check-box::after {
    opacity: 1;
    transform: scale(1);
}

.check-group.invalid {
    color: var(--error);
}

    .check-group.invalid .check-box {
        border-color: var(--error);
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

#successView {
    display: none;
    text-align: center;
    animation: fadeInDown 0.5s forwards;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check-svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    stroke-width: 3;
    fill: none;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

.check-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.draw-check .check-path {
    animation: dash 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
}

@keyframes dash {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.success-lead {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* #endregion */

/* #region Mobile */

@media (max-width: 900px) {
    .logo {
        font-size: 1.1rem;
        letter-spacing: 0.0em;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .card-stage {
        order: 1;
        margin: 0 auto 20px;
        width: 260px;
        height: 380px;
        margin-bottom: 20px;
    }

    .hero-h1 {
        font-size: 2.5rem;
        line-height: 1.25em;
    }

    .hero-desc {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .label-left {
        padding-left: 0;
        border: none;
        display: block;
        margin: 0 auto 20px;
    }

    .btn-main {
        font-size: 1.1rem;
        padding: 24px;
        width: 100%;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .sub-label {
        text-align: center;
        display: block;
        margin: 0 auto 20px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lead-text {
        text-align: center;
    }

    .text-body {
        text-align: center;
    }

    .decks-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .q-img {
        filter: grayscale(0%) brightness(1) !important;
        transform: scale(1) !important;
    }

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

    .editorial-quote {
        font-size: 1.4rem;
        padding: 0 15px;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .pricing-info {
        order: 1;
        text-align: center;
    }

        .pricing-info .section-label {
            text-align: center !important;
            display: block;
            margin-bottom: 20px;
        }

    .price-box {
        order: 2;
        padding: 40px 20px;
        margin-top: 10px;
    }

    .pricing-list li {
        justify-content: center;
        margin-bottom: 10px;
    }

    .guarantee-box i {
        display: none;
    }

    .guarantee-box {
        gap: 15px;
        font-size: 0.7rem;
    }

    .price-main {
        font-size: 3.5rem;
    }

    .journal-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
        margin-bottom: 40px;
    }

    .journal-main,
    .journal-small {
        height: 300px;
        width: 100%;
    }

    .journal-side {
        height: auto;
        gap: 30px;
    }

    .f-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
        gap: 20px;
    }

    .f-col:nth-child(1) {
        grid-column: span 2 !important;
        margin-bottom: 20px;
    }

    .f-col:nth-child(2), .f-col:nth-child(3) {
        grid-column: span 1 !important;
    }

    .f-col:nth-child(4) {
        grid-column: span 2 !important;
        margin-top: 20px;
    }

    .f-desc {
        margin: 0 auto 20px;
    }

    .socials {
        justify-content: center;
        gap: 24px;
    }

    .f-bottom {
        padding: 30px 0 30px;
    }

    .projects-bar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        line-height: 1.4;
        justify-content: center;
    }

        .projects-bar a {
            margin: 0;
        }

    .modal {
        padding: 25px 20px;
        width: 95%;
        max-height: 95dvh;
        margin: auto;
        overflow-y: auto;
    }

    .delivery-toggle {
        flex-direction: column;
        gap: 5px;
    }
}

/* #endregion */
