/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
    --bg: #06060c;
    --bg-card: #0e0e18;
    --text: #f2f2f2;
    --text-muted: #888;
    --primary: #ff2a2a;
    --primary-dark: #b91c1c;
    --accent: #ffd700;
    --accent-dim: rgba(255, 215, 0, 0.15);
    --glow-red: rgba(255, 42, 42, 0.5);
    --glow-gold: rgba(255, 215, 0, 0.4);
    --border: rgba(255, 255, 255, 0.06);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   PARTICLES CANVAS
   ═══════════════════════════════════════ */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    z-index: 1;
    overflow: hidden;
}

/* Animated SVG Pokeballs in background */
.svg-ring {
    position: absolute;
    fill: none;
    stroke-width: 1.5;
    opacity: 0.14;
}
.svg-ring line, .svg-ring circle {
    stroke-linecap: round;
}
.ring-1 {
    width: 650px; height: 650px;
    top: -120px; right: -120px;
    stroke: var(--primary);
    animation: spinSlow 35s linear infinite;
}
.ring-2 {
    width: 450px; height: 450px;
    top: 40px; right: -20px;
    stroke: var(--accent);
    animation: spinSlow 28s linear reverse infinite;
}
.ring-3 {
    width: 850px; height: 850px;
    bottom: -220px; left: -220px;
    stroke: var(--primary);
    animation: spinSlow 45s linear infinite;
}

@keyframes drawRing {
    to { stroke-dashoffset: 0; }
}
@keyframes drawRing2 {
    to { stroke-dashoffset: 0; }
}
@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

/* Animated pokeball */
.pokeball-svg {
    position: absolute;
    width: 120px; height: 120px;
    bottom: 15%; left: 8%;
    opacity: 0.1;
    animation: spinSlow 20s linear infinite, floatY 6s ease-in-out infinite;
}
.pb-top { fill: none; stroke: var(--primary); stroke-width: 3; }
.pb-line { stroke: var(--primary); stroke-width: 3; }
.pb-center-outer { fill: none; stroke: var(--primary); stroke-width: 3; }
.pb-center-inner { fill: var(--primary); opacity: 0.5; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero inner layout */
.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text { flex: 1; }

.game-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.hero-pre-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(4rem, 11vw, 9rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.hero h1 .line {
    display: block;
}
.hero h1 .line:last-child {
    color: var(--primary);
    text-shadow: 0 0 40px var(--glow-red);
}

.hero-tagline {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}
.hero-tagline strong { color: var(--text); }

/* Hero CTA */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.2rem;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    box-shadow: 0 0 0 0 var(--glow-red);
}
.btn-hero svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-hero:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--glow-red);
}
.btn-hero:hover svg { transform: translateX(4px); }
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}
.btn-hero:hover::before { left: 100%; }

/* Hero image */
.hero-image {
    position: absolute;
    right: -2vw;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}
