*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #000000;
    --void: #050508;
    --night: #0c0c10;
    --charcoal: #141419;
    --slate: #1e1e26;
    --graphite: #2a2a35;
    --steel: #3d3d4a;
    --primary: #00f0ff;
    --primary-dim: #00c4d4;
    --primary-glow: rgba(0, 240, 255, 0.15);
    --primary-intense: rgba(0, 240, 255, 0.4);
    --secondary: #a855f7;
    --secondary-dim: #8b3fd9;
    --secondary-glow: rgba(168, 85, 247, 0.15);
    --gold: #ffc107;
    --gold-dim: #d4a106;
    --gold-glow: rgba(255, 193, 7, 0.15);
    --white: #ffffff;
    --white-soft: #f0f0f5;
    --gray-100: #e0e0e8;
    --gray-200: #c0c0cc;
    --gray-300: #9090a0;
    --gray-400: #606070;
    --gray-500: #404050;
    --success: #22c55e;
    --error: #ef4444;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 80px;
    --container-max: 1400px;
    --container-narrow: 1100px;
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px var(--primary-glow);
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection {
    background: var(--primary);
    color: var(--black);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section-title--left {
    text-align: left;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}
.btn-solid,
.btn-outline,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--ease-out);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-solid {
    background: var(--primary);
    color: var(--black);
    border-color: var(--primary);
}
.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}
.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
    color: var(--white);
}
.btn-solid:hover::before {
    opacity: 1;
}
.btn-solid span,
.btn-solid svg {
    position: relative;
    z-index: 1;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--steel);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.btn-ghost {
    background: transparent;
    color: var(--gray-300);
    border-color: transparent;
}
.btn-ghost:hover {
    color: var(--white);
    background: var(--slate);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}
