/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    --bg-deep: #001120;
    --bg-base: #001932;
    --bg-surface: #002148;
    --bg-elevated: #002b5c;
    --bg-hover: #003470;

    --gold: #fcd200;
    --gold-bright: #fde034;
    --gold-muted: #b89800;
    --gold-dim: rgba(252, 210, 0, 0.08);

    --text-primary: #eef0f5;
    --text-secondary: #7a8aaa;
    --text-muted: #4a5a7a;

    --success: #5a8a4a;
    --error: #b54a4a;
    --info: #4a6a8a;

    --border: #0a2a60;
    --border-subtle: #071f4a;

    --font-display: 'Poppins', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, sans-serif;

    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --nav-height: 64px;
    --page-max: 1100px;
    --radius: 6px;
    --radius-lg: 12px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.04), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(42, 53, 32, 0.3), transparent);
    background-attachment: fixed;
}

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

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

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

::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(0, 17, 32, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
    display: none;
}

.nav__inner {
    width: 100%;
    max-width: var(--page-max);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    gap: 2rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav__brand i {
    font-size: 1.2rem;
}

.nav__brand img {
    height: 32px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--text-primary);
    background: var(--gold-dim);
}

.nav__link i {
    font-size: 0.85rem;
    color: var(--gold-muted);
    transition: color 0.2s;
}

.nav__link:hover i {
    color: var(--gold);
}

.nav__link.active {
    color: var(--gold);
    background: var(--gold-dim);
}

.nav__link.active i {
    color: var(--gold);
}

.nav__link span {
    display: none;
}

.nav__site-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold-muted);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav__site-link:hover {
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
}

/* Mobile bottom nav */
.nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(0, 17, 32, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5rem;
}

.nav-mobile__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: color 0.2s, background 0.2s;
}

.nav-mobile__link:hover,
.nav-mobile__link.active {
    color: var(--gold);
    background: var(--gold-dim);
}

/* ============================================
   PAGES (SPA transitions)
   ============================================ */
.page {
    position: fixed;
    inset: 0;
    padding-top: var(--nav-height);
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo),
                visibility 0.5s;
    -webkit-overflow-scrolling: touch;
}

.page--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page--exiting {
    opacity: 0;
    transform: translateY(-12px);
}

.page__header {
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
    max-width: var(--page-max);
    margin: 0 auto;
}

.page__header--vip,
.page__header--mobile {
    text-align: center;
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.page__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.page__title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page__title--display {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.6;
}

.page__header--vip .page__subtitle,
.page__header--mobile .page__subtitle {
    margin: 0 auto;
}

.page__body {
    padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
    max-width: var(--page-max);
    margin: 0 auto;
}

/* ============================================
   BACK BUTTON
   ============================================ */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.back-btn:hover {
    color: var(--gold);
}

.back-btn i {
    transition: transform 0.2s var(--ease-out-quart);
}

.back-btn:hover i {
    transform: translateX(-3px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem) clamp(2rem, 4vw, 3rem);
    max-width: var(--page-max);
    margin: 0 auto;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
}

/* Hero decorative rings */
.hero__decoration {
    position: absolute;
    right: clamp(2rem, 8vw, 6rem);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(180px, 30vw, 320px);
    height: clamp(180px, 30vw, 320px);
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--gold-muted);
    opacity: 0.15;
}

.hero__ring--1 {
    inset: 0;
    animation: hero-ring-pulse 8s ease-in-out infinite;
}

.hero__ring--2 {
    inset: 20%;
    border-color: var(--gold);
    opacity: 0.1;
    animation: hero-ring-pulse 8s ease-in-out 2s infinite;
}

.hero__ring--3 {
    inset: 40%;
    opacity: 0.2;
    animation: hero-ring-pulse 8s ease-in-out 4s infinite;
}

@keyframes hero-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.08); opacity: 0.25; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
    padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
    max-width: var(--page-max);
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: var(--bg-base);
    transition: background 0.3s, transform 0.3s var(--ease-out-quart);
    position: relative;
}

.service-card:hover {
    background: var(--bg-surface);
}

.service-card--featured {
    grid-column: 1 / -1;
}


