/* ============================================
   RUNDORO PORTFOLIO - UNIQUE DESIGN
   ============================================ */

:root {
    --bg-primary: #0c0c14;
    --bg-secondary: #12121c;
    --bg-glass: rgba(20, 20, 35, 0.6);
    --bg-card: #181825;
    --bg-card-hover: #222235;

    --text-primary: #f0f0f5;
    --text-secondary: #8a8aa0;
    --text-muted: #5a5a70;

    --accent-purple: #9d4edd;
    --accent-purple-glow: #c77dff;
    --accent-pink: #e0aaff;
    --accent-cyan: #7b2cbf;

    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(157, 78, 221, 0.3);

    --shadow-glow: 0 0 40px rgba(157, 78, 221, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 10px; }

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ===== FLOATING ORBS BACKGROUND ===== */
.bg-orbs {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px; height: 500px;
    background: var(--accent-purple);
    top: -10%; left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px; height: 400px;
    background: var(--accent-pink);
    bottom: -15%; right: -5%;
    animation-delay: -8s;
}

.orb-3 {
    width: 300px; height: 300px;
    background: var(--accent-cyan);
    top: 40%; left: 60%;
    animation-delay: -16s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ===== BOTTOM NAVIGATION BAR ===== */
.bottom-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem;
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card), 0 0 20px rgba(157, 78, 221, 0.1);
    transition: all 0.3s ease;
}

.bottom-nav:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.bottom-nav a {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.bottom-nav a:hover {
    color: var(--text-primary);
    background: rgba(157, 78, 221, 0.1);
}

.bottom-nav a.active {
    color: var(--accent-purple-glow);
    background: rgba(157, 78, 221, 0.15);
}

.bottom-nav a i {
    font-size: 0.9rem;
}

.bottom-nav .nav-logo-small {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    margin-right: 0.3rem;
}

.bottom-nav .nav-cta-btn {
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    margin-left: 0.3rem;
    transition: all 0.2s ease;
}

.bottom-nav .nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

/* Language pill */
.lang-pill {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-pill:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.lang-pill .current {
    color: var(--accent-purple-glow);
    font-weight: 600;
}

/* ===== HERO - ASYMMETRIC LAYOUT ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 8% 120px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--accent-purple-glow);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-badge .pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-purple-glow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent-purple-glow), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2rem;
}

.hero-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-glow {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.3);
}

.btn-ghost {
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
    background: rgba(157, 78, 221, 0.05);
}

/* Hero Right - Logo showcase */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-showcase {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(157, 78, 221, 0.15);
    animation: ringRotate 20s linear infinite;
}

.logo-ring-2 {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(224, 170, 255, 0.1);
    animation: ringRotate 30s linear infinite reverse;
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.logo-showcase img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.logo-showcase:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(157, 78, 221, 0.4));
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* Hero stats row */
.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-box .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 8%;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-purple-glow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-purple);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
}

/* ===== ABOUT - DIAGONAL SPLIT ===== */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.about-left {
    position: relative;
}

.about-left::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 60px; height: 60px;
    border-left: 2px solid var(--accent-purple);
    border-top: 2px solid var(--accent-purple);
    opacity: 0.3;
}

.about-text-block {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.about-text-block strong {
    color: var(--text-primary);
}

.about-text-block.highlight {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.feature-group {
    margin-bottom: 1.5rem;
}

.feature-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-purple-glow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.4rem 0.9rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.feature-tag:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
    background: rgba(157, 78, 221, 0.08);
}

/* Services panel */
.services-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.services-panel::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.08), transparent);
    border-radius: 50%;
}

.services-panel h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    padding-left: 0.5rem;
}

.service-row .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-purple);
    width: 28px;
    flex-shrink: 0;
}

.service-row .name {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===== OFFERS - CARD STACK ===== */
.offers-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card-v2 {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-card-v2:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: var(--shadow-glow);
}

.offer-card-v2 img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card-v2:hover img {
    transform: scale(1.05);
}

.offer-card-v2 .content {
    padding: 1.5rem;
    position: relative;
}

.offer-card-v2 .content::before {
    content: '';
    position: absolute;
    top: 0; left: 1.5rem; right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0.3;
}

.offer-card-v2 h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.offer-card-v2 p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== GALLERY - MASONRY STYLE ===== */
.filter-pills {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.5rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-pill:hover {
    border-color: var(--accent-purple);
    color: var(--text-primary);
}

.filter-pill.active {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.25);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-masonry .item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}

.gallery-masonry .item:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.gallery-masonry .item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-masonry .item:hover img {
    transform: scale(1.08);
}

.gallery-masonry .item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 20, 0.95) 0%, rgba(12, 12, 20, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-masonry .item:hover .overlay {
    opacity: 1;
}

.gallery-masonry .item .overlay .tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.25rem 0.6rem;
    background: rgba(12, 12, 20, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-purple-glow);
}

