/* #region Configuration */

:root {
    --bg-body: #050505;
    --primary-green: #22C55E;
    --primary-green-rgb: 34, 197, 94;
    --primary-glow: #4ADE80;
    --danger-red: #FF1744;
    --danger-red-rgb: 255, 23, 68;
    --text-gray: #9CA3AF;
    --text-muted: #666;
    --border-subtle: rgba(255,255,255,0.05);
    --border-dark: #222;
    --border-mid: #333;
    --text-dim: #888;
}

/* #endregion */

/* #region Basic */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3 {
    line-height: 1.15;
    margin: 0;
}

h2.section-heading {
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* #endregion */

/* #region Utilities */

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

.u-center-block {
    margin-left: auto;
    margin-right: auto;
}

.u-flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.u-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.sub-header-styled {
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 25px;
    margin-bottom: 70px;
    display: block;
    opacity: 0.9;
    text-align: center;
}

/* #endregion */

/* #region Effects */

.noise-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    contain: strict;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #081a10 0%, #000000 80%);
    animation: bgBreath 8s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

@keyframes bgBreath {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.fade-up,
.immediate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

    .fade-up.visible,
    .immediate-fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

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

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

/* #endregion */

/* #region Navigation */

nav {
    padding: 22px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(2, 2, 2, 0.85);
    backdrop-filter: blur(15px);
    transform: translateY(-100%);
    animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: padding 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

    nav.nav--compact {
        padding: 15px 0;
    }

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

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

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

    .logo img {
        height: 32px;
        vertical-align: middle;
        margin-top: -5px;
        margin-right: 10px;
    }

    .logo i {
        font-family: 'Playfair Display';
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0;
        color: var(--primary-green);
        animation: biologicalHeartbeat 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
    }

@keyframes biologicalHeartbeat {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    4% {
        transform: scale(1.15);
        opacity: 1;
    }

    8% {
        transform: scale(1);
        opacity: 0.8;
    }

    12% {
        transform: scale(1.25);
        opacity: 1;
    }

    20% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    letter-spacing: 1px;
    font-size: 0.75rem;
    font-weight: 700;
    user-select: none;
}

    .lang-switch span {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 26px;
        padding: 0 10px;
        border-radius: 999px;
        cursor: pointer;
        color: var(--text-dim);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

        .lang-switch span:hover {
            color: #fff;
            background: rgba(255,255,255,0.05);
            transform: translateY(-1px);
        }

        .lang-switch span.active {
            color: #000;
            background: rgba(var(--primary-green-rgb), 0.95);
            box-shadow: 0 12px 28px rgba(var(--primary-green-rgb), 0.18);
            border-bottom: none;
        }

            .lang-switch span.active:hover {
                background: var(--primary-glow);
            }

@media (max-width: 768px) {
    .lang-switch {
        padding: 5px 8px;
        gap: 6px;
        font-size: 0.7rem;
    }

        .lang-switch span {
            min-width: 34px;
            height: 24px;
            padding: 0 9px;
        }
}

/* #endregion */

/* #region Hero */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-green-rgb), 0.08);
    color: var(--primary-green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(var(--primary-green-rgb), 0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.life-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 130%;
}

.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.6;
}

.token-stage {
    width: 260px;
    height: 260px;
    margin: 0 auto 40px;
    perspective: 1000px;
    position: relative;
}

.token-body {
    width: 100%;
    height: 100%;
    border-radius: 65px;
    background-color: #151515;
    background-image: linear-gradient(45deg, var(--border-dark) 25%, transparent 25%, transparent 75%, var(--border-dark) 75%, var(--border-dark)), linear-gradient(45deg, var(--border-dark) 25%, transparent 25%, transparent 75%, var(--border-dark) 75%, var(--border-dark));
    background-size: 10px 10px;
    transform: rotateX(25deg) rotateY(-15deg);
    box-shadow: 40px 50px 100px rgba(0,0,0,0.9), inset 0 0 0 2px rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatToken 7s ease-in-out infinite;
}

    .token-body::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 65px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.5) 100%);
        pointer-events: none;
    }

