/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
    /* Colors */
    --bg-primary: #07060d;
    --bg-secondary: #0d0b18;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    --text-primary: #f0eef6;
    --text-secondary: rgba(240, 238, 246, 0.65);
    --text-muted: rgba(240, 238, 246, 0.4);

    --accent-purple: #8b5cf6;
    --accent-violet: #a855f7;
    --accent-lime: #ecff8c;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;

    --gradient-main: linear-gradient(135deg, #6c3ce0 0%, #a855f7 50%, #ec4899 100%);
    --gradient-rainbow: linear-gradient(90deg, #6c3ce0, #a855f7, #3b82f6, #06b6d4, #10b981, #ecff8c, #f59e0b, #ec4899, #6c3ce0);
    --gradient-card-border: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.3));

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --section-py: clamp(60px, 10vw, 120px);
    --container-px: clamp(16px, 4vw, 40px);
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ═══════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════ */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-lime);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(32px, 6vw, 64px);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-violet);
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background var(--transition-medium), border-color var(--transition-medium), transform var(--transition-medium);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   ANIMATED BUTTON
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast), box-shadow var(--transition-medium);
}

.btn--primary {
    background: var(--gradient-main);
    color: #fff;
}

.btn--glow {
    overflow: visible;
}

/* Rainbow animated border */
.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-rainbow);
    background-size: 300% 100%;
    animation: rainbow-shift 4s linear infinite;
    z-index: -2;
    opacity: 0.7;
    transition: opacity var(--transition-medium);
}

.btn--glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-main);
    z-index: -1;
    transition: opacity var(--transition-medium);
}

.btn--glow:hover::before {
    opacity: 1;
    animation-duration: 2s;
}

.btn--glow:hover::after {
    opacity: 0.85;
}

.btn--glow:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(168, 85, 247, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn--glow:active {
    transform: translateY(0) scale(0.98);
}

.btn__arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

@keyframes rainbow-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════
   TOAST POPUP
   ═══════════════════════════════════════════ */
.toast {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(13, 11, 24, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x;
    max-width: calc(100vw - 40px);
}

.toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.toast.is-swiping {
    transition: none;
}

.toast.is-dismissed {
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.3s ease-in, opacity 0.25s ease-in;
}

.toast__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.toast__name {
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast__city {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.toast__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.toast__close:hover {
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(80px, 12vh, 140px) 0 var(--section-py);
    overflow: hidden;
}

.hero__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6c3ce0 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float-orb 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float-orb 15s ease-in-out infinite reverse;
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

.hero__title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 520px;
    line-height: 1.7;
}

.hero__date {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    display: inline-flex;
}

.hero__date-icon {
    font-size: 1.3rem;
}

.hero__date-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__date-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero__date-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-lime);
}

.hero__bonus {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 18px;
    background: rgba(236, 255, 140, 0.05);
    border: 1px solid rgba(236, 255, 140, 0.15);
    border-radius: var(--radius-md);
    max-width: 420px;
}

.hero__bonus-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.hero__bonus-text strong {
    color: var(--accent-lime);
}

/* Hero Photo */
.hero__photo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero__photo-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}

.hero__photo-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-rainbow);
    background-size: 300% 100%;
    animation: rainbow-shift 6s linear infinite;
    z-index: 0;
    opacity: 0.6;
}

.hero__photo-frame::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-primary);
    border-radius: calc(var(--radius-xl) - 2px);
    z-index: 1;
}

.hero__img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-xl) - 2px);
    object-fit: cover;
}

.hero__photo-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 18px;
    background: rgba(13, 11, 24, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__photo-badge-rate {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-lime);
}

.hero__photo-badge-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   AUTHORITY — ДIIA БIЗНЕС
   ═══════════════════════════════════════════ */
.authority {
    padding: var(--section-py) 0;
    position: relative;
}

.authority__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
}

.authority__logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.authority__logo {
    height: 40px;
    width: auto;
    opacity: 0.85;
}

.authority__logo--ua {
    height: 36px;
}

.authority__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.authority__desc {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.authority__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.authority__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════
   CLIENTS
   ═══════════════════════════════════════════ */
.clients {
    padding: var(--section-py) 0;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 24px);
}

.clients__card {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.clients__card-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.clients__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.clients__card:hover .clients__card-img img {
    transform: scale(1.05);
}

.clients__card-info {
    padding: 16px 12px;
}

.clients__card-name {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 700;
    margin-bottom: 4px;
}

.clients__card-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   UPWORK STATS
   ═══════════════════════════════════════════ */
.upwork {
    padding: var(--section-py) 0;
    position: relative;
}

.upwork__wrapper {
    position: relative;
}

.upwork__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: 24px;
}

.upwork__stat {
    text-align: center;
    padding: clamp(20px, 3vw, 32px) clamp(12px, 2vw, 20px);
    position: relative;
    overflow: hidden;
}

.upwork__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.upwork__stat-value {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.upwork__stat-label {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: var(--text-secondary);
    font-weight: 500;
}

.upwork__badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.upwork__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(236, 255, 140, 0.06);
    border: 1px solid rgba(236, 255, 140, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-lime);
}

.upwork__badge-icon {
    font-size: 1.1rem;
}