.service-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.service-card:hover .service-card__icon {
    background: rgba(252, 210, 0, 0.15);
}

.service-card--accent .service-card__icon {
    background: rgba(252, 210, 0, 0.15);
    color: var(--gold-bright);
}

.service-card__body {
    flex: 1;
    min-width: 0;
}

.service-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.service-card__desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-card__arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s, transform 0.2s var(--ease-out-quart);
}

.service-card:hover .service-card__arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* ============================================
   FORMS
   ============================================ */
.form-panel {
    max-width: 560px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form__optional {
    color: var(--text-muted);
    font-weight: 300;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold-muted);
    box-shadow: 0 0 0 3px var(--gold-dim);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b8570' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.form__select option {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__input.invalid,
.form__select.invalid,
.form__textarea.invalid {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(181, 74, 74, 0.12);
}

.form__hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    font-weight: 300;
}

.form--inline {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form--inline .form__group {
    margin-bottom: 0;
    flex: 1;
    min-width: 140px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.25s var(--ease-out-quart);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--bg-deep);
}

.btn--primary:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    background: transparent;
}

.btn--outline:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.btn--ghost {
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--border);
}

.btn--ghost:hover {
    border-color: var(--gold-muted);
    background: var(--gold-dim);
}

.btn--full { width: 100%; }

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
}

/* ============================================
   SUPPORT OPTIONS (accordion)
   ============================================ */
.support-options {
    max-width: 720px;
}

.support-option {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.support-option:hover {
    background: var(--bg-surface);
    border-color: var(--border);
}

.support-option.active {
    border-color: var(--gold-muted);
    background: var(--bg-surface);
}

.support-option__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.support-option__title {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.support-option__desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.support-option__toggle {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s var(--ease-out-quart);
    justify-self: center;
}

.support-option.active .support-option__toggle {
    transform: rotate(180deg);
    color: var(--gold);
}

.support-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-quart), opacity 0.3s, padding 0.3s;
    opacity: 0;
    padding: 0 1.25rem;
}