.sensor-rim {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--border-mid);
    background: var(--bg-body);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.led {
    width: 14px;
    height: 14px;
    background: var(--primary-green);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px var(--primary-green);
    animation: biologicalHeartbeat 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

    .led::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1px solid var(--primary-green);
        animation: ripple 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
    }

@keyframes floatToken {
    0%, 100% {
        transform: rotateX(25deg) rotateY(-15deg) translateY(0);
    }

    50% {
        transform: rotateX(30deg) rotateY(-10deg) translateY(-20px);
    }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
        border-width: 4px;
    }

    100% {
        width: 400%;
        height: 400%;
        opacity: 0;
        border-width: 0;
    }
}

/* #endregion */

/* #region Buttons */

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-green);
    color: #000;
    font-weight: 800;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 40px rgba(var(--primary-green-rgb), 0.15);
}

    .btn-main:hover {
        transform: translateY(-3px);
        background: var(--primary-glow);
        box-shadow: 0 20px 50px rgba(var(--primary-green-rgb), 0.4);
    }

/* #endregion */

/* #region Comparison */

.section-std {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
    background: #080808;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: rgba(255,255,255,0.02);
    padding: 35px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    .card.bad {
        border-top: 3px solid var(--danger-red);
    }

    .card.good {
        border-top: 3px solid var(--primary-green);
    }

.card-title {
    text-align: left;
    font-size: 1.1rem;
}

    .card-title svg {
        height: 16px;
        margin-right: 10px;
    }

.card.bad .card-title svg {
    fill: var(--danger-red);
}

.card.good .card-title svg {
    fill: var(--primary-green);
}

.card-text {
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: left;
    color: var(--text-muted);
}

.chart-box {
    --chart-scan-duration: 4s;
    height: 100px;
    background: #000;
    margin: 25px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-dark);
}

.line-flat {
    width: 100%;
    height: 1px;
    background: var(--border-mid);
    position: absolute;
    top: 50%;
}

.spike {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
    background: var(--danger-red);
    box-shadow: 0 0 20px var(--danger-red);
    animation: scanRed var(--chart-scan-duration) linear infinite;
}

@keyframes scanRed {
    0% {
        left: 105%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: -5%;
        opacity: 0;
    }
}

.ekg-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ekg-track {
    display: flex;
    width: 200%;
    height: 100%;
    animation: scrollEKG var(--chart-scan-duration) linear infinite;
    will-change: transform;
}

.ekg-svg {
    width: 50%;
    height: 100%;
    display: block;
    flex-shrink: 0;
}

.ekg-path {
    fill: none;
    stroke: var(--primary-green);
    stroke-width: 2;
    stroke-linejoin: round;
    stroke-linecap: round;
}

@keyframes scrollEKG {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* #endregion */

/* #region Quote */

.quote-section {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-body);
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: #eee;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.brand-highlight {
    color: var(--primary-green);
    display: inline-block;
    position: relative;
    text-shadow: 0 0 20px rgba(var(--primary-green-rgb), 0.3);
    animation: textPulse 3s infinite;
}

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

    50% {
        opacity: 0.8;
        text-shadow: 0 0 30px rgba(var(--primary-green-rgb), 0.6);
    }
}

.quote-author a {
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 1px dotted var(--text-muted);
    padding-bottom: 2px;
}

    .quote-author a:hover {
        color: var(--primary-green);
        border-color: var(--primary-green);
    }

.quote-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* #endregion */

/* #region Certificate */

.seal-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    overflow: hidden;
}

.cert-container {
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1500px;
    margin-top: 40px;
}

.cert-paper {
    width: 100%;
    max-width: 700px;
    background-color: #0F0F0F;
    color: #fff;
    border: 1px solid var(--border-mid);
    box-shadow: 0 50px 150px rgba(0,0,0,0.9);
    position: relative;
    transform: rotateX(5deg);
    transition: transform 0.5s;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) {
    .cert-container:hover .cert-paper {
        transform: rotateX(0deg) scale(1.02);
    }
}

