:root {
    --bg-default: #050505;
    --bg-surface: #0f0f0f;
    --bg-surface-highlight: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    --accent-primary: #f29329;
    --accent-hover: #d97706;
    --border-default: #27272a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg-default);
    color: var(--text-primary);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: 'Barlow Condensed', sans-serif;
}

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

.section {
    padding: 96px 0;
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: transparent;
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.nav-scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.nav-links {
    display: none;
    gap: 28px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mobile-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    display: none;
    flex-direction: column;
    gap: 0;
    min-width: 260px;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.is-open {
    max-height: 480px;
}

.mobile-menu a {
    padding: 14px 24px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease, background 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-menu-social {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.mobile-menu .btn-primary {
    border-radius: 0;
    margin: 8px 12px;
    width: calc(100% - 24px);
}

.language-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
    order: 2;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.35s ease-in-out;
}

.lang-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.lang-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
}

.nav-links {
    display: none;
    gap: 28px;
    align-items: center;
    order: 3;
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-primary);
}

.nav-links .social-link,
.mobile-menu .social-link {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image 0.3s ease;
}

.mobile-menu .social-link {
    width: auto;
    height: auto;
}

.nav-links .social-link-x,
.mobile-menu .social-link-x {
    background-image: url('assets/img/x-icon.png');
}

.nav-links .social-link-x:hover,
.mobile-menu .social-link-x:hover {
    background-image: url('assets/img/x-icon-orange.png');
}

.nav-links .social-link-instagram,
.mobile-menu .social-link-instagram {
    background-image: url('assets/img/instagram-icon.png');
}

.nav-links .social-link-instagram:hover,
.mobile-menu .social-link-instagram:hover {
    background-image: url('assets/img/instagram-icon-orange.png');
}

.mobile-menu a.social-link {
    display: block;
    width: 100%;
    min-height: 47px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background-position: left 24px center;
    background-size: 28px 28px;
    background-color: transparent;
}

.mobile-menu a.social-link:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.nav-links .btn-primary,
.nav-links .btn-primary:hover {
    color: #000;
}

.btn {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: .3s ease;
    padding: 14px 28px;
    font-size: 14px;
}

.btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.btn-arrow-white {
    transition: filter 0.35s ease-in-out;
}

.btn-primary:hover .btn-arrow-white {
    filter: brightness(0) saturate(1);
}

.btn-text-white {
    color: #fff !important;
    transition: color 0.35s ease-in-out, background 0.35s ease-in-out, border-color 0.35s ease-in-out;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .3) !important;
}

.btn-text-white:hover {
    color: #000 !important;
    background: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    transition: transform all 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 1px rgba(242, 147, 41, 0.45), 0 0 28px rgba(242, 147, 41, 0.34), 0 0 56px rgba(242, 147, 41, 0.2);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    background: transparent;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.purchase-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.purchase-modal.is-open {
    display: flex;
}

.purchase-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.purchase-modal__dialog {
    position: relative;
    width: min(520px, 100%);
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    padding: 32px;
    z-index: 1;
}

.purchase-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-default);
    background: transparent;
    color: var(--text-secondary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.purchase-modal__close:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.purchase-modal__dialog h3 {
    font-size: 2rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.purchase-modal__subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.purchase-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.purchase-modal__actions .btn {
    flex: 1 1 180px;
}

.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.75), #050505),
        url('https://images.unsplash.com/photo-1700784795176-7ff886439d79?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    opacity: .45;
}

.hero-inner {
    position: relative;
    max-width: 1000px;
    padding: 0 24px;
}

.eyebrow {
    color: var(--accent-primary) !important;
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 16px;
    margin-bottom: 24px;
    font-family: 'Barlow Condensed', sans-serif;
}

.hero h1 {
    font-size: clamp(2.6rem, 8vw, 7rem);
    line-height: .95;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero p {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 34px;
    font-size: clamp(1rem, 2.3vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title p {
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 16px;
    margin-bottom: 14px;
    font-family: 'Barlow Condensed', sans-serif;
}

.section-title h2 {
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: .95;
}

#about .container {
    height: auto;
    overflow: visible;
}

.features {
    display: grid;
    gap: 24px;
    align-items: start;
}

.card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 0;
    overflow: hidden;
    transition: .35s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 147, 41, .45);
    z-index: 5;
    cursor: pointer;
}

.card-media {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.45s ease;
}

.card:hover .card-media,
.card:focus-within .card-media {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
}

.video-player {
    position: relative;
    width: 100%;
    height: 510px;
    border-radius: 0;
    border: 0;
    background: #0a0a0a;
}

.video-player::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    pointer-events: none;
}

