/* ═══════════════════════════════════════════════════════
   SERAP YILDIZ BILGEHAN — DESIGN SYSTEM
   Cyber-Mystic Theme: Premium Bilgelik Evi
   ═══════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
    /* Colors */
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1424;
    --bg-card: rgba(15, 20, 40, 0.6);
    --bg-glass: rgba(15, 20, 40, 0.4);

    --gold: #d4a855;
    --gold-light: #f0d48a;
    --gold-dark: #a07830;
    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #6d28d9;
    --indigo: #6366f1;
    --violet: #4c1d95;

    --text-primary: #e8e0f0;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --text-gold: var(--gold);

    --border-subtle: rgba(139, 92, 246, 0.15);
    --border-gold: rgba(212, 168, 85, 0.3);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Cormorant Garamond', serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;
    --gap: 2rem;

    /* Effects */
    --glass-blur: blur(16px);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-gold: 0 0 30px rgba(212, 168, 85, 0.15);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.15);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ─── SECTION HEADERS ─── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(212, 168, 85, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple-light);
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
}

/* ─── NAVIGATION ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.3rem;
    color: var(--gold);
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    padding: 0.55rem 1.25rem !important;
    border-radius: 50px;
    color: white !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ─── TAROT CARDS ─── */
.tarot-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.tarot-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    perspective: 1200px;
    margin-bottom: 2rem;
}

.tarot-card {
    width: 220px;
    height: 340px;
    cursor: pointer;
    perspective: 1000px;
    transition: transform 0.4s ease;
}

.tarot-card:hover {
    transform: translateY(-12px);
}

.tarot-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.tarot-card.flipped .tarot-card-inner {
    transform: rotateY(180deg);
}

.tarot-card-front,
.tarot-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

.tarot-card-front {
    background: linear-gradient(145deg, #12163a 0%, #1a1040 50%, #0d1030 100%);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-gold);
}

.card-pattern {
    text-align: center;
}

.card-star {
    font-size: 3rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 168, 85, 0.5);
    animation: twinkle 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.card-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-dark);
    letter-spacing: 0.2em;
}

.tarot-card-front::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 168, 85, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.tarot-card-front::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(212, 168, 85, 0.05) 40%,
            rgba(212, 168, 85, 0.1) 50%,
            rgba(212, 168, 85, 0.05) 60%,
            transparent 70%);
    animation: cardShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardShimmer {
    0% {
        transform: translate(-30%, -30%) rotate(0deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(0deg);
    }
}

.tarot-card-back {
    background: linear-gradient(145deg, #1a1050 0%, #0d0830 100%);
    border: 1px solid var(--border-subtle);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-purple);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.card-name {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-message {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.tarot-hint {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tarot-hint i {
    margin-right: 0.5rem;
    color: var(--gold);
}

/* ─── PRICING / SERVICES ─── */
.services-section {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple-light);
}

.pricing-name {
    font-size: 1.5rem;
    margin: 0.5rem 0 0.25rem;
    color: var(--text-primary);
}

.pricing-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-price {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.price-period {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    font-size: 0.8rem;
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-card .btn-outline,
.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ─── ACADEMY / LEARNING PATH ─── */
.academy-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.academy-path {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.path-node {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.path-node:last-child {
    margin-bottom: 0;
}

.path-node:last-child .node-connector {
    display: none;
}

.node-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-subtle);
    background: var(--bg-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.node-dot.active {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 0 15px rgba(212, 168, 85, 0.4);
}

.node-connector {
    position: absolute;
    left: 9px;
    top: 30px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, var(--border-subtle), transparent);
}

.node-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    flex: 1;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition);
}

.node-content:hover {
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
    transform: translateX(8px);
}

.node-badge {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple-light);
    margin-bottom: 0.25rem;
}

.node-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.node-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.node-meta {
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.node-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.node-meta i {
    color: var(--gold);
    font-size: 0.75rem;
}

.node-status {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}

.node-status.available {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.node-status.coming {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple-light);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── BLOG ─── */
.blog-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--violet), #1a1050);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(10, 14, 23, 0.8);
    color: var(--gold);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    color: var(--gold-light);
    gap: 0.75rem;
}

/* ─── FOOTER ─── */
.footer {
    padding: 5rem 0 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

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

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 85, 0.1);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li i {
    font-size: 0.85rem;
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-newsletter h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 0.65rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

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

.newsletter-form input:focus {
    border-color: var(--purple);
    box-shadow: var(--glow-purple);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--purple-light);
}

.footer-credit a:hover {
    color: var(--gold);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-top: 0.75rem;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-cta {
        text-align: center;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

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

    .hero-scroll {
        display: none;
    }

    .tarot-card {
        width: 180px;
        height: 280px;
    }

    .tarot-cards {
        gap: 1.5rem;
    }

    .path-node {
        gap: 1.25rem;
    }

    .node-content {
        padding: 1.25rem 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .tarot-cards {
        gap: 1rem;
    }

    .tarot-card {
        width: 150px;
        height: 240px;
    }

    .card-star {
        font-size: 2rem;
    }

    .card-name {
        font-size: 0.9rem;
    }

    .card-message {
        font-size: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher-item {
    list-style: none;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    background: rgba(212, 168, 85, 0.08);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.lang-switcher:hover {
    background: rgba(212, 168, 85, 0.18);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(212, 168, 85, 0.2);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-label {
    letter-spacing: 0.08em;
}