/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --text-primary: #e8e8ef;
    --text-secondary: #9494a8;
    --text-muted: #5a5a6e;
    --accent: #7b30d8;
    --accent-light: #9b5ae8;
    --accent-glow: rgba(123, 48, 216, 0.3);
    --gradient-1: linear-gradient(135deg, #7b30d8, #27a7e7);
    --gradient-2: linear-gradient(135deg, #7b30d8, #e44d8e);
    --gradient-3: linear-gradient(135deg, #27a7e7, #7b30d8);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 48, 216, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: transform;
}

/* ============================================
   PARTICLES
   ============================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(123, 48, 216, 0.5);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-outline {
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    background: transparent;
    padding: 14px 32px;
    border-radius: 50px;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(123, 48, 216, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(123, 48, 216, 0.25);
    top: -10%;
    right: -5%;
    animation: morphShape1 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(39, 167, 231, 0.2);
    bottom: -10%;
    left: -5%;
    animation: morphShape2 18s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(228, 77, 142, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morphShape3 12s ease-in-out infinite;
}

@keyframes morphShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.9); }
}

@keyframes morphShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.15); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes morphShape3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(123, 48, 216, 0.12);
    border: 1px solid rgba(123, 48, 216, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bobUpDown 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    border-radius: 3px;
    background: var(--accent-light);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes bobUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(123, 48, 216, 0.15));
    pointer-events: none;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.about-link:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(123, 48, 216, 0.08);
    transform: translateX(4px);
}

.about-link svg {
    color: var(--accent-light);
    flex-shrink: 0;
}

.about-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
}

.about-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.about-role {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(123, 48, 216, 0.1);
    border: 1px solid rgba(123, 48, 216, 0.25);
    color: var(--accent-light);
    letter-spacing: 0.01em;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-note {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: rgba(123, 48, 216, 0.06);
    border: 1px solid rgba(123, 48, 216, 0.15);
    border-radius: var(--radius-sm);
}

.about-note-icon {
    flex-shrink: 0;
    color: var(--accent-light);
    margin-top: 2px;
}

.about-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(123, 48, 216, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 48, 216, 0.1);
    border: 1px solid rgba(123, 48, 216, 0.2);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--accent-light);
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: rgba(123, 48, 216, 0.18);
    border-color: rgba(123, 48, 216, 0.35);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   ADVANTAGE
   ============================================ */
.advantage {
    padding: 80px 0;
}

.advantage-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 900;
    color: rgba(123, 48, 216, 0.04);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.advantage-block .section-label,
.advantage-block .section-title,
.advantage-block .advantage-text,
.advantage-block .btn {
    position: relative;
    z-index: 1;
}

.advantage-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    max-width: 700px;
    margin: 0 auto 24px;
}

.advantage-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 16px;
}

.advantage-text:last-of-type {
    margin-bottom: 32px;
}

/* ============================================
   GIFT
   ============================================ */
.gift {
    padding: 100px 0;
    position: relative;
}

.gift::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(39, 167, 231, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.gift .section-header {
    margin-bottom: 70px;
}

.gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.gift-grid:last-child {
    margin-bottom: 0;
}

.gift-grid-reverse {
    direction: rtl;
}

.gift-grid-reverse > * {
    direction: ltr;
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 167, 231, 0.12);
    border: 1px solid rgba(39, 167, 231, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #27a7e7;
    margin-bottom: 24px;
}

.gift-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gift-desc {
    font-size: 1.1rem;
    color: var(--accent-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.gift-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.gift-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gift-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.gift-list li svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* Book visual */
.gift-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gift-book {
    position: relative;
    perspective: 800px;
}

.book-cover {
    width: 260px;
    height: 360px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 4px 16px 16px 4px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 
        12px 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(123, 48, 216, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: bookFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes bookFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-12px) rotateY(0deg); }
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(123, 48, 216, 0.3);
    border-radius: 8px;
    pointer-events: none;
}

.book-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.book-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.book-badge-inner {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.book-spine {
    position: absolute;
    left: -8px;
    top: 4px;
    bottom: 4px;
    width: 8px;
    background: linear-gradient(180deg, #0f3460, #1a1a2e);
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
}

.gift-float-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #052e16;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gift 2 styles */
.gift-badge-2 {
    background: rgba(228, 77, 142, 0.12);
    border-color: rgba(228, 77, 142, 0.3);
    color: #e44d8e;
}

.gift-desc-2 {
    color: #e44d8e;
}

.book-cover-2 {
    background: linear-gradient(135deg, #1a0a1e 0%, #2d1036 50%, #451050 100%);
    box-shadow:
        12px 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(228, 77, 142, 0.1);
}

.book-cover-2::before {
    border-color: rgba(228, 77, 142, 0.3);
}

.book-emoji {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.book-badge-2 {
    background: #e44d8e;
}

.book-spine-2 {
    background: linear-gradient(180deg, #451050, #1a0a1e);
}

.gift-float-badge-2 {
    background: linear-gradient(135deg, #e44d8e, #c0397a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(228, 77, 142, 0.3);
}

.gift-book-2 .book-cover {
    animation: bookFloat2 4s ease-in-out infinite;
}

@keyframes bookFloat2 {
    0%, 100% { transform: translateY(0) rotateY(5deg); }
    50% { transform: translateY(-12px) rotateY(0deg); }
}

/* ============================================
   SIGNUP
   ============================================ */
.signup {
    padding: 100px 0;
}

.signup-block {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.signup-block::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
}

.signup-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 28px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.contact-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-max {
    background: #7b30d8;
    box-shadow: 0 4px 20px rgba(123, 48, 216, 0.3);
}

.contact-max:hover {
    box-shadow: 0 8px 32px rgba(123, 48, 216, 0.5);
}

.contact-vk {
    background: #4d7198;
    box-shadow: 0 4px 20px rgba(77, 113, 152, 0.3);
}

.contact-vk:hover {
    box-shadow: 0 8px 32px rgba(77, 113, 152, 0.5);
}

.contact-email {
    background: #e74c3c;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.contact-email:hover {
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.5);
}

.contact-telegram {
    background: #27a7e7;
    box-shadow: 0 4px 20px rgba(39, 167, 231, 0.3);
}

.contact-telegram:hover {
    box-shadow: 0 8px 32px rgba(39, 167, 231, 0.5);
}

.contact-phone {
    background: #4ade80;
    color: #052e16;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.contact-phone:hover {
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.5);
}

.email-copy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    margin-top: 8px;
}

.email-copy-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    user-select: all;
}

.email-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(123, 48, 216, 0.12);
    border: 1px solid rgba(123, 48, 216, 0.25);
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.email-copy-btn:hover {
    background: rgba(123, 48, 216, 0.2);
    border-color: var(--accent);
}

.email-copy-btn.copied {
    background: rgba(74, 222, 128, 0.12);
    border-color: rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-privacy-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 24px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 340px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gift-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gift-grid-reverse {
        direction: ltr;
    }

    .gift-visual {
        order: -1;
    }

    .advantage-block {
        padding: 40px 24px;
    }

    .signup-block {
        padding: 40px 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .email-copy {
        flex-direction: column;
        border-radius: var(--radius-sm);
        padding: 14px;
        gap: 8px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .cursor-glow {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .book-cover {
        width: 220px;
        height: 300px;
        padding: 30px 24px;
    }

    .book-title {
        font-size: 1.3rem;
    }
}