.cert-paper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cert-top {
    border-bottom: 1px solid var(--border-mid);
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.cert-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--primary-green);
    animation: blinkText 2s infinite;
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes blinkText {
    50% {
        opacity: 0.5;
    }
}

.cert-chart-area {
    width: 100%;
    height: 100px;
    background: rgba(var(--primary-green-rgb), 0.02);
    border: 1px solid rgba(var(--primary-green-rgb), 0.1);
    margin: 0 0 25px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 0.9rem;
}

.cert-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.cert-value {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
}

    .cert-value.mono {
        font-family: 'JetBrains Mono', monospace;
        color: var(--primary-green);
        font-size: 0.85rem;
    }

/* #endregion */

/* #region Pricing */

.pricing {
    padding: 80px 0 100px;
    background: #020202;
    border-top: 1px solid var(--border-subtle);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0;
    align-items: center;
}

    .pricing-grid.single {
        max-width: 500px;
        grid-template-columns: 1fr;
    }

.p-card {
    background: #0A0A0A;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-dark);
}

    .p-card.basic {
        padding: 35px;
    }

        .p-card.basic:hover {
            border-color: #444;
        }

    .p-card.signature {
        padding: 45px;
        border: 1px solid var(--primary-green);
        background: linear-gradient(180deg, rgba(var(--primary-green-rgb), 0.05) 0%, #0A0A0A 100%);
        transform: scale(1.03);
        z-index: 2;
        box-shadow: 0 0 40px rgba(var(--primary-green-rgb), 0.1);
    }

        .p-card.signature:hover {
            box-shadow: 0 0 60px rgba(var(--primary-green-rgb), 0.2);
        }

.p-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-subtle);
}

.p-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dim);
}

.p-card.signature .p-name {
    color: var(--primary-green);
}

.p-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .p-price .old-price {
        font-size: 1.1rem;
        text-decoration: line-through;
        color: #555;
        font-weight: 400;
        margin-bottom: 5px;
    }

    .p-price small {
        font-size: 0.9rem;
        color: #999;
        font-weight: 400;
    }

.bonus-highlight {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(var(--primary-green-rgb), 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    animation: glowText 3s infinite;
}

@keyframes glowText {
    0%, 100% {
        box-shadow: 0 0 10px rgba(var(--primary-green-rgb), 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(var(--primary-green-rgb), 0.3);
    }
}

.p-features {
    list-style: none;
    margin-bottom: 30px;
}

    .p-features li {
        margin-bottom: 12px;
        font-size: 0.9rem;
        color: #ccc;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .p-features li i {
            width: 25px;
            text-align: center;
            flex-shrink: 0;
        }

    .p-features .icon svg {
        height: 15px;
        fill: #fff;
        margin-right: 5px;
    }

.p-card.signature li i {
    color: var(--primary-green);
}

.p-card.basic li i {
    color: var(--text-muted);
}

.p-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .p-btn.basic {
        border: 1px solid var(--border-mid);
        color: #fff;
        background: transparent;
    }

        .p-btn.basic:hover {
            background: #fff;
            color: #000;
            box-shadow: 0 0 20px rgba(255,255,255,0.3);
            transform: scale(1.02);
        }

    .p-btn.sig {
        background: var(--primary-green);
        color: #000;
        border: none;
        animation: pulseBtn 3s infinite;
    }

        .p-btn.sig:hover {
            background: var(--primary-glow);
            box-shadow: 0 0 30px rgba(var(--primary-green-rgb), 0.6);
            transform: scale(1.02);
        }

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-green-rgb), 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-green-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-green-rgb), 0);
    }
}

/* #endregion */

/* #region Order */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    pointer-events: none;
}

    .modal-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.modal-box {
    width: 95%;
    max-width: 600px;
    background: #080808;
    border: 1px solid var(--border-mid);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,1);
}

.modal-overlay.open .modal-box {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

    .close-modal:hover {
        color: var(--primary-green);
    }

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    letter-spacing: -0.02em;
}