.hero-image img {
    display: block;
    height: 85vh;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: contrast(1.1) brightness(1.05) saturate(1.08) drop-shadow(-20px 0 50px rgba(255, 42, 42, 0.4));
}
.image-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--glow-red), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-family: var(--font-display);
}
.mouse-svg { width: 24px; height: 40px; }
.mouse-body { fill: none; stroke: var(--text-muted); stroke-width: 2; }
.mouse-wheel {
    fill: var(--primary);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { cy: 12; opacity: 1; }
    100% { cy: 26; opacity: 0; }
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider svg { width: 2px; height: 40px; }
.divider-line {
    stroke: var(--border);
    stroke-width: 2;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}
.stat-divider.animated .divider-line {
    animation: drawLine 1s var(--ease-out) forwards;
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}
.header-line svg { width: 100px; height: 4px; }
.line-fill {
    fill: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
}
.section-header.anim-done .line-fill {
    animation: scaleLineX 0.8s 0.3s var(--ease-out) forwards;
}
@keyframes scaleLineX {
    to { transform: scaleX(1); }
}

/* ═══════════════════════════════════════
   ACHIEVEMENTS
   ═══════════════════════════════════════ */
.achievements {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    overflow: hidden;
}

.achievements-bg-isaac {
    position: absolute;
    right: -5%;
    bottom: 0;
    height: 90%;
    width: auto;
    object-fit: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(30%);
}

/* Decorative SVG line */
.section-deco {
    position: absolute;
    top: 0; left: 2rem;
    width: 20px; height: 100%;
}
.deco-path {
    stroke: var(--border);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.deco-dot { fill: var(--primary); opacity: 0; }
.achievements.in-view .deco-path {
    animation: drawDeco 3s var(--ease-out) forwards;
}
.achievements.in-view .deco-dot {
    animation: popDot 0.5s var(--ease-spring) forwards;
}
.achievements.in-view .deco-dot:nth-child(2) { animation-delay: 0.8s; }
.achievements.in-view .deco-dot:nth-child(3) { animation-delay: 1.6s; }
.achievements.in-view .deco-dot:nth-child(4) { animation-delay: 2.4s; }
@keyframes drawDeco {
    to { stroke-dashoffset: 0; }
}
@keyframes popDot {
    0% { opacity: 0; r: 0; }
    60% { r: 10; }
    100% { opacity: 1; r: 6; }
}

/* Achievement hero image */
.achievements-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}
.achievements-hero img {
    max-width: 420px;
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.25));
}
.achievements-hero-glow {
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--glow-gold), transparent 70%);
    filter: blur(50px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Trophies row — no cards, big images */
.trophy-grid, .trophies-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trophy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 0px;
    max-width: 360px;
}

.trophy-img-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    cursor: pointer;
    overflow: visible;
    padding: 10px;
}

.trophy-img-wrap img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
    transition: filter 0.4s;
}

.trophy-item:hover .trophy-img-wrap img {
    transform: none !important;
    filter: drop-shadow(0 15px 45px rgba(255, 215, 0, 0.65));
}

/* Trophy label */
.trophy-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trophy-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent), #fff5c0, var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}

.trophy-year {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 4px;
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    background: var(--bg-card);
}
.services-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}
.service-item:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: -4px 0 20px var(--glow-red);
}
.service-icon svg { width: 56px; height: 56px; flex-shrink: 0; }
.svc-bg { fill: rgba(255, 42, 42, 0.1); stroke: var(--primary); stroke-width: 1; }
.svc-icon { fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}
.service-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
}
.pricing-single-wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.pricing-card {
    position: relative;
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Featured card */
.card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.15);
}
.card-featured:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(255, 42, 42, 0.25);
}
.card-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 42, 42, 0.4);
    text-transform: uppercase;
}

.pricing-bg-svg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    pointer-events: none;
}
.price-circle {
    fill: none;
    stroke-width: 1;
    opacity: 0.06;
}
.c1 { stroke: var(--primary); stroke-dasharray: 1130; stroke-dashoffset: 1130; }
.c2 { stroke: var(--accent); stroke-dasharray: 942; stroke-dashoffset: 942; }
.c3 { stroke: var(--primary); stroke-dasharray: 753; stroke-dashoffset: 753; }
.pricing-card.anim-done .c1 { animation: drawSvgPath 2s 0.2s var(--ease-out) forwards, spinSlow 30s linear infinite; }
.pricing-card.anim-done .c2 { animation: drawSvgPath 2s 0.5s var(--ease-out) forwards, spinSlow 25s linear reverse infinite; }
.pricing-card.anim-done .c3 { animation: drawSvgPath 2s 0.8s var(--ease-out) forwards, spinSlow 20s linear infinite; }

@keyframes drawSvgPath {
    to { stroke-dashoffset: 0; }
}

