/**
 * JUDÔ360 - HOME PAGE PARALLAX STYLES
 * Design moderno e futurista sem gradientes
 * Efeitos parallax com GSAP ScrollTrigger
 */

/* ===== VARIÁVEIS PARALLAX ===== */
:root {
    --parallax-accent: #00D9A3;
    --parallax-accent-secondary: #FFB800;
    --parallax-dark: #0a0d14;
    --parallax-darker: #050709;
    --parallax-card: #141a24;
    --parallax-border: rgba(255, 255, 255, 0.08);
}

/* ===== HERO PARALLAX AVANÇADO ===== */
.parallax-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--parallax-dark);
}

/* Elementos Parallax de Fundo */
.parallax-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    will-change: transform;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--parallax-accent);
    top: -15%;
    right: -5%;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--parallax-accent);
    bottom: 15%;
    left: -5%;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--parallax-accent);
    top: 50%;
    right: 25%;
    opacity: 0.15;
}

/* Kanji Parallax */
.parallax-kanji {
    position: absolute;
    font-family: 'Noto Sans JP', serif;
    font-weight: 400;
    color: rgba(0, 217, 163, 0.06);
    will-change: transform;
    user-select: none;
}

.kanji-1 {
    font-size: clamp(15rem, 25vw, 30rem);
    top: 10%;
    left: -5%;
}

.kanji-2 {
    font-size: clamp(12rem, 20vw, 25rem);
    bottom: 5%;
    right: -5%;
}

/* Grid Pattern */
.parallax-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 217, 163, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 163, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.6;
}

/* Overlay */
.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: rgba(10, 13, 20, 0.4);
    z-index: 2;
}

/* Hero Content */
.parallax-hero .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 20px 60px;
    text-align: center;
}

/* Badge Animado */
.hero-badge-animated {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 217, 163, 0.08);
    border: 1px solid rgba(0, 217, 163, 0.25);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 35px;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 163, 0.2), transparent);
    transform: translateY(-50%);
    animation: badgeGlow 4s infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hero-badge-animated .badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--parallax-accent);
    position: relative;
    z-index: 1;
}

/* Título Principal */
.hero-title-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.char-wrap {
    display: inline-block;
}

.line-1 .char-wrap {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 10px;
    margin-bottom: 15px;
}

.line-2 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-text {
    font-size: clamp(4rem, 12vw, 10rem);
    color: #ffffff;
}

.accent-text {
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--parallax-accent);
}

/* Subtítulo */
.hero-subtitle-main {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 45px;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--parallax-accent);
    color: var(--parallax-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.25);
    color: var(--parallax-dark);
}

.btn-cta-primary i {
    transition: transform 0.3s;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--parallax-accent);
    color: var(--parallax-accent);
}

/* Scroll Indicator */
.scroll-indicator-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: var(--parallax-accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== PARALLAX TRANSITION SECTION ===== */
.parallax-transition {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--parallax-dark);
    overflow: hidden;
}

.transition-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.kanji-reveal {
    font-family: 'Noto Sans JP', serif;
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 400;
    color: var(--parallax-accent);
    opacity: 0.4;
    line-height: 1.2;
    will-change: transform;
}

.transition-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

/* ===== CARDS SECTION PARALLAX ===== */
.cards-section-parallax {
    background: var(--parallax-dark);
    padding: 100px 20px;
    position: relative;
}

/* Flip cards mantém comportamento original de virar */

/* Estado inicial para animações GSAP - evita flash */
.cards-container-parallax .flip-card,
.benefit-card,
.pricing-card,
.why-feature,
.founder-card-3d {
    opacity: 1;
    visibility: visible;
}

/* ===== FLIP CARDS - MANTÉM EFEITO ORIGINAL DE VIRAR ===== */
/* O efeito de flip é controlado pelo flip-cards.css */
/* Apenas adicionamos sombra suave no hover sem interferir com o flip */

.flip-card .flip-card-content {
    position: relative;
}

/* Sombra suave no hover - não interfere com o flip */
.flip-card:hover .flip-card-content {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 217, 163, 0.1);
}

/* ===== EFEITOS NOS BENEFIT CARDS ===== */
.benefit-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Linha de borda animada no topo */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--parallax-accent),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.benefit-card:hover::before {
    transform: translateX(100%);
}