.support-form.open {
    max-height: 600px;
    opacity: 1;
    padding: 1rem 1.25rem 1.5rem;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    height: 1px;
    background: var(--border-subtle);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

/* ============================================
   TWO-COLUMN LAYOUT (form + sidebar query)
   ============================================ */
.page__two-col {
    display: flex;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: flex-start;
}

.page__two-col > .support-options,
.page__two-col > .form-panel {
    flex: 1;
    min-width: 0;
}

.sidebar-query {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.sidebar-query__card {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.sidebar-query__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.sidebar-query__title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.sidebar-query__desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* ============================================
   VIP TIERS
   ============================================ */
.vip-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.vip-tier {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s var(--ease-out-quart);
}

.vip-tier:hover {
    border-color: var(--border);
    transform: translateY(-2px);
}

.vip-tier--highlighted {
    border-color: var(--gold-muted);
    background: linear-gradient(to bottom, rgba(252, 210, 0, 0.06), var(--bg-base));
    position: relative;
}

.vip-tier--highlighted::before {
    content: 'Popüler';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-deep);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vip-tier__badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--tier-color, var(--gold));
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.vip-tier__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.vip-tier__perks {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 1.5rem;
    flex: 1;
}

.vip-tier__perks li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.vip-tier__perks li i {
    color: var(--gold);
    font-size: 0.6rem;
    margin-top: 0.35em;
    flex-shrink: 0;
}

/* VIP Apply */
.vip-apply {
    max-width: 560px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.vip-apply__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq__item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq__item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}

.faq__question:hover {
    color: var(--gold);
}

.faq__question i {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s var(--ease-out-quart), color 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__item.open .faq__question i {
    transform: rotate(45deg);
    color: var(--gold);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-quart), padding 0.3s;
}

.faq__item.open .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding-bottom: 1rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ============================================
   STEPS (Deposit page)
   ============================================ */
.steps {
    max-width: 560px;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: calc(1.25rem + 36px);
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.step__number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ============================================
   INFO BOX
   ============================================ */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-lg);
    max-width: 560px;
}

.info-box i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.info-box p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.info-box a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.info-box a:hover {
    color: var(--gold-bright);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    padding: 1.5rem;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.contact-card:hover {
    border-color: var(--border);
}

.contact-card__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.contact-card__title {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.contact-card__phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    transition: color 0.2s;
}

.contact-card__phone:hover {
    color: var(--gold);
}

.contact-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.contact-link:hover {
    border-color: var(--gold-muted);
    background: var(--gold-dim);
    color: var(--gold);
}

.contact-link i {
    font-size: 1.1rem;
}

/* ============================================
   MOBILE APP
   ============================================ */
.app-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.app-download {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.25s var(--ease-out-quart);
}

.app-download:hover {
    border-color: var(--gold-muted);
    background: var(--bg-surface);
    transform: translateY(-2px);
}

.app-download i {
    font-size: 1.75rem;
    color: var(--gold);
}

.app-download__label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.app-download__platform {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.feature {
    padding: 0;
}

.feature__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.feature__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* How-to */
.how-to {
    max-width: 480px;
}

.how-to__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-to__steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.how-to__step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.how-to__num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
}

.how-to__step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: calc(var(--nav-height) + 12px);
    right: 16px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
    pointer-events: auto;
    max-width: 360px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.toast.show {
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}

.toast--success {
    border-left: 3px solid var(--success);
}

.toast--success i { color: var(--success); }

.toast--error {
    border-left: 3px solid var(--error);
}

.toast--error i { color: var(--error); }

.toast--info {
    border-left: 3px solid var(--info);
}

.toast--info i { color: var(--info); }

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
.page--active .service-card,
.page--active .vip-tier,
.page--active .contact-card,
.page--active .app-download,
.page--active .feature,
.page--active .step,
.page--active .support-option {
    animation: fade-up 0.5s var(--ease-out-expo) backwards;
}

.page--active .service-card:nth-child(1) { animation-delay: 0.05s; }
.page--active .service-card:nth-child(2) { animation-delay: 0.1s; }
.page--active .service-card:nth-child(3) { animation-delay: 0.15s; }
.page--active .service-card:nth-child(4) { animation-delay: 0.2s; }
.page--active .service-card:nth-child(5) { animation-delay: 0.25s; }
.page--active .service-card:nth-child(6) { animation-delay: 0.3s; }
.page--active .service-card:nth-child(7) { animation-delay: 0.35s; }

.page--active .vip-tier:nth-child(1) { animation-delay: 0.05s; }
.page--active .vip-tier:nth-child(2) { animation-delay: 0.1s; }
.page--active .vip-tier:nth-child(3) { animation-delay: 0.15s; }
.page--active .vip-tier:nth-child(4) { animation-delay: 0.2s; }
.page--active .vip-tier:nth-child(5) { animation-delay: 0.25s; }
.page--active .vip-tier:nth-child(6) { animation-delay: 0.3s; }

.page--active .step:nth-child(1) { animation-delay: 0.05s; }
.page--active .step:nth-child(2) { animation-delay: 0.15s; }
.page--active .step:nth-child(3) { animation-delay: 0.25s; }
.page--active .step:nth-child(4) { animation-delay: 0.35s; }

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .nav__link span { display: inline; }
}

@media (min-width: 992px) {
    .nav { display: flex; }
    .nav-mobile { display: none; }

    .page {
        padding-bottom: 0;
    }

    .services__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .service-card--featured {
        grid-column: 1 / -1;
    }

    .service-card:not(.service-card--featured) {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .nav { display: none; }
    .nav-mobile { display: flex; }

    :root {
        --nav-height: 0px;
    }

    .page {
        padding-bottom: 72px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .vip-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hero__decoration {
        display: none;
    }

    .page__two-col {
        flex-direction: column;
    }

    .sidebar-query {
        width: 100%;
        position: static;
    }
}

@media (max-width: 480px) {
    .form--inline {
        flex-direction: column;
    }

    .form--inline .form__group {
        min-width: 100%;
    }

    .vip-tiers {
        grid-template-columns: 1fr;
    }

    .app-downloads {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
.page::-webkit-scrollbar {
    width: 6px;
}

.page::-webkit-scrollbar-track {
    background: transparent;
}

.page::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.page::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