.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}
.btn-full {
    width: 100%;
}
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s var(--ease-out);
}
.topbar.scrolled {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar__logo img {
    height: 70px;
    transition: transform 0.3s var(--ease-out);
}
.topbar__logo:hover img {
    transform: scale(1.05);
}
.topbar__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.topbar__link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    transition: color 0.3s var(--ease-out);
    position: relative;
}
.topbar__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease-out);
}
.topbar__link:hover,
.topbar__link--active {
    color: var(--white);
}
.topbar__link:hover::after,
.topbar__link--active::after {
    width: 100%;
}
.topbar__burger {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 10px;
}
.topbar__burger svg {
    width: 100%;
    height: 100%;
}
.topbar__burger .line-top,
.topbar__burger .line-mid,
.topbar__burger .line-bot {
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}
.topbar__burger.active .line-top {
    transform: translateY(6px) rotate(45deg);
}
.topbar__burger.active .line-mid {
    opacity: 0;
}
.topbar__burger.active .line-bot {
    transform: translateY(-6px) rotate(-45deg);
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
    overflow: hidden;
}
.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}
.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -200px;
    right: -100px;
}
.hero__orb--2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-glow);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}
.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: var(--gold-glow);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(-40px, -20px) scale(1.05); }
}
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: fadeUp 1s var(--ease-out) forwards;
    opacity: 0;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s var(--ease-out) 0.1s forwards;
    opacity: 0;
}
.hero__desc {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeUp 1s var(--ease-out) 0.2s forwards;
    opacity: 0;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeUp 1s var(--ease-out) 0.3s forwards;
    opacity: 0;
}
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeUp 1s var(--ease-out) 0.4s forwards;
    opacity: 0;
}
.stat-item {
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--steel), transparent);
}
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 1s var(--ease-out) 0.6s forwards;
    opacity: 0;
}
.hero__scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.compliance {
    background: var(--charcoal);
    border-top: 1px solid var(--slate);
    border-bottom: 1px solid var(--slate);
}
.compliance__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.compliance__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.compliance__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.compliance__text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.compliance__text p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}
.operators {
    padding: 120px 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.operators__header {
    text-align: center;
    margin-bottom: 60px;
}
.operators__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.op-card {
    position: relative;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}
.op-card--hero {
    padding: 40px;
}
.op-card--hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.op-card--secondary {
    padding: 32px;
    margin-top: 60px;
}
.op-card--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.op-card__spotlight {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.5s var(--ease-out);
}
.op-card:hover .op-card__spotlight {
    transform: translate(-50px, 50px);
}
.op-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
    z-index: 10;
}
.op-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.op-card__logo {
    width: 140px;
    height: 80px;
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.op-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.op-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.rating-ring {
    position: relative;
    width: 70px;
    height: 70px;
}
.rating-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.rating-ring .ring-bg {
    fill: none;
    stroke: var(--slate);
    stroke-width: 3;
}
.rating-ring .ring-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1s var(--ease-out);
}
.rating-ring--gold .ring-fill {
    stroke: var(--gold);
}
.rating-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}
.rating-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}
.op-card__body {
    position: relative;
    z-index: 2;
}
.op-card__name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.op-card__desc {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
}
.op-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.op-card__tags .tag {
    background: var(--primary-glow);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
}
.op-card__tags .tag:hover {
    background: var(--primary-intense);
    transform: translateY(-2px);
}
.op-card__tags--gold .tag {
    background: var(--gold-glow);
    border-color: rgba(255, 193, 7, 0.2);
    color: var(--gold);
}
.op-card__tags--gold .tag:hover {
    background: rgba(255, 193, 7, 0.25);
}
.op-card__bonus {
    position: relative;
    background: linear-gradient(135deg, var(--night), var(--charcoal));
    border: 2px solid var(--slate);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.bonus-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
    animation: bonusPulse 4s ease-in-out infinite;
}
.op-card__bonus--gold .bonus-glow {
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 50%);
}
@keyframes bonusPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}
.bonus-content {
    position: relative;
    z-index: 1;
}
.bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.op-card__bonus--gold .bonus-label {
    color: var(--gold);
}
.bonus-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}
.bonus-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    animation: bonusBounce 2s ease-in-out infinite;
}
@keyframes bonusBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}
.op-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s var(--ease-out);
    border: none;
}
.op-card__cta:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}
.op-card__cta--gold {
    background: var(--gold);
}
.op-card__cta--gold:hover {
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}
.op-card:hover {
    transform: translateY(-10px);
    border-color: var(--steel);
    box-shadow: var(--shadow-lg);
}
.about {
    padding: 120px 40px;
    background: var(--charcoal);
}
.about__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about__visual {
    position: relative;
}
.about__img-stack {
    position: relative;
    height: 500px;
}
.img-frame {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-frame--back {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 1;
}
.img-frame--front {
    width: 320px;
    height: 400px;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 4px solid var(--charcoal);
}
.about__float-card {
    position: absolute;
    bottom: 60px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
}
.float-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}
.float-text {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}
.about__content .section-title {
    margin-bottom: 1.5rem;
}
.about__text {
    margin-bottom: 2rem;
}
.about__text p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
}
.pillar:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}
.pillar__icon {
    width: 36px;
    height: 36px;
    background: var(--primary-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.pillar span {
    font-size: 0.9rem;
    color: var(--gray-200);
}
.features {
    padding: 120px 40px;
    overflow: hidden;
}
.features__header {
    text-align: center;
    margin-bottom: 60px;
}
.features__carousel {
    display: flex;
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.feature-slide {
    flex: 1;
    min-width: 220px;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}
.feature-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}
.feature-slide:hover::before {
    transform: scaleX(1);
}
.feature-slide:hover {
    transform: translateY(-10px);
    border-color: var(--steel);
    box-shadow: var(--shadow-lg);
}
.feature-slide__num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--slate);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s var(--ease-out);
}
.feature-slide:hover .feature-slide__num {
    color: var(--primary-glow);
}
.feature-slide__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}
.feature-slide h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.feature-slide p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.faq {
    padding: 120px 40px;
    background: var(--charcoal);
}
.faq__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
}
.faq__sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}
.faq__intro {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.faq__decoration {
    width: 100px;
    height: 100px;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq__decoration span {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}
.faq-item:hover,
.faq-item.active {
    border-color: var(--steel);
}
.faq-item.active {
    background: var(--charcoal);
}
.faq-item__trigger {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}
.faq-item__q {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
}
.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: all 0.3s var(--ease-out);
}
.faq-item__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.faq-item__icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.faq-item.active .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
.faq-item.active .faq-item__answer {
    max-height: 300px;
}
.faq-item__answer p {
    padding: 0 24px 24px;
    color: var(--gray-300);
    line-height: 1.8;
    margin: 0;
}
.contact {
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}
.contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.contact__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    top: -200px;
    left: -200px;
}
.contact__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-glow);
    bottom: -100px;
    right: -100px;
}
.contact__container {
    position: relative;
    z-index: 1;
    max-width: var(--container-narrow);
    margin: 0 auto;
}
.contact__header {
    text-align: center;
    margin-bottom: 60px;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out);
}
.info-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}
.info-card__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.info-card__label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.info-card__value {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--white);
}
.contact__map {
    margin-top: auto;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--slate);
}
.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(90%);
}
.contact__form {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 24px;
    padding: 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s var(--ease-out);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-500);
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
}
.form-field--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}
.form-field--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}
.form-field--checkbox label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-400);
}
.footer {
    background: var(--night);
    border-top: 1px solid var(--slate);
}
.footer__top {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
}
.footer__logo {
    height: 40px;
    margin-bottom: 20px;
}
.footer__brand p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.footer__col a,
.footer__col span {
    display: block;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s var(--ease-out);
}
.footer__col a:hover {
    color: var(--primary);
}
.footer__disclaimer {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid var(--slate);
    border-bottom: 1px solid var(--slate);
}
.footer__disclaimer p {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}
.footer__partners {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}
.footer__partners-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.footer__partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.footer__partners-grid img {
    height: 36px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s var(--ease-out);
}
.footer__partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.footer__bottom {
    padding: 24px 40px;
    text-align: center;
    border-top: 1px solid var(--slate);
}
.footer__bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin: 0;
}
.overlay-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}
.overlay-modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-card {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s var(--spring);
}
.overlay-modal.active .modal-card {
    transform: scale(1) translateY(0);
}
.modal-visual {
    background: linear-gradient(135deg, var(--night), var(--charcoal));
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}
.modal-body {
    padding: 40px;
    text-align: center;
}
.modal-body h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.modal-body > p {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
}
.modal-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.modal-btns--row {
    flex-direction: row;
    justify-content: center;
}
.modal-small-link {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--primary);
}
.modal-small-link:hover {
    text-decoration: underline;
}
.modal-card--slim .modal-body {
    padding: 30px;
}
.cookie-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.cookie-icon {
    font-size: 2rem;
}
.cookie-header h2 {
    margin: 0;
}
.modal-card--success {
    text-align: center;
    padding: 50px 40px;
}
.success-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}
.success-animation svg {
    width: 100%;
    height: 100%;
}
.success-animation circle {
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: drawCircle 0.6s var(--ease-out) forwards;
}
.success-animation path {
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawCheck 0.4s var(--ease-out) 0.4s forwards;
}
@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}
.modal-card--success h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}
.modal-card--success p {
    color: var(--gray-300);
    margin-bottom: 24px;
}
@media (max-width: 1200px) {
    .operators__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .op-card--secondary {
        margin-top: 0;
    }
    .about__container {
        gap: 60px;
    }
    .faq__container {
        grid-template-columns: 280px 1fr;
        gap: 60px;
    }
}
@media (max-width: 1024px) {
    .compliance__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__visual {
        order: -1;
    }
    .about__img-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    .faq__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq__sidebar {
        position: static;
        text-align: center;
    }
    .faq__decoration {
        display: none;
    }
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .topbar__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--night);
        border-bottom: 1px solid var(--slate);
        flex-direction: column;
        padding: 30px 40px;
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease-out);
    }
    .topbar__nav.active {
        max-height: 400px;
    }
    .topbar__link {
        font-size: 1.1rem;
    }
    .topbar__burger {
        display: block;
    }
    .hero {
        padding: 120px 24px 80px;
    }
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    .hero__scroll {
        display: none;
    }
    .compliance__inner,
    .operators,
    .about,
    .features,
    .faq,
    .contact {
        padding-left: 24px;
        padding-right: 24px;
    }
    .features__carousel {
        flex-wrap: wrap;
    }
    .feature-slide {
        flex: 1 1 calc(50% - 12px);
        min-width: 200px;
    }
    .about__pillars {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact__form {
        padding: 30px 24px;
    }
    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer__col:last-child {
        grid-column: span 2;
    }
}
@media (max-width: 540px) {
    :root {
        --header-height: 70px;
    }
    .topbar__inner {
        padding: 0 20px;
    }
    .hero__title {
        font-size: 2rem;
    }
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero__actions .btn-lg {
        width: 100%;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .feature-slide {
        flex: 1 1 100%;
    }
    .img-frame--back {
        display: none;
    }
    .img-frame--front {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .about__img-stack {
        height: auto;
    }
    .about__float-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -40px;
        margin-left: auto;
        margin-right: 20px;
        width: fit-content;
    }
    .op-card--hero,
    .op-card--secondary {
        padding: 24px;
    }
    .op-card__header {
        flex-direction: column;
        gap: 16px;
    }
    .op-card__logo {
        width: 100%;
    }
    .op-card__rating {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .footer__links {
        grid-template-columns: 1fr;
    }
    .footer__col:last-child {
        grid-column: span 1;
    }
    .modal-card {
        border-radius: 20px;
    }
    .modal-body {
        padding: 30px 24px;
    }
    .modal-btns--row {
        flex-direction: column;
    }
}
.faq {
    padding: 120px 40px;
    background: var(--charcoal);
}
.faq__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
}
.faq__sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}
.faq__intro {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.faq__decoration {
    width: 100px;
    height: 100px;
    background: var(--primary-glow);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq__decoration span {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}
.faq-item:hover {
    border-color: var(--steel);
}
.faq-item.active {
    border-color: var(--primary);
    background: var(--charcoal);
}
.faq-item__trigger {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}
.faq-item__q {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}
.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    transition: all 0.3s var(--ease-out);
}
.faq-item__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.faq-item__icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.faq-item.active .faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-item.active .faq-item__answer {
    max-height: 500px;
}
.faq-item__answer p {
    padding: 0 24px 24px;
    color: var(--gray-300);
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 1024px) {
    .faq__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq__sidebar {
        position: static;
        text-align: center;
    }
    .faq__decoration {
        display: none;
    }
}
.page-hero {
    position: relative;
    padding: 180px 40px 100px;
    text-align: center;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--void) 100%);
    z-index: 0;
}
.page-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.page-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    top: -100px;
    right: -100px;
}
.page-hero__orb--2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-glow);
    bottom: -100px;
    left: -100px;
}
.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.page-hero__subtitle {
    color: var(--gray-400);
    font-size: 1rem;
}
.page-hero__desc {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}
.page-hero--responsible .page-hero__content {
    max-width: 700px;
}
.legal-content {
    padding: 80px 40px;
    background: var(--void);
}
.legal-content__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
}
.legal-content__sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}
.legal-nav {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 24px;
}
.legal-nav__title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slate);
}
.legal-nav__link {
    display: block;
    color: var(--gray-300);
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--slate);
    transition: all 0.3s var(--ease-out);
}
.legal-nav__link:last-child {
    border-bottom: none;
}
.legal-nav__link:hover {
    color: var(--primary);
    padding-left: 10px;
}
.legal-article {
    max-width: 800px;
}
.legal-section {
    margin-bottom: 60px;
    position: relative;
}
.legal-section__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--slate);
    line-height: 1;
    margin-bottom: 16px;
}
.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.legal-section p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-list {
    list-style: none;
    margin: 24px 0;
}
.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate);
}
.legal-list li:last-child {
    border-bottom: none;
}
.legal-list__icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.legal-list li span:last-child {
    color: var(--gray-200);
}
.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.cookie-type {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s var(--ease-out);
}
.cookie-type:hover {
    border-color: var(--primary);
}
.cookie-type__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.cookie-type__icon {
    font-size: 1.5rem;
}
.cookie-type h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}
.cookie-type p {
    color: var(--gray-400);
    margin: 0;
}
.info-box {
    display: flex;
    gap: 16px;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}