/* Glow de fundo no hover */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.benefit-card:hover::after {
    width: 300%;
    height: 300%;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

/* Ícone com efeito de pulso */
.benefit-card:hover .benefit-icon {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1) rotate(5deg); }
}

/* ===== EFEITOS NOS PRICING CARDS ===== */
.pricing-card {
    position: relative;
    overflow: hidden;
}

/* Efeito de borda brilhante */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(0, 217, 163, 0.3), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Badge com brilho */
.pricing-card.featured .featured-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 163, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 217, 163, 0.2); }
}

/* ===== EFEITOS NOS WHY FEATURES ===== */
.why-feature {
    position: relative;
    overflow: hidden;
}

/* Linha lateral animada */
.why-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--parallax-accent);
    transition: height 0.4s ease;
    border-radius: 3px;
}

.why-feature:hover::before {
    height: 100%;
}

/* Ícone com rotação suave */
.why-feature:hover .why-feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(0, 217, 163, 0.2) !important;
}

.why-feature-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== EFEITO PARALLAX SUAVE NO MOUSE (TILT) ===== */
.card-tilt-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== ANIMAÇÃO DE ENTRADA SUAVE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== CURSOR INTERATIVO ===== */
.flip-card,
.benefit-card,
.pricing-card,
.why-feature {
    cursor: pointer;
}

.section-header-parallax {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--parallax-accent);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(0, 217, 163, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(0, 217, 163, 0.2);
}

.section-title-parallax {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-desc-parallax {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.cards-container-parallax {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PARALLAX DIVIDER HOME ===== */
.parallax-divider-home {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--parallax-dark);
}

.divider-bg {
    position: absolute;
    inset: -30% 0;
    background: var(--parallax-dark);
    will-change: transform;
}

.divider-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 163, 0.08) 0%, transparent 60%);
}

.divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.divider-kanji {
    font-family: 'Noto Sans JP', serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    color: var(--parallax-accent);
    display: block;
    line-height: 1.2;
    margin-bottom: 15px;
}

.divider-translation {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== BENEFITS PARALLAX - CORRIGIDO ===== */
.benefits-parallax {
    position: relative;
    overflow: visible;
    background: var(--color-off-white);
}

.benefits-bg-elements {
    display: none;
}

.benefits-parallax .benefits-container {
    position: relative;
    z-index: 1;
}

.benefits-parallax .section-header {
    text-align: center;
}

.benefits-parallax .section-tag {
    background: rgba(0, 217, 163, 0.1);
    color: var(--parallax-accent);
    border: 1px solid rgba(0, 217, 163, 0.2);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

/* ===== WHY SECTION - REDESENHADO FUTURISTA ===== */
.why-section {
    background: var(--parallax-dark) !important;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    display: none !important;
}

/* Container modernizado */
.why-container {
    position: relative;
    z-index: 2;
}

/* Remover badge laranja - novo visual */
.why-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-badge-container {
    display: none !important;
}

/* Novo elemento visual para why-image */
.why-image::before {
    content: '道';
    font-family: 'Noto Sans JP', serif;
    font-size: clamp(12rem, 25vw, 20rem);
    font-weight: 400;
    color: rgba(0, 217, 163, 0.08);
    position: absolute;
}

/* Features modernizadas */
.why-feature {
    background: var(--parallax-card);
    border: 1px solid var(--parallax-border);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    border-color: rgba(0, 217, 163, 0.3);
    transform: translateX(10px);
}

.why-feature-icon {
    background: rgba(0, 217, 163, 0.1) !important;
    border: 1px solid rgba(0, 217, 163, 0.2) !important;
}

/* ===== FOUNDER SECTION - DESIGN FUTURISTA ===== */
.founder-section {
    background: var(--parallax-dark) !important;
    position: relative;
}

.founder-section .section-header {
    position: relative;
    z-index: 2;
}

.founder-section .section-title-large {
    color: #ffffff !important;
}

.founder-section .section-subtitle-large {
    color: rgba(255, 255, 255, 0.6) !important;
}

.founder-content {
    position: relative;
    z-index: 2;
}

/* ===== 3D CARD EFFECT - FOUNDER IMAGE (como Jigoro Kano) ===== */
.founder-image {
    perspective: 1000px;
}

.founder-card-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.founder-image:hover .founder-card-3d {
    transform: rotateY(-8deg) rotateX(5deg);
}

.founder-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--parallax-border);
    background: linear-gradient(145deg, var(--parallax-card), var(--parallax-dark));
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 217, 163, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.founder-image:hover .founder-image-frame {
    border-color: rgba(0, 217, 163, 0.4);
    box-shadow:
        0 35px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 217, 163, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.founder-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
}

.founder-image:hover .founder-photo {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
}

.founder-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(0, 217, 163, 0.1) 70%,
        rgba(10, 13, 20, 0.9) 100%
    );
    pointer-events: none;
    border-radius: 20px;
}