.gallery-masonry .item .overlay h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.gallery-masonry .item .overlay .type {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.show-more {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.show-more:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

/* ===== PRICING - GLASS CARDS ===== */
.pricing-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.price-card.featured {
    border-color: rgba(157, 78, 221, 0.3);
    background: linear-gradient(180deg, rgba(157, 78, 221, 0.08), var(--bg-glass));
}

.price-card.featured::before {
    opacity: 1;
}

.featured-tag {
    position: absolute;
    top: 0; right: 1.5rem;
    padding: 0.3rem 0.8rem;
    background: var(--accent-purple);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.price-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.price-row .price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.price-row .unit {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-robux {
    font-size: 0.85rem;
    color: var(--accent-purple-glow);
    margin-bottom: 1.2rem;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PAYMENT - MINIMAL ===== */
.payment-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.payment-box::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0.3;
}

.payment-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.payment-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.payment-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.payment-list li:last-child {
    border-bottom: none;
}

.payment-list li:hover {
    color: var(--text-primary);
    padding-left: 0.3rem;
}

.payment-box .note {
    padding: 0.8rem 1rem;
    background: rgba(157, 78, 221, 0.05);
    border-left: 2px solid var(--accent-purple);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.payment-box .note strong {
    color: var(--accent-purple-glow);
}

/* ===== TOS - MINIMAL ACCORDION ===== */
.tos-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.tos-header-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.tos-row {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.6rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.tos-row:hover {
    border-color: var(--border-hover);
}

.tos-row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.tos-row-header:hover {
    background: var(--bg-card-hover);
}

.tos-row-header .left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tos-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 78, 221, 0.08);
    border: 1px solid rgba(157, 78, 221, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.tos-icon-wrap svg {
    width: 16px;
    height: 16px;
    color: var(--accent-purple-glow);
}

.tos-row-header .title {
    font-weight: 600;
    font-size: 0.92rem;
}

.tos-row-header .arrow {
    color: var(--accent-purple);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tos-row.open .arrow {
    transform: rotate(45deg);
}

.tos-row-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.tos-row.open .tos-row-body {
    max-height: 300px;
    padding: 0 1.2rem 1.2rem 3.6rem;
}

.tos-row-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-wrap {
    text-align: center;
    padding: 100px 8% 80px;
    position: relative;
    z-index: 1;
}

.contact-wrap h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.contact-wrap p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple-glow);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.2);
}

/* Discord expand */
.social-btn.discord-expand {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn.discord-expand:hover {
    width: 160px;
    background: rgba(157, 78, 221, 0.08);
}

.social-btn.discord-expand .disc-icon {
    transition: all 0.3s ease;
}

.social-btn.discord-expand:hover .disc-icon {
    margin-right: 0.5rem;
}

.disc-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease 0.05s;
}

.social-btn.discord-expand:hover .disc-name {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.site-footer {
    padding: 2rem 8%;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats-row { justify-content: center; }
    .hero-right { order: -1; }
    .logo-showcase { width: 220px; height: 220px; }
    .logo-showcase img { width: 110px; height: 110px; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .pricing-wrap { grid-template-columns: repeat(2, 1fr); }
    .payment-wrap { grid-template-columns: 1fr; }
    .offers-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .bottom-nav { padding: 0.4rem; gap: 0.1rem; }
    .bottom-nav a { padding: 0.5rem 0.7rem; font-size: 0.75rem; }
    .bottom-nav a span { display: none; }
    .bottom-nav .nav-cta-btn { padding: 0.5rem 1rem; }
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-masonry { grid-template-columns: 1fr; }
    .pricing-wrap { grid-template-columns: 1fr; }
    .contact-wrap h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-glow, .btn-ghost { width: 100%; max-width: 280px; }
    .socials { flex-wrap: wrap; }
}