.info-box__icon {
    color: var(--primary);
    flex-shrink: 0;
}
.info-box p {
    margin: 0;
    color: var(--gray-300);
}
.info-box--warning {
    border-left-color: var(--gold);
}
.info-box--warning .info-box__icon {
    color: var(--gold);
}
.info-box--warning p {
    margin-bottom: 8px;
}
.info-box--warning p:last-child {
    margin-bottom: 0;
}
.contact-box {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}
.contact-box__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate);
    color: var(--gray-200);
}
.contact-box__item:last-child {
    border-bottom: none;
}
.contact-box__item svg {
    color: var(--primary);
    flex-shrink: 0;
}
.data-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.data-category {
    display: flex;
    gap: 16px;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s var(--ease-out);
}
.data-category:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}
.data-category__icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.data-category h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.data-category p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.95rem;
}
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.right-item {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}
.right-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.right-item__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.right-item h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.right-item p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}
.age-warning {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
}
.age-warning__badge {
    width: 80px;
    height: 80px;
    background: var(--error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.age-warning h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.age-warning p {
    color: var(--gray-300);
    margin: 0;
}
.disclaimer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.disclaimer-card {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s var(--ease-out);
}
.disclaimer-card:hover {
    border-color: var(--gold);
}
.disclaimer-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.disclaimer-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.disclaimer-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}
.rg-intro {
    padding: 80px 40px;
    background: var(--charcoal);
}
.rg-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.rg-intro h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.rg-intro p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}
.rg-intro__icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.rg-icon-item {
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}
.rg-icon-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.rg-icon-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.rg-icon-item p {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}
.rg-tips {
    padding: 80px 40px;
    background: var(--void);
}
.rg-tips__container {
    max-width: 1200px;
    margin: 0 auto;
}
.rg-tips__header {
    text-align: center;
    margin-bottom: 60px;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tip-card {
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}
.tip-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.tip-card__number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate);
    line-height: 1;
}
.tip-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.tip-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.tip-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.rg-warning {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
}
.rg-warning__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-tag--warning {
    color: var(--error);
}
.section-tag--warning::before {
    background: var(--error);
}
.rg-warning h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.rg-warning__content > p {
    color: var(--gray-300);
    margin-bottom: 24px;
}
.warning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
}
.warning-item:hover {
    border-color: var(--error);
}
.warning-item__icon {
    color: var(--error);
    flex-shrink: 0;
}
.warning-item span:last-child {
    color: var(--gray-200);
}
.warning-badge {
    background: var(--charcoal);
    border: 2px solid var(--error);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}