/* Shine effect on hover */
.founder-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.8s ease;
    z-index: 10;
}

.founder-image:hover .founder-image-frame::before {
    left: 100%;
}

/* Stats badges abaixo da imagem */
.founder-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    transform: translateZ(20px);
}

.founder-badge-item {
    text-align: center;
    background: var(--parallax-card);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--parallax-border);
    transition: all 0.3s ease;
}

.founder-badge-item:hover {
    border-color: rgba(0, 217, 163, 0.3);
    transform: translateY(-3px);
}

.founder-badge-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.founder-badge-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--parallax-accent);
}

.founder-name {
    color: #ffffff !important;
}

.founder-role {
    color: var(--parallax-accent) !important;
}

.founder-description p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.founder-description strong {
    color: var(--parallax-accent) !important;
}

.founder-stats {
    border-top: 1px solid var(--parallax-border) !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    padding-top: 30px !important;
    margin-top: 30px !important;
}

.stat-item {
    background: var(--parallax-card);
    border: 1px solid var(--parallax-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item:hover {
    border-color: rgba(0, 217, 163, 0.3);
    transform: translateY(-5px);
}

.stat-item i {
    color: var(--parallax-accent) !important;
    font-size: 2rem !important;
    margin-bottom: 5px !important;
}

.stat-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-item strong {
    color: #ffffff !important;
    font-size: 1.1rem !important;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
}

/* ===== PRICING SECTION - 4 CARDS GLASSMORPHISM ===== */
.pricing-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0d1525 100%) !important;
}

.pricing-section .section-title-large {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.pricing-section .section-subtitle-large {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Grid de 4 cards */
.pricing-grid,
.pricing-grid.four-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.pricing-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Featured card não deve ter transform por padrão */
.pricing-card.featured {
    transform: scale(1.02) !important;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .pricing-grid,
    .pricing-grid.four-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .pricing-card.featured {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .pricing-grid.four-cards {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 768px) {
    .parallax-kanji {
        display: none;
    }

    .parallax-shape {
        opacity: 0.15;
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 180px;
        height: 180px;
    }

    .shape-3 {
        display: none;
    }

    .parallax-hero .hero-content {
        padding: 100px 15px 40px;
    }

    .hero-badge-animated {
        padding: 8px 16px;
    }

    .hero-badge-animated .badge-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .line-2 {
        flex-direction: column;
        gap: 0;
    }

    .highlight-text {
        font-size: 3.5rem;
    }

    .accent-text {
        font-size: 2.8rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .parallax-transition {
        height: 25vh;
        min-height: 200px;
    }

    .kanji-reveal {
        font-size: 3rem;
    }

    .transition-quote {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    .cards-section-parallax {
        padding: 60px 15px;
    }

    .section-title-parallax {
        font-size: 1.6rem;
    }

    .parallax-divider-home {
        height: 250px;
    }

    .divider-kanji {
        font-size: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .pricing-card.featured {
        transform: none !important;
    }

    .why-image::before {
        font-size: 10rem;
    }

    .founder-stats {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .stat-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
        text-align: left !important;
        padding: 15px 20px !important;
        gap: 15px !important;
    }

    .stat-item i {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
    }

    .stat-item div {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .line-1 .char-wrap {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .highlight-text {
        font-size: 2.8rem;
    }

    .accent-text {
        font-size: 2.2rem;
    }

    .hero-subtitle-main {
        font-size: 0.9rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 0.9rem;
        padding: 14px 25px;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .section-title-parallax {
        font-size: 1.4rem;
    }
}

/* ===== PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    .parallax-shape,
    .parallax-kanji,
    .kanji-reveal,
    .divider-bg {
        animation: none !important;
        transform: none !important;
    }

    .badge-glow {
        animation: none;
    }
}

.parallax-shape,
.parallax-kanji,
.kanji-reveal,
.divider-bg {
    transform: translateZ(0);
    backface-visibility: hidden;
}