.pricing-content { position: relative; z-index: 1; }
.pricing-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}
.pricing-value {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}
.pricing-value .currency { font-size: 2rem; font-weight: 700; color: var(--primary); }
.pricing-value .amount {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    color: var(--text);
}
.pricing-value .period { font-size: 1.4rem; color: var(--text-muted); }

.pricing-sessions {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pricing-divider svg { width: 120px; height: 2px; margin: 0 auto 1.5rem; display: block; }
.p-divider {
    stroke: var(--border);
    stroke-width: 2;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}
.pricing-card.anim-done .p-divider {
    animation: drawSvgPath 1s 0.5s var(--ease-out) forwards;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}
.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }

.btn-pricing {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.2rem;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary);
    border-radius: 60px;
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-spring);
}
.btn-pricing svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-pricing:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--glow-red);
}
.btn-pricing:hover svg { transform: translateX(4px); }

.btn-featured {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-featured:hover {
    background: #e01e1e;
    border-color: #e01e1e;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    background: var(--bg-card);
}
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.contact-left { flex: 1; min-width: 280px; }
.contact-left h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 1rem;
}
.contact-left h2 br + * { color: var(--primary); }
.contact-left p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-spring);
}
.contact-link:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: -4px 0 20px var(--glow-red);
}
.link-icon svg { width: 48px; height: 48px; }
.link-bg { fill: rgba(255, 42, 42, 0.1); stroke: var(--primary); stroke-width: 1; }
.link-svg-icon { fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.link-text { flex: 1; }
.link-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.link-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}
.link-arrow {
    width: 24px; height: 24px;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}