.upwork__profile-img {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.upwork__profile-img img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════
   TARGET AUDIENCE
   ═══════════════════════════════════════════ */
.audience {
    padding: var(--section-py) 0;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.audience__card {
    padding: clamp(24px, 3vw, 36px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.audience__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.audience__card:hover::before {
    opacity: 1;
}

.audience__card-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: icon-float 3s ease-in-out infinite;
}

.audience__card:nth-child(2) .audience__card-icon {
    animation-delay: 0.3s;
}

.audience__card:nth-child(3) .audience__card-icon {
    animation-delay: 0.6s;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.audience__card-title {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.audience__card-desc {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   WHY ATTEND
   ═══════════════════════════════════════════ */
.why {
    padding: var(--section-py) 0;
    position: relative;
}

.why__grid {
    display: grid;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.why__item {
    display: flex;
    gap: clamp(16px, 3vw, 28px);
    padding: clamp(20px, 3vw, 32px) 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color var(--transition-medium);
}

.why__item:last-child {
    border-bottom: none;
}

.why__item:hover {
    border-color: rgba(139, 92, 246, 0.2);
}

.why__item-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--transition-medium);
}

.why__item:hover .why__item-number {
    opacity: 1;
}

.why__item-content h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why__item-content p {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SPEAKER
   ═══════════════════════════════════════════ */
.speaker {
    padding: var(--section-py) 0;
}

.speaker__inner {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.speaker__photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.speaker__photo img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.speaker__name {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 12px 0 6px;
    letter-spacing: -0.02em;
}

.speaker__role {
    font-size: 1rem;
    color: var(--accent-violet);
    font-weight: 600;
    margin-bottom: 24px;
}

.speaker__facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.speaker__facts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.5;
    color: var(--text-secondary);
    transition: color var(--transition-medium);
}

.speaker__facts li:hover {
    color: var(--text-primary);
}

.speaker__fact-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════
   CHOICE — COMPARISON
   ═══════════════════════════════════════════ */
.choice {
    padding: var(--section-py) 0;
}

.choice__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 28px);
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.choice__card {
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    display: flex;
    flex-direction: column;
}

.choice__card--stale {
    opacity: 0.65;
    border: 1px solid var(--border-subtle);
}

.choice__card--recommended {
    border: 2px solid var(--accent-violet);
    box-shadow:
        0 0 30px rgba(139, 92, 246, 0.15),
        0 0 60px rgba(139, 92, 246, 0.05);
}

.choice__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 5px 16px;
    background: var(--accent-violet);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.choice__card-title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.choice__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.choice__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    line-height: 1.5;
    color: var(--text-secondary);
}

.choice__list-icon {
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 2px;
}

.choice__list-icon--dim {
    color: var(--text-muted);
    font-size: 1rem;
}

.choice__list-icon--check {
    color: var(--accent-violet);
    font-size: 1.05rem;
}

.choice__btn {
    margin-top: 28px;
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════════
   REGISTRATION
   ═══════════════════════════════════════════ */
.registration {
    padding: var(--section-py) 0;
    position: relative;
}

.registration__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.registration__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-rainbow);
    background-size: 300% 100%;
    animation: rainbow-shift 4s linear infinite;
}

.registration__title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.registration__subtitle {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.registration__subtitle strong {
    color: var(--accent-lime);
}

.registration__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-lime);
    margin-bottom: 28px;
}

/* Smart Sender form container */
.ss-landing {
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   STICKY CTA
   ═══════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 0;
    background: linear-gradient(to top, rgba(7, 6, 13, 0.95) 60%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.sticky-cta.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.sticky-cta .container {
    display: flex;
    justify-content: center;
}

.btn--sticky {
    width: 100%;
    max-width: 400px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__orb--1 {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -50px;
    }

    .hero__orb--2 {
        width: 250px;
        height: 250px;
    }

    .hero__subtitle {
        max-width: 600px;
    }

    .hero__bonus {
        max-width: 500px;
    }

    .hero__photo {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero__photo-badge {
        right: -5px;
    }

    .authority__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority__logos {
        justify-content: center;
    }

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

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

    .audience__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .speaker__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .speaker__photo {
        max-width: 320px;
        margin: 0 auto;
    }

    .speaker__facts {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .choice__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero {
        padding-top: 40px;
        min-height: auto;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero__photo {
        max-width: 280px;
    }

    .hero__photo-badge {
        bottom: 12px;
        right: -5px;
        padding: 8px 14px;
    }

    .hero__photo-badge-rate {
        font-size: 1.1rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .clients__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .clients__card-info {
        padding: 10px 8px;
    }

    .upwork__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .toast {
        left: 10px;
        right: 10px;
        top: 10px;
        max-width: none;
    }

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

    .registration__inner {
        padding: 24px 16px;
    }

    .btn--sticky {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════
   EXTRA: Particle-like floating dots (decorative)
   ═══════════════════════════════════════════ */
.hero::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-violet);
    border-radius: 50%;
    top: 20%;
    left: 15%;
    box-shadow:
        60vw 10vh 0 rgba(139, 92, 246, 0.3),
        20vw 60vh 0 rgba(236, 255, 140, 0.2),
        80vw 30vh 0 rgba(236, 72, 153, 0.3),
        40vw 80vh 0 rgba(59, 130, 246, 0.2),
        70vw 70vh 0 rgba(139, 92, 246, 0.2),
        10vw 40vh 0 rgba(168, 85, 247, 0.15);
    animation: twinkle 5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes twinkle {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}