.modal-info-list {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

    .info-item i {
        color: var(--primary-green);
        width: 30px;
        font-size: 1.1rem;
        text-align: center;
        margin-right: 10px;
    }

.highlight-name {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.input-field {
    width: 100%;
    padding: 18px;
    background: var(--bg-body);
    border: 1px solid var(--border-mid);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .input-field:focus {
        border-color: var(--primary-green);
        box-shadow: 0 0 15px rgba(var(--primary-green-rgb), 0.1);
    }

    .input-field.error {
        border-color: var(--danger-red);
        animation: shake 0.4s;
    }

.error-msg {
    color: var(--danger-red);
    font-size: 0.75rem;
    margin-top: 5px;
    display: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.input-field.error + .error-msg {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
}

    .checkbox-group input {
        margin-top: 4px;
        accent-color: var(--primary-green);
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    .checkbox-group.error {
        color: var(--danger-red);
        animation: shake 0.4s;
    }

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

    20%, 60% {
        transform: translateX(-5px);
    }

    40%, 80% {
        transform: translateX(5px);
    }
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-green);
    color: #000;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

    .btn-submit:hover {
        background: var(--primary-glow);
        box-shadow: 0 0 30px rgba(var(--primary-green-rgb), 0.4);
        transform: translateY(-2px);
    }

.success-view {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.checkmark-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.checkmark {
    width: 40px;
    height: 20px;
    border-left: 4px solid var(--primary-green);
    border-bottom: 4px solid var(--primary-green);
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    opacity: 0;
}

    .checkmark.draw {
        animation: checkDraw 0.6s 0.4s ease forwards;
    }

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkDraw {
    from {
        width: 0;
        height: 0;
        opacity: 0;
    }

    50% {
        width: 40px;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 40px;
        height: 20px;
        opacity: 1;
    }
}

.success-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.success-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* #endregion */

/* #region Footer */

footer {
    border-top: 1px solid #111;
    padding: 60px 0 30px;
    background: #000;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.f-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.f-brand {
    grid-column: 1 / 2;
}

.f-col h4 {
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color 0.2s, padding-left 0.2s;
}

    .f-links a:hover {
        color: var(--primary-green);
        padding-left: 5px;
    }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons i, .social-icons svg {
        color: var(--text-muted);
        width: 18px;
        height: 18px;
        cursor: pointer;
        transition: color 0.3s, fill 0.3s;
        font-size: 1.1rem;
    }

        .social-icons i:hover, .social-icons svg:hover {
            color: #fff;
            fill: #fff;
        }

.f-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
    text-align: center;
}

.imp-bar {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.imp-link {
    font-size: 0.7rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

    .imp-link:hover {
        color: #fff;
    }

/* #endregion */

/* #region Mobile */

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }

    h2 {
        line-height: 1.15 !important;
    }

    .hero {
        padding-top: 100px;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .section-std, .seal-section, .pricing, .quote-section {
        padding: 60px 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .token-stage {
        transform: scale(0.85);
        margin-bottom: 30px;
    }

    .btn-main {
        padding: 18px 30px;
        width: 90%;
        justify-content: center;
    }

    .comp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 25px;
    }

    .cert-container {
        perspective: none;
    }

    .cert-paper {
        transform: none !important;
        padding: 25px;
        width: 100%;
        min-height: auto;
    }

    .cert-title {
        font-size: 1.1rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cert-status {
        font-size: 0.65rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .p-card.signature {
        transform: none;
        border: 1px solid var(--primary-green);
    }

    .modal-box {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .f-top {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .f-brand .logo, .f-brand p {
        display: none;
    }

    .f-brand {
        order: 3;
        display: flex;
        justify-content: center;
        margin-top: 0;
    }

    .f-col {
        text-align: center;
    }

        .f-col h4 {
            margin-bottom: 15px;
        }

    .imp-bar {
        gap: 8px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .imp-link {
        margin-bottom: 0;
        font-size: 0.65rem;
    }
}

/* #endregion */