.contact-link:hover .link-arrow {
    color: var(--primary);
    transform: translate(4px, -4px);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   ANIMATION CLASSES (NO FADES!)
   ═══════════════════════════════════════ */

/* Clip up - text reveal from below */
[data-anim="clip-up"] {
    clip-path: inset(100% 0 0 0);
    transform: translateY(60px);
    transition: clip-path 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-anim="clip-up"].anim-done {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

/* Slide right */
[data-anim="slide-right"] {
    transform: translateX(-120px);
    clip-path: inset(0 100% 0 0);
    transition: transform 0.9s var(--ease-out), clip-path 0.9s var(--ease-out);
}
[data-anim="slide-right"].anim-done {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
}

/* Slide left */
[data-anim="slide-left"] {
    transform: translateX(120px);
    clip-path: inset(0 0 0 100%);
    transition: transform 0.9s var(--ease-out), clip-path 0.9s var(--ease-out);
}
[data-anim="slide-left"].anim-done {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
}

/* Slide up */
[data-anim="slide-up"] {
    transform: translateY(80px);
    clip-path: inset(100% 0 0 0);
    transition: transform 0.9s var(--ease-out), clip-path 0.9s var(--ease-out);
}
[data-anim="slide-up"].anim-done {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

/* Scale in - pops in */
[data-anim="scale-in"] {
    transform: scale(0.3) rotate(-5deg);
    clip-path: circle(0% at 50% 50%);
    transition: transform 1s var(--ease-spring), clip-path 1s var(--ease-out);
}
[data-anim="scale-in"].anim-done {
    transform: scale(1) rotate(0deg);
    clip-path: circle(100% at 50% 50%);
}

/* Flip in */
[data-anim="flip-in"] {
    transform: perspective(800px) rotateY(90deg) scale(0.8);
    transition: transform 1s var(--ease-spring);
}
[data-anim="flip-in"].anim-done {
    transform: perspective(800px) rotateY(0deg) scale(1);
}

/* Counter up */
[data-anim="counter-up"] {
    transform: translateY(40px) scale(0.8);
    clip-path: inset(100% 0 0 0);
    transition: transform 0.8s var(--ease-spring), clip-path 0.8s var(--ease-out);
}
[data-anim="counter-up"].anim-done {
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   RESPONSIVE (MOBILE & TABLET)
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
    .container { padding: 0 1.2rem; }
    
    .hero { min-height: 90vh; padding: 5rem 1.2rem 3rem; }
    .hero-inner { text-align: center; }
    .hero-text { text-align: center; position: relative; z-index: 3; }
    .hero h1 { font-size: clamp(2.8rem, 9vw, 5rem); }
    .hero-tagline { margin-left: auto; margin-right: auto; font-size: 1.05rem; }
    .btn-hero { padding: 0.9rem 2rem; font-size: 0.95rem; }
    
    .hero-image {
        right: -10vw;
        opacity: 0.18;
        z-index: 1;
    }
    .hero-image img { height: 65vh; max-height: 65vh; }
    .hero-pre-title { letter-spacing: 4px; font-size: 0.95rem; }

    .stats-bar {
        gap: 1rem;
        padding: 2rem 0.8rem;
    }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.75rem; letter-spacing: 0.5px; }
    .stat-divider svg { height: 30px; }

    .achievements { padding: 5rem 1.2rem; }
    .trophies-row { flex-direction: column; align-items: center; gap: 3rem; }
    .trophy-img-wrap img { width: 210px; height: 210px; }
    .achievements-bg-isaac { display: none; }
    .section-deco { display: none; }

    .services { padding: 5rem 1.2rem; }
    .services-grid { gap: 1rem; }
    .service-item { padding: 1.4rem 1.2rem; gap: 1rem; }
    .service-icon svg { width: 44px; height: 44px; }
    .service-text h4 { font-size: 1.05rem; }
    .service-text p { font-size: 0.85rem; }

    .pricing { padding: 5rem 1.2rem; }
    .pricing-single-wrap { width: 100%; max-width: 100%; }
    .pricing-card { padding: 2.5rem 1.5rem; border-radius: 20px; }
    .pricing-value .amount { font-size: 4.2rem; }
    .pricing-sessions { font-size: 0.9rem; }
    .pricing-features li { font-size: 0.88rem; padding: 0.5rem 0; }

    .contact { padding: 5rem 1.2rem; }
    .contact-content { flex-direction: column; text-align: center; gap: 2.5rem; }
    .contact-left h2 { font-size: 2.8rem; }
    .contact-left p { font-size: 1rem; }
    .contact-right { width: 100%; }
    .contact-link { padding: 1.2rem 1rem; gap: 0.8rem; }
    .link-value { font-size: 0.95rem; word-break: break-all; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-pre-title { font-size: 0.85rem; letter-spacing: 2px; }
    .hero-tagline { font-size: 0.95rem; }
    .btn-hero { width: 100%; max-width: 280px; justify-content: center; }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2.5rem 1rem;
    }
    .stat-divider { display: none; }
    .stat-number { font-size: 2.4rem; }

    .trophy-img-wrap img { width: 170px; height: 170px; }
    .trophy-title { font-size: 1.2rem; }

    .card-badge {
        font-size: 0.6rem;
        padding: 0.3rem 2.5rem;
        top: 0.9rem;
        right: -2.2rem;
    }

    [data-anim="slide-right"],
    [data-anim="slide-left"] {
        transform: translateY(30px);
        clip-path: inset(100% 0 0 0);
    }
    [data-anim="slide-right"].anim-done,
    [data-anim="slide-left"].anim-done {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

/* ═══════════════════════════════════════
   ULTRA FAST MOBILE PERFORMANCE OVERRIDES
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .svg-pokeball, .svg-ring {
        animation: none !important;
    }
    .image-glow, .bg-glow {
        filter: none !important;
        opacity: 0.15 !important;
    }
    .pricing-card, .service-card, .contact-link {
        backdrop-filter: none !important;
        background: rgba(20, 20, 30, 0.95) !important;
    }
    #particles {
        display: none !important;
    }

    /* Mobile Vertical Trophy Stack */
    .trophy-grid, .trophies-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 3rem !important;
    }
    .trophy-item {
        width: 100% !important;
        max-width: 320px !important;
    }
    .trophy-img-wrap img {
        width: 220px !important;
        height: 220px !important;
    }
}
