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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--type-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #242424;
    --brand-primary: #6B2FD0;
    --brand-secondary: #5420A8;
    --accent-cyan: #5FE2DF;
    --accent-mint: #7AFAD8;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --overlay-bg: rgba(13, 13, 13, 0.95);
    --hover-bg: rgba(107, 47, 208, 0.15);
    --type-heading: 'Montserrat', sans-serif;
    --type-body: 'Roboto', sans-serif;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glow-brand: 0 0 24px rgba(107, 47, 208, 0.4);
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/roboto-v50-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/roboto-v50-latin-500.woff2') format('woff2');
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--type-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--text-secondary);
}

.wrap {
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 2rem;
}

.section {
    padding-block: 6rem;
}

button img,
.hero-btn img,
.register-btn img,
.cta-button img {
    filter: brightness(0) invert(1);
}

.benefit-icon-wrap img,
.trust-badge img,
.card-icon img,
.tile-icon img,
.perk-icon img,
.feature-icon img,
.modal-close img,
.toggle-password img,
.trust-item img,
.step-icon img,
.step-tip img,
.tab-icon img,
.contact-icon img,
.social-link img,
.trust-chip img,
.footer-toggle img,
.compliance-icon-wrap img {
    filter: brightness(0) invert(1);
}

.primary-btn,
.register-btn,
.cta-button {
    position: relative;
    overflow: hidden;
}

.primary-btn::before,
.register-btn::before {
    content: '';
    position: absolute;
    transition: all 0.4s var(--ease-smooth);
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: var(--type-heading);
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-bounce);
    box-shadow: var(--shadow-md);
}

.primary-btn::before {
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.primary-btn:hover,
.register-btn:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-brand);
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:active,
.cta-button:active {
    transform: translateY(-1px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s var(--ease-smooth);
}

.site-header::before,
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.site-header::before {
    background: linear-gradient(90deg, var(--brand-primary), var(--accent-cyan), var(--accent-mint));
}

.footer::before {
    background: linear-gradient(90deg, var(--accent-mint) 0%, var(--brand-primary) 50%, var(--accent-mint) 100%);
    opacity: 0.5;
}

.header-inner {
    max-width: 1320px;
    margin-inline: auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.brand-wrap {
    flex-shrink: 0;
}

.brand-link,
.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease-bounce);
}

.brand-link {
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    box-shadow: var(--shadow-sm);
}

.brand-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--glow-brand);
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-family: var(--type-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list,
.drawer-list {
    display: flex;
    align-items: center;
}

.nav-list {
    gap: 0.5rem;
}

.drawer-list {
    flex-direction: column;
}

.nav-link,
.drawer-link,
.login-btn,
.drawer-login {
    display: flex;
    align-items: center;
    font-family: var(--type-body);
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all 0.25s var(--ease-smooth);
}

.nav-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
}

.drawer-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.nav-link:hover,
.drawer-link:hover,
.login-btn:hover,
.drawer-login:hover,
.drawer-close:hover {
    color: var(--text-primary);
    background: var(--hover-bg);
}

.header-actions,
.drawer-actions {
    display: flex;
    align-items: center;
}

.header-actions {
    gap: 1rem;
}

.drawer-actions {
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.875rem;
}

.login-btn,
.drawer-login {
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    background: transparent;
}

.drawer-login {
    justify-content: center;
    padding: 1rem;
}

.register-btn,
.drawer-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-family: var(--type-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-bounce);
}

.register-btn {
    padding: 0.875rem 1.75rem;
}

.drawer-register {
    padding: 1.125rem;
    border-radius: var(--radius-md);
}

.register-btn::before {
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.register-btn:hover::before {
    width: 200px;
    height: 200px;
}

.register-btn img,
.cta-button img {
    transition: transform 0.3s var(--ease-smooth);
}

.register-btn:hover img,
.benefit-link:hover img {
    transform: translateX(3px);
}

.cta-button:hover img {
    transform: translateX(4px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
}

.toggle-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-bounce);
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
    z-index: 1100;
    transition: right 0.4s var(--ease-bounce);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay,
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.drawer-overlay {
    background: var(--overlay-bg);
}

.modal-overlay {
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.3s var(--ease-smooth);
}

.drawer-overlay.active,
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
}

.drawer-title {
    font-family: var(--type-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.drawer-close,
.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.25s var(--ease-smooth);
}

.drawer-close {
    background: transparent;
}

.modal-close {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-close img,
.toggle-password img {
    opacity: 0.7;
}

.drawer-nav {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.drawer-register:hover {
    box-shadow: var(--shadow-md);
}

.modal-overlay::before,
.benefits-bg::before,
.security-bg::after,
.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal-overlay::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.benefits-bg::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.security-bg::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-banner::after {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.modal-container {
    position: relative;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s var(--ease-bounce);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.modal-heading {
    flex-grow: 1;
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.modal-body {
    padding: 0 2rem 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.field-input-wrap {
    position: relative;
}

.field-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--type-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: all 0.25s var(--ease-smooth);
}

.field-input::placeholder {
    color: var(--text-muted);
}

.field-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 0 4px rgba(107, 47, 208, 0.15);
}

.field-input.error {
    border-color: #E74C3C;
    background: rgba(231, 76, 60, 0.05);
}

.field-input.success {
    border-color: #27AE60;
}

.field-input-password {
    padding-right: 3.5rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.25s var(--ease-smooth);
}

.toggle-password:hover {
    opacity: 0.7;
}

.toggle-password img {
    opacity: 0.5;
}

.field-error {
    font-size: 0.8125rem;
    color: #E74C3C;
    margin-top: 0.375rem;
    display: none;
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.25s var(--ease-smooth);
    cursor: pointer;
}

.checkbox-card:hover {
    background: rgba(26, 26, 26, 0.6);
}

.checkbox-card.active {
    border-color: var(--brand-primary);
    background: rgba(107, 47, 208, 0.08);
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.25s var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-input:checked + .checkbox-box {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.checkbox-box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s var(--ease-bounce);
}

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

.checkbox-label {
    flex-grow: 1;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label a,
.cta-login-link a,
.switch-link,
.disclaimer-content a {
    color: var(--brand-primary);
    transition: color 0.25s var(--ease-smooth);
}

.checkbox-label a:hover,
.switch-link:hover,
.disclaimer-content a:hover {
    color: var(--accent-cyan);
}

.checkbox-label a:hover {
    background: rgba(107, 47, 208, 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-family: var(--type-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--text-primary);
    border: 1px solid transparent;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-bounce);
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-brand);
}

.submit-btn:active {
    transform: scale(0.97);
}

.submit-btn:disabled {
    background: linear-gradient(135deg, #4A4A4A, #333333);
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.trust-row,
.footer-meta {
    display: flex;
    align-items: center;
}

.trust-row {
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.footer-meta {
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.trust-item img,
.trust-badge img {
    width: 18px;
    height: 18px;
}

.trust-item span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.modal-switch {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.switch-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.switch-link {
    font-weight: 500;
    margin-left: 0.25rem;
}

.success-modal .modal-container {
    max-width: 420px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon img {
    width: 40px;
    height: 40px;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.success-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-bg,
.benefits-bg,
.security-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg {
    z-index: -1;
}

.benefits-bg {
    background:
            radial-gradient(circle at 30% 50%, rgba(107, 47, 208, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 50%, rgba(95, 226, 223, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.security-bg {
    z-index: 0;
}

.security-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 40%, rgba(107, 47, 208, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 60%, rgba(95, 226, 223, 0.2) 0%, transparent 50%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(107, 47, 208, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(95, 226, 223, 0.06) 0%, transparent 50%);
    opacity: 0.6;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
}

.glow-top {
    width: 600px;
    height: 600px;
    background: var(--brand-primary);
    top: -250px;
    left: -150px;
    animation: float-slow 12s ease-in-out infinite;
}

.glow-bottom {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    bottom: -200px;
    right: -150px;
    animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bg-glow {
        animation: none;
    }
}

.hero-content {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: rgba(107, 47, 208, 0.15);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-mint);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-text {
    font-family: var(--type-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--accent-mint);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 680px;
    margin-inline: auto;
}

.hero-cta {
    margin-bottom: 4rem;
}

.hero-btn {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.hero-features,
.steps-grid {
    display: grid;
    gap: 2rem;
    margin-inline: auto;
}

.hero-features {
    grid-template-columns: repeat(3, 1fr);
    max-width: 920px;
}

.steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
}

.feature-card {
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-smooth);
    text-align: center;
}

.feature-card:hover,
.security-card:hover,
.step-card:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-inline: auto;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius-md);
}

.feature-title {
    font-family: var(--type-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.benefits-section,
.steps-section,
.security-section,
.cta-section {
    position: relative;
    padding-block: 7rem;
    overflow: hidden;
}

.steps-section {
    background: rgba(13, 13, 13, 0.6);
}

.security-section {
    background: linear-gradient(135deg, #1a0d2e 0%, #0d0d0d 50%, #1a0d2e 100%);
}

.benefits-header,
.steps-header,
.security-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.benefits-title,
.steps-title,
.security-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefits-subtitle,
.steps-subtitle,
.security-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-inline: auto;
}

.benefits-subtitle,
.steps-subtitle {
    max-width: 640px;
}

.security-subtitle {
    max-width: 680px;
}

.benefits-hub {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.key-benefit-card,
.compliance-panel {
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.key-benefit-card {
    position: sticky;
    top: 6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.compliance-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.key-benefit-card::before,
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-cyan), var(--accent-mint));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: opacity 0.4s var(--ease-smooth);
}

.key-benefit-card::before {
    opacity: 0.3;
}

.step-card::after {
    border-radius: 18px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-cyan)) border-box;
    opacity: 0;
}

.step-card.active::after {
    opacity: 0.5;
}

.compliance-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 47, 208, 0.1), transparent);
    pointer-events: none;
}

.benefit-content,
.compliance-content,
.security-content {
    position: relative;
    z-index: 1;
}

.benefit-icon-wrap,
.compliance-icon-wrap {
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(107, 47, 208, 0.3);
}

.compliance-icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-cyan));
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(107, 47, 208, 0.4);
}

.benefit-icon-wrap img {
    width: 36px;
    height: 36px;
}

.compliance-icon-wrap img {
    width: 40px;
    height: 40px;
}

.benefit-heading,
.compliance-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.benefit-list,
.compliance-list,
.card-list {
    display: flex;
    flex-direction: column;
}

.benefit-list {
    gap: 1rem;
    margin-bottom: 2rem;
}

.compliance-list {
    gap: 1.125rem;
    margin-bottom: 2rem;
}

.card-list {
    gap: 0.75rem;
}

.benefit-list-item,
.compliance-item,
.card-list-item {
    display: flex;
    align-items: flex-start;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefit-list-item {
    gap: 0.875rem;
    font-size: 1rem;
}

.compliance-item {
    align-items: center;
    gap: 1rem;
}

.card-list-item {
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.benefit-list-item::before,
.card-list-item::before {
    content: '';
    flex-shrink: 0;
    border-radius: 50%;
}

.benefit-list-item::before {
    width: 6px;
    height: 6px;
    margin-top: 0.5rem;
    background: var(--accent-mint);
}

.card-list-item::before {
    width: 5px;
    height: 5px;
    margin-top: 0.5rem;
    background: var(--brand-primary);
}

.compliance-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--accent-mint);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-mint);
}

.compliance-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge,
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
}

.trust-badge {
    color: var(--text-muted);
}

.compliance-badge {
    padding: 0.75rem 1.25rem;
    background: rgba(122, 250, 216, 0.1);
    border: 1px solid rgba(122, 250, 216, 0.3);
    border-radius: 24px;
    font-weight: 500;
    color: var(--accent-mint);
}

.trust-badge img {
    opacity: 0.5;
}

.compliance-badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(19%) saturate(1059%) hue-rotate(104deg) brightness(101%) contrast(98%);
}

.benefit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--brand-primary);
    transition: all 0.25s var(--ease-smooth);
}

.benefit-link:hover {
    color: var(--accent-cyan);
    gap: 0.75rem;
}

.benefit-link img {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(1389%) hue-rotate(237deg) brightness(93%) contrast(95%);
    transition: transform 0.25s var(--ease-smooth);
}

.benefits-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-tab,
.perk-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 16px;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-tab {
    padding: 1.75rem 2rem;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    gap: 1.5rem;
}

.perk-chip {
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-tab:hover {
    background: rgba(26, 26, 26, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
}

.benefit-tab.active {
    background: rgba(107, 47, 208, 0.15);
    border-color: var(--brand-primary);
    box-shadow: 0 0 24px rgba(107, 47, 208, 0.2);
}

.perk-chip:hover {
    background: rgba(107, 47, 208, 0.15);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.tab-icon,
.step-icon,
.card-icon,
.tile-icon,
.perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.benefit-tab.active .tab-icon,
.step-card.active .step-icon {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.benefit-tab.active .tab-icon {
    box-shadow: 0 4px 16px rgba(107, 47, 208, 0.3);
}

.step-card.active .step-icon {
    box-shadow: 0 4px 16px rgba(107, 47, 208, 0.4);
}

.tab-icon img,
.step-icon img {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    transition: opacity 0.3s var(--ease-smooth);
}

.benefit-tab.active .tab-icon img,
.step-card.active .step-icon img {
    opacity: 1;
}

.tab-content {
    flex-grow: 1;
}

.tab-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
    transition: color 0.3s var(--ease-smooth);
}

.benefit-tab.active .tab-label {
    color: var(--text-primary);
}

.tab-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.steps-progress,
.footer-meta::before {
    display: flex;
    align-items: center;
}

.steps-progress {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.progress-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 24px;
    height: 24px;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    transition: transform 0.4s var(--ease-bounce);
}

.progress-dot.active {
    background: var(--brand-primary);
    box-shadow: 0 0 16px rgba(107, 47, 208, 0.6);
}

.progress-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--brand-primary);
    transition: width 0.6s var(--ease-smooth);
}

.progress-line.active::after {
    width: 100%;
}

.step-card {
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.step-card.active {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(107, 47, 208, 0.3);
    box-shadow: 0 8px 32px rgba(107, 47, 208, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-badge {
    padding: 0.5rem 1rem;
    background: rgba(107, 47, 208, 0.15);
    border: 1px solid rgba(107, 47, 208, 0.3);
    border-radius: 20px;
    font-family: var(--type-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.step-number {
    margin-left: auto;
    font-family: var(--type-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.step-card.active .step-number {
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
}

.step-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.step-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
}

.step-card.expanded .step-detail {
    max-height: 200px;
}

.step-detail-text {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-tip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.step-tip img {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.security-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.security-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-card,
.trust-tile {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease-smooth);
}

.security-card {
    padding: 2rem;
}

.security-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.card-icon img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.trust-tiles {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
}

.trust-tile {
    padding: 2rem;
    text-align: center;
}

.trust-tile:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107, 47, 208, 0.3);
}

.tile-icon {
    width: 48px;
    height: 48px;
    margin-inline: auto;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 12px;
}

.tile-icon img {
    width: 24px;
    height: 24px;
}

.tile-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tile-value {
    font-family: var(--type-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.cta-banner {
    position: relative;
    padding: 4rem 3.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 80% 50%, rgba(107, 47, 208, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 50%, rgba(95, 226, 223, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-content {
    max-width: 540px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-family: var(--type-heading);
    font-weight: 600;
    font-size: 1.125rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent-cyan) 100%);
    color: var(--text-primary);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(107, 47, 208, 0.4);
    transition: all 0.3s var(--ease-bounce);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transition: transform 0.5s var(--ease-smooth);
}

.cta-button:hover {
    box-shadow: 0 12px 40px rgba(107, 47, 208, 0.5);
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.25s var(--ease-smooth);
}

.cta-login-link span {
    transition: color 0.25s var(--ease-smooth);
}

.cta-login-link a {
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.25s var(--ease-smooth);
}

.cta-login-link a:hover {
    background: rgba(107, 47, 208, 0.15);
}

.cta-perks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perks-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.perks-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.perk-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-cyan));
    border-radius: 8px;
}

.perk-icon img {
    width: 18px;
    height: 18px;
}

.perk-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.perk-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.perk-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer {
    position: relative;
    background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding-block: 5rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-pill {
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    width: fit-content;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.brand-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 360px;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(107, 47, 208, 0.1);
    border: 1px solid rgba(107, 47, 208, 0.2);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-chip img {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-column.open .footer-toggle {
    transform: rotate(180deg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 0.375rem 0.5rem;
    margin-left: -0.5rem;
    border-radius: 6px;
    transition: all 0.25s var(--ease-smooth);
    width: fit-content;
}

.footer-link:hover {
    color: var(--text-primary);
    background: rgba(107, 47, 208, 0.1);
}

.footer-link::after {
    content: '';
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B2FD0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s var(--ease-smooth);
}

.footer-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    opacity: 0.6;
}

.contact-text {
    flex-grow: 1;
}

.contact-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.footer-utility {
    position: relative;
    z-index: 1;
    padding-block: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-meta::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-mint);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-mint);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s var(--ease-smooth);
}

.social-link:hover {
    background: rgba(107, 47, 208, 0.2);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.social-link img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.social-link:hover img {
    opacity: 1;
}

.footer-disclaimer {
    position: relative;
    z-index: 1;
    padding-block: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

.disclaimer-content a {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-desc {
        font-size: 1.125rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .benefits-hub {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .key-benefit-card {
        position: static;
    }

    .security-grid,
    .trust-tiles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta-content {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .wrap {
        padding-inline: 1.25rem;
    }

    .section {
        padding-block: 4rem;
    }

    .header-inner {
        padding: 1rem 1.25rem;
    }

    .modal-container {
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

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

    .modal-body {
        padding: 0 1.5rem 1.5rem;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .trust-row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-section {
        padding-top: 7rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        margin-bottom: 3rem;
    }

    .hero-btn {
        padding: 1.125rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 400px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 500px;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .benefits-section,
    .steps-section,
    .security-section,
    .cta-section {
        padding-block: 5rem;
    }

    .benefits-header,
    .steps-header,
    .security-header {
        margin-bottom: 3rem;
    }

    .benefits-title,
    .steps-title,
    .security-title,
    .cta-title {
        font-size: 2rem;
    }

    .benefits-subtitle,
    .steps-subtitle,
    .security-subtitle,
    .cta-description {
        font-size: 1rem;
    }

    .key-benefit-card,
    .compliance-panel,
    .step-card {
        padding: 2rem;
    }

    .benefit-heading,
    .compliance-heading {
        font-size: 1.625rem;
    }

    .benefit-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .benefit-tab {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .tab-icon {
        width: 48px;
        height: 48px;
    }

    .tab-icon img {
        width: 24px;
        height: 24px;
    }

    .tab-label {
        font-size: 1rem;
    }

    .tab-text {
        font-size: 0.875rem;
    }

    .steps-progress {
        margin-bottom: 2.5rem;
        gap: 0.75rem;
    }

    .progress-line {
        width: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-header {
        gap: 1rem;
    }

    .step-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-icon img,
    .card-icon img {
        width: 24px;
        height: 24px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-desc {
        font-size: 0.9375rem;
    }

    .security-grid {
        margin-bottom: 3rem;
    }

    .trust-tiles {
        gap: 1.25rem;
    }

    .trust-tile {
        padding: 1.5rem;
    }

    .cta-banner {
        padding: 3rem 2rem;
    }

    .cta-button {
        padding: 1.125rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .perks-chips {
        gap: 0.875rem;
    }

    .perk-chip {
        padding: 0.875rem 1.25rem;
        flex: 1 1 auto;
    }

    .footer-main {
        padding-block: 4rem 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        grid-column: auto;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column.open .footer-links {
        max-height: 500px;
    }

    .utility-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-socials {
        order: -1;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .wrap {
        padding-inline: 1rem;
    }

    .section {
        padding-block: 3rem;
    }

    .header-inner {
        padding: 1rem;
    }

    .brand-link {
        gap: 0.625rem;
        padding: 0.375rem 1rem 0.375rem 0.375rem;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .mobile-drawer {
        width: 280px;
    }

    .modal-header {
        padding: 1.25rem 1.25rem 1rem;
    }

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

    .modal-body {
        padding: 0 1.25rem 1.25rem;
    }

    .form-grid {
        gap: 1rem;
    }

    .field-input {
        padding: 0.875rem 1rem;
    }

    .submit-btn {
        height: 48px;
        font-size: 1rem;
    }

    .hero-section {
        padding-top: 8rem;
        padding-bottom: 2.5rem;
    }

    .status-chip {
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .status-text {
        font-size: 0.8125rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .hero-desc {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        margin-bottom: 2.5rem;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.875rem;
    }

    .benefits-section,
    .steps-section,
    .security-section,
    .cta-section {
        padding-block: 4rem;
    }

    .key-benefit-card,
    .compliance-panel,
    .security-card,
    .step-card {
        padding: 1.5rem;
    }

    .benefit-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .benefit-icon-wrap img {
        width: 32px;
        height: 32px;
    }

    .benefit-heading,
    .compliance-heading {
        font-size: 1.5rem;
    }

    .benefit-list-item {
        font-size: 0.9375rem;
    }

    .step-header {
        flex-wrap: wrap;
    }

    .step-number {
        width: 100%;
        text-align: right;
        order: -1;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .compliance-icon-wrap {
        width: 64px;
        height: 64px;
    }

    .compliance-icon-wrap img {
        width: 32px;
        height: 32px;
    }

    .card-icon {
        width: 48px;
        height: 48px;
    }

    .trust-tile {
        padding: 1.25rem;
    }

    .cta-banner {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .perks-chips {
        flex-direction: column;
        gap: 0.75rem;
    }

    .perk-chip {
        width: 100%;
    }

    .footer-main {
        padding-block: 3rem 2rem;
    }

    .brand-description {
        font-size: 0.875rem;
    }

    .trust-chips {
        gap: 0.625rem;
    }

    .trust-chip {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .footer-utility {
        padding-block: 1.5rem;
    }
}