.card-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.card h3 {
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 28px;
    margin: 0;
    padding: 12px 32px 12px;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    padding: 0 32px 24px;
}

.card-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    margin: 12px 32px 0;
}

.pricing-wrap {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.pricing-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.pricing-bg-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pricing-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transform-origin: center;
    object-position: center 30%;
}

#pricing .container {
    position: relative;
    z-index: 2;
}

.pricing {
    display: grid;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-7px);
}

.pricing-card.featured {
    background: var(--bg-surface-highlight);
    border: 2px solid var(--accent-primary);
    transform: scale(1.02);
    box-shadow: 0 0 0 1px rgba(242, 147, 41, 0.35), 0 0 22px rgba(242, 147, 41, 0.28), 0 0 44px rgba(242, 147, 41, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-7px);
    box-shadow: 0 0 0 1px rgba(242, 147, 41, 0.45), 0 0 28px rgba(242, 147, 41, 0.34), 0 0 56px rgba(242, 147, 41, 0.2);
}

.badge {
    align-self: center;
    background: var(--accent-primary);
    color: #000;
    padding: 8px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    margin-top: -52px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 8px;
}

.pricing-card .sub {
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 1;
}

.price-row {
    margin-bottom: 22px;
}

.price-row span:last-child {
    color: var(--text-secondary);
}

.list {
    list-style: none;
    margin-bottom: 26px;
    flex: 1;
}

.list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: var(--text-secondary);
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url('assets/img/check.png') center/contain no-repeat;
}

.steps {
    display: grid;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px;
    color: var(--accent-primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
}

.step h3 {
    text-transform: uppercase;
    font-size: 34px;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonials-wrap {
    background: #0a0a0a;
}

.testimonials {
    display: grid;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 30px;
    transition: transform 0.35s ease-in-out;
}

.testimonial:hover {
    transform: translateY(-7px);
}

.testimonial p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-text-img {
    display: block;
    width: 32px;
    height: auto;
    margin-bottom: 16px;
}

.testimonial-stars {
    display: block;
    width: 100px;
    height: auto;
    margin-top: 18px;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(242, 147, 41, .35);
}

.result {
    color: var(--accent-primary);
    font-size: 14px;
}

.contact-grid {
    display: grid;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.lead {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 20px 0 30px;
}

.response-note {
    position: relative;
    padding-left: 26px;
}

.response-note::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url('assets/img/response.png') center/contain no-repeat;
}

.form {
    display: grid;
    gap: 14px;
}

.form-status {
    display: none;
    margin-top: 18px;
    padding: 18px 20px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-status.is-visible {
    display: block;
}

.form-status.success {
    border-color: rgba(242, 147, 41, .5);
}

.form-status.error {
    border-color: rgba(239, 68, 68, .5);
}

.input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: var(--bg-default);
    color: #fff;
    padding: 11px 14px;
    font: inherit;
}

.input::placeholder {
    color: var(--text-secondary);
    font-size: 14px;
}

.input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.muted {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.accent {
    color: var(--accent-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.mb-16 {
    margin-bottom: 16px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 4rem);
    text-transform: uppercase;
    line-height: .95;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.policy-page {
    padding-top: 150px;
    min-height: calc(100vh - 120px);
}

.policy-page .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.policy-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 32px;
}

.policy-card h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    text-transform: uppercase;
    margin: 28px 0 10px;
}

.policy-card h2:first-of-type {
    margin-top: 18px;
}

.policy-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}