:root {
    --bg: #232f36;
    --bg-deep: #1b252b;
    --panel: rgba(255, 255, 255, 0.03);
    --gold: #b4760e;
    --gold-soft: #c98718;
    --text: #f5f1e8;
    --muted: rgba(245, 241, 232, 0.72);
    --line: rgba(180, 118, 14, 0.22);
    --white-line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
}

.hermes-page {
    background: #232f36;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 20px 40px;
}

.overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    width: 100%;
    text-align: center;
}

.hero-logo {
    width: min(380px, 82vw);
    display: block;
    margin: 0 auto 18px;
    filter: none;
}

.eyebrow,
.section-kicker {
    color: var(--gold-soft);
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    margin-bottom: 0;
}

.subtext {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.75;
}

.cta-group {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn,
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.25s ease;
    border: 1px solid var(--line);
}

.btn-gold {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

    .btn-gold:hover,
    .card-btn:hover {
        transform: translateY(-2px);
        background: var(--gold-soft);
        border-color: var(--gold-soft);
        color: #111;
    }

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    backdrop-filter: blur(6px);
}

    .btn-outline:hover {
        transform: translateY(-2px);
        border-color: var(--gold-soft);
        color: var(--gold-soft);
    }

.pricing-section,
.about-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 20px;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 42px;
}

    .section-header h2,
    .about-content h2 {
        margin-top: 14px;
        font-size: clamp(30px, 4.5vw, 52px);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    align-items: start;
}

.price-card {
    background: var(--panel);
    border: 1px solid var(--white-line);
    border-radius: 15px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

    .price-card.exclusive {
        border-color: rgba(180, 118, 14, 0.35);
        background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(180,118,14,0.08));
    }

.plan-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.plan-top h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.plan-desc {
    color: var(--muted);
    line-height: 1.7;
}

.price-line {
    margin: 28px 0 24px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price {
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-soft);
    letter-spacing: -0.04em;
}

.period {
    color: var(--muted);
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

    .feature-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 14px;
        color: var(--text);
        line-height: 1.65;
    }

        .feature-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }

.card-btn {
    width: 100%;
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.about-grid-reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.about-image-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about-image-wrap-right {
    justify-content: flex-end;
}

.about-image-left {
    width: min(430px, 100%);
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.about-image-right {
    width: min(520px, 100%);
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 12px;
    font-size: 17px;
}



@media (max-width: 992px) {
    .pricing-grid,
    .about-grid,
    .about-grid-reverse {
        grid-template-columns: 1fr;
    }

    .about-image-wrap,
    .about-image-wrap-right {
        justify-content: center;
    }

    .about-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 38px 18px 28px;
    }

    .hero-logo {
        width: min(300px, 84vw);
        margin-bottom: 14px;
    }

    .eyebrow,
    .section-kicker {
        font-size: 11px;
        letter-spacing: 0.24em;
    }

    .subtext,
    .about-content p,
    .plan-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .btn,
    .card-btn {
        width: 100%;
        max-width: 320px;
    }

    .pricing-section,
    .about-section {
        padding: 36px 18px;
    }

    .price-card {
        padding: 28px 22px;
        border-radius: 15px;
    }

    .plan-top h3 {
        font-size: 28px;
    }

    .price {
        font-size: 44px;
    }
}


  

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 16px 18px;
    margin-top: 10px;
    text-align: center;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.footer-center-title {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-subtext {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.footer-flag {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px 12px 16px;
    }

    .footer-center-title {
        font-size: 17px;
    }

    .footer-subtext {
        font-size: 15px;
    }

    .footer-flag {
        width: 20px;
        height: 20px;
    }

    .footer-title-row {
        gap: 8px;
    }
}

.hero-typed-title {
    font-size: clamp(42px, 7vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 18px;
    min-height: 1.15em;
}

#typed-text {
    color: var(--text);
}

.typed-cursor {
    color: var(--gold-soft);
    display: inline-block;
    margin-left: 4px;
    animation: blinkCursor 0.9s steps(1) infinite;
}

@keyframes blinkCursor {
    0%, 50% {
        opacity: 1;
    }

    50.01%, 100% {
        opacity: 0;
    }
}

.scroll-top-btn {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #c98718, #b4760e);
    color: #111;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
    z-index: 10001;
}

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        transform: translateY(-2px);
    }

.feature-list li.feature-highlight {
    color: var(--gold-soft);
    font-size: 16px;
    font-weight: 700;
}

    .feature-list li.feature-highlight::before {
        background: var(--gold-soft);
    }

.lang-switcher {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10050;
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(8px);
}

    .lang-btn:hover {
        border-color: var(--gold-soft);
        transform: translateY(-2px);
    }

    .lang-btn.active {
        border-color: var(--gold);
        box-shadow: 0 0 0 2px rgba(180, 118, 14, 0.22);
    }

.lang-flag {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 16px 18px;
    margin-top: 10px;
    text-align: center;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.footer-center-title {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-subtext {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.footer-flag {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 38px 18px 28px;
    }

    .hero-logo {
        width: min(300px, 84vw);
        margin-bottom: 14px;
    }

    .eyebrow,
    .section-kicker {
        font-size: 11px;
        letter-spacing: 0.24em;
    }

    .subtext,
    .about-content p,
    .plan-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .btn,
    .card-btn {
        width: 100%;
        max-width: 320px;
    }

    .pricing-section,
    .about-section {
        padding: 36px 18px;
    }

    .price-card {
        padding: 28px 22px;
        border-radius: 15px;
    }

    .plan-top h3 {
        font-size: 28px;
    }

    .price {
        font-size: 44px;
    }

    .scroll-top-btn {
        display: none !important;
    }

    .lang-switcher {
        top: 12px;
        right: 12px;
        gap: 6px;
    }

    .lang-btn {
        width: 40px;
        height: 40px;
    }

    .lang-flag {
        width: 20px;
        height: 20px;
    }

    .site-footer {
        padding: 20px 12px 16px;
    }

    .footer-center-title {
        font-size: 17px;
    }

    .footer-subtext {
        font-size: 15px;
    }

    .footer-flag {
        width: 20px;
        height: 20px;
    }

    .footer-title-row {
        gap: 8px;
    }
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hermes-chat-captcha-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

    .hermes-chat-captcha-wrap .hermes-captcha {
        margin: 0;
    }