.warning-badge__icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}
.warning-badge__text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}
.rg-tools {
    padding: 80px 40px;
    background: var(--charcoal);
}
.rg-tools__container {
    max-width: 1200px;
    margin: 0 auto;
}
.rg-tools__header {
    text-align: center;
    margin-bottom: 60px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tool-card {
    background: var(--night);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}
.tool-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.tool-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.tool-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.tool-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}
.rg-help {
    padding: 80px 40px;
    background: var(--void);
}
.rg-help__container {
    max-width: 1000px;
    margin: 0 auto;
}
.rg-help__header {
    text-align: center;
    margin-bottom: 60px;
}
.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.help-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s var(--ease-out);
}
.help-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}
.help-card__logo {
    width: 60px;
    height: 60px;
    background: var(--night);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}
.help-card__logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s var(--ease-out);
}
.help-card:hover .help-card__logo img {
    filter: grayscale(0%);
    opacity: 1;
}
.help-card__content {
    flex: 1;
}
.help-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.help-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}
.help-card__arrow {
    color: var(--gray-500);
    transition: all 0.3s var(--ease-out);
}
.help-card:hover .help-card__arrow {
    color: var(--primary);
    transform: translate(5px, -5px);
}
.rg-remember {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--charcoal), var(--night));
}
.rg-remember__container {
    max-width: 700px;
    margin: 0 auto;
}
.rg-remember__content {
    text-align: center;
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 24px;
    padding: 60px 40px;
}
.rg-remember__icon {
    font-size: 4rem;
    margin-bottom: 24px;
}
.rg-remember h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.rg-remember p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 24px;
}
@media (max-width: 1024px) {
    .legal-content__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .legal-content__sidebar {
        position: static;
    }
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rg-intro__container,
    .rg-warning__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .page-hero {
        padding: 140px 24px 60px;
    }
    .legal-content {
        padding: 60px 24px;
    }
    .rights-grid,
    .disclaimer-cards {
        grid-template-columns: 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .help-grid {
        grid-template-columns: 1fr;
    }
    .rg-intro,
    .rg-tips,
    .rg-warning,
    .rg-tools,
    .rg-help,
    .rg-remember {
        padding: 60px 24px;
    }
    .rg-intro__icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .age-warning {
        flex-direction: column;
        text-align: center;
    }
    .warning-badge {
        padding: 30px 20px;
    }
    .rg-remember__content {
        padding: 40px 24px;
    }
}
@media (max-width: 540px) {
    .page-hero__title {
        font-size: 2rem;
    }
    .legal-section__number {
        font-size: 3rem;
    }
    .legal-section h2 {
        font-size: 1.5rem;
    }
    .rg-intro__icon-grid {
        grid-template-columns: 1fr;
    }
}