/* --- CSS VARIABLES & THEME --- */
:root {
    --bg-color: #030305;
    --text-main: #f0f0f5;
    --text-muted: #8e8e9e;
    --accent-1: #8a2be2; /* Neon Violet */
    --accent-2: #00d2ff; /* Electric Blue */
    --error-color: #ff3366;
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* --- CUSTOM CURSOR - IMMERSIVE --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--accent-2), 0 0 20px var(--accent-1), 0 0 30px var(--accent-2);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 210, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.15s ease, height 0.15s ease, border-color 0.15s ease;
    mix-blend-mode: screen;
}

.cursor-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border: 1px dashed rgba(138, 43, 226, 0.6);
    transform: translate(-50%, -50%);
    animation: cursorSpin 4s linear infinite;
}

@keyframes cursorSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.cursor-trail {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9997;
    filter: blur(4px);
}

/* Cursor Hover States */
.cursor-hover .cursor-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 0 0 20px #fff, 0 0 40px var(--accent-2), 0 0 60px var(--accent-1);
}

.cursor-hover .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: var(--accent-1);
    background: rgba(138, 43, 226, 0.05);
    backdrop-filter: blur(1px);
}

.cursor-hover .cursor-ring::before {
    border-color: var(--accent-2);
    width: 120%;
    height: 120%;
    animation-duration: 2s;
}

/* --- AMBIENT BACKGROUND & NOISE --- */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

/* --- FLOATING PARTICLES CANVAS --- */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-1), rgba(138, 43, 226, 0.2));
    top: -10%;
    left: 10%;
    animation-delay: -5s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-2), rgba(0, 210, 255, 0.1));
    bottom: -15%;
    right: -5%;
    animation-duration: 25s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #4facfe;
    top: 40%;
    left: 50%;
    opacity: 0.3;
    animation-duration: 15s;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo-text span {
    color: var(--accent-2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.logo span {
    color: var(--accent-2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* --- LANGUAGE SELECTOR --- */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 6px 10px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.lang-btn {
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    background: rgba(0, 210, 255, 0.1);
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
    animation: pulsate 1.5s infinite;
}

@keyframes pulsate {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.admin-btn {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid var(--accent-2);
    color: var(--accent-2);
    padding: 8px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: var(--accent-2);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* --- ADMIN MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--glass-shadow);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: none;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--text-main);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.modal-header h2 span {
    color: var(--accent-2);
}
.modal-header p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}
.input-group ion-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}
.input-group input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 15px 12px 45px;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.input-group input:focus {
    border-color: var(--accent-2);
    background: rgba(255,255,255,0.08);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: none;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.error-msg {
    color: var(--error-color);
    font-size: 0.85rem;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    display: none;
}


/* --- HERO SECTION --- */
.hero {
    min-height: 70vh;
    height: auto;
    padding: 15vh 2rem 5vh 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    opacity: 0.6;
    animation: bounce 2s infinite ease-in-out;
}
.scroll-indicator ion-icon {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* --- MODULES GRID --- */
.modules {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
    -webkit-background-clip: text;
    color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.module-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.1s;
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-1) 0%, transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.module-card:hover .card-glow {
    opacity: 0.15;
}

.card-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.module-card:hover .icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
    background: rgba(0, 210, 255, 0.1);
    color: #fff;
}

.module-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.module-card:hover h3 {
    color: var(--accent-2);
}

.subdomain {
    font-family: monospace;
    color: var(--accent-1);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- TILE GRID (Proton-Style) --- */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tile-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        max-width: 600px;
    }
}

.tile-card {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.tile-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.tile-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 210, 255, 0.1);
}

.tile-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.3), rgba(138, 43, 226, 0.1));
}

.tile-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(138, 43, 226, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-2);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tile-card:hover .tile-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.25), rgba(138, 43, 226, 0.2));
    box-shadow: 0 12px 24px rgba(0, 210, 255, 0.2);
    color: #fff;
}

.tile-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.tile-card:hover h3 {
    color: var(--accent-2);
}

.tile-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.tile-card:hover .tile-desc {
    opacity: 1;
    color: rgba(255, 255, 255, 0.8);
}

.tile-domain {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--accent-1);
    background: rgba(138, 43, 226, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.tile-card:hover .tile-domain {
    background: rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.3);
    color: var(--accent-2);
}

/* --- MODULE STATUS BADGES --- */
.module-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(5px);
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.module-status-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 5px currentColor;
}

.status-green {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}
.status-green::before { background: #2ed573; }

.status-yellow {
    background: rgba(255, 165, 2, 0.1);
    color: #ffa502;
    border: 1px solid rgba(255, 165, 2, 0.2);
}
.status-yellow::before { background: #ffa502; }

.status-red {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}
.status-red::before { background: #ff4757; }

/* --- SERVICES SECTION --- */
.services {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 210, 255, 0.05);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(138, 43, 226, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-2);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.service-features li ion-icon {
    color: #00ff88;
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* --- CTA BUTTONS --- */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-2);
    color: var(--accent-2);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* --- INQUIRY MODAL --- */
.inquiry-modal {
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.textarea-group {
    margin-bottom: 1.5rem;
}

.textarea-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.textarea-group textarea:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}

.textarea-group ion-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.input-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.875rem 1rem 0.875rem 3rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238e8e9e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.input-group select:focus {
    outline: none;
    border-color: var(--accent-2);
}

.input-group select option {
    background: var(--bg-color);
    color: var(--text-main);
}

.submit-btn.large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* --- IMPRINT MODAL --- */
.imprint-modal {
    max-width: 700px;
}

.imprint-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.imprint-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
}

.imprint-section h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.imprint-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.imprint-address {
    font-style: normal;
    line-height: 1.8;
}

.imprint-address strong {
    color: var(--text-main);
    font-size: 1.1rem;
}

.imprint-section a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.imprint-section a:hover {
    color: var(--accent-1);
    text-decoration: underline;
}

/* --- LEGAL MODALS (Privacy & Terms) --- */
.legal-modal {
    max-width: 800px;
    max-height: 85vh;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.legal-content::-webkit-scrollbar {
    width: 6px;
}

.legal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.legal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    border-radius: 3px;
}

.legal-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
}

.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section ul {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-left: 1.25rem;
    margin-top: 0.5rem;
}

.legal-section li {
    margin-bottom: 0.25rem;
}

.legal-section strong {
    color: var(--text-main);
}

.legal-section a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent-1);
    text-decoration: underline;
}

.legal-date {
    margin-top: 1rem;
    font-style: italic;
    color: var(--accent-1);
}

/* --- FORM CONSENT CHECKBOX --- */
.form-consent {
    margin: 1rem 0;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-color: transparent;
}

.consent-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.consent-text a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.consent-text a:hover {
    color: var(--accent-1);
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    position: relative;
    z-index: 10;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--accent-2);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.donate-btn {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid var(--accent-2);
    color: var(--accent-2);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: var(--accent-2);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
}

.donate-btn ion-icon {
    font-size: 1.2rem;
}

/* --- DONATION MODAL --- */
.donate-modal {
    max-width: 450px;
}

.donate-header {
    text-align: center;
    margin-bottom: 2rem;
}

.donate-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.donate-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.payment-btn {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.payment-btn:not(.disabled):hover {
    border-color: var(--accent-2);
    background: rgba(0, 210, 255, 0.05);
}

.payment-btn.active {
    border-color: var(--accent-2);
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.payment-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.payment-btn ion-icon {
    font-size: 1.5rem;
}

.soon-badge {
    position: absolute;
    bottom: -8px;
    font-size: 0.6rem;
    background: var(--accent-1);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.crypto-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.crypto-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.crypto-tab {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.crypto-tab:hover {
    border-color: var(--accent-2);
}

.crypto-tab.active {
    border-color: var(--accent-2);
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.crypto-icon {
    width: 32px;
    height: 32px;
}

.crypto-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.crypto-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.crypto-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.qr-section {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.qr-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.qr-container.hidden {
    display: none;
}

.qr-code {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.qr-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.copy-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.address-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.address {
    flex: 1;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-main);
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--accent-2);
    cursor: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(0, 210, 255, 0.1);
}

.copy-btn.copied {
    color: #00ff88;
}

/* --- ANIMATIONS & UTILS --- */
.scroll-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-anim.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Initiale Text-Reveal-Animation im Hero */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-text.delay-1 { animation-delay: 0.2s; }
.reveal-text.delay-2 { animation-delay: 0.6s; }

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    html {
        cursor: auto;
    }
    
    .cursor-dot, .cursor-ring, .cursor-trail {
        display: none !important;
    }
    
    header {
        padding: 0.75rem 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 10vh 1.5rem 3rem 1.5rem;
    }
    
    h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
    }
    
    .modules {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-card {
        padding: 1.75rem;
    }
    
    .module-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .module-card h3 {
        font-size: 1.4rem;
    }
    
    .donate-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    header { 
        padding: 0.75rem 1rem; 
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .logo-link {
        order: 2;
    }
    
    .logo-text { 
        font-size: 1.1rem; 
    }
    
    .header-right { 
        width: auto; 
        justify-content: flex-start;
        order: 1;
    }
    
    .language-selector { 
        order: 0; 
        margin-bottom: 0;
        margin-right: 0.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
        max-width: 200px;
        justify-content: flex-end;
    }
    
    .lang-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        padding: 0.2rem;
    }
    
    .lang-btn img {
        width: 20px;
        height: 14px;
        object-fit: cover;
    }
    
    .admin-login-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    h1 { 
        font-size: 2.2rem; 
    }
    
    .hero {
        padding: 8vh 1rem 2rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .cta-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .modules { 
        padding: 2.5rem 1rem; 
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .footer-content { 
        flex-direction: column; 
        gap: 1rem; 
        padding: 1.5rem 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .payment-methods { 
        flex-direction: column; 
        gap: 0.75rem;
    }
    
    .payment-btn {
        width: 100%;
        justify-content: center;
    }
    
    .crypto-tabs { 
        flex-direction: column; 
    }
    
    .crypto-tab {
        justify-content: center;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .orb {
        opacity: 0.4;
    }
    
    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .module-card {
        padding: 1.5rem;
    }
    
    .module-card h3 {
        font-size: 1.2rem;
    }
    
    .module-card p {
        font-size: 0.9rem;
    }
    
    .donate-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .donate-btn ion-icon {
        font-size: 1.1rem;
    }
    
    footer {
        font-size: 0.8rem;
    }
}

/* --- APPS SHOWCASE --- */
.apps-showcase {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.apps-parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    filter: blur(8px);
    --parallax-progress: 0;
    transform: translateY(calc(var(--parallax-progress) * -80px));
    transition: transform 0.1s linear;
}

.floating-icon {
    position: absolute;
    color: var(--accent-2);
    font-size: 4rem;
    animation: floatOrbit 8s ease-in-out infinite;
    pointer-events: none;
}

.floating-icon.icon-1 { top: 8%; left: 8%; animation-delay: 0s; }
.floating-icon.icon-2 { top: 20%; right: 10%; animation-delay: 2.5s; font-size: 3.2rem; color: var(--accent-1); }
.floating-icon.icon-3 { bottom: 25%; left: 5%; animation-delay: 5s; font-size: 2.8rem; }

@keyframes floatOrbit {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(6deg); }
    66% { transform: translateY(10px) rotate(-4deg); }
}

.apps-container {
    position: relative;
    z-index: 1;
}

.os-filter-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.5rem 0 2.5rem;
    flex-wrap: wrap;
}

.os-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.os-filter-btn:hover {
    border-color: var(--accent-2);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.os-filter-btn.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 210, 255, 0.2));
    border-color: var(--accent-1);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.15);
}

.os-filter-btn ion-icon {
    font-size: 1.2rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    perspective: 1200px;
}

.app-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.app-card.hidden {
    display: none;
}

.app-card:hover {
    transform: translateY(-8px) translateZ(20px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(0, 210, 255, 0.15);
    border-color: rgba(0, 210, 255, 0.2);
}

.app-visual {
    height: 180px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(0, 210, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.app-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: transform 0.5s ease;
}

.app-card:hover .app-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.app-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
    transform: rotate(20deg);
    pointer-events: none;
    transition: transform 0.6s ease;
}

.app-card:hover .app-glare {
    transform: rotate(20deg) translateX(20%);
}

.app-os-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.os-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.os-badge.android {
    background: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.os-badge.windows {
    background: rgba(0, 168, 255, 0.15);
    color: #00a8ff;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.os-badge.web {
    background: rgba(138, 43, 226, 0.15);
    color: #a55eea;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.app-info {
    padding: 1.5rem;
}

.app-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-info h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
    display: block;
    margin-left: 0.5rem;
}

.app-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 3.2em;
}

.app-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meta-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-tag.beta { background: rgba(255, 165, 2, 0.12); color: #ffa502; border: 1px solid rgba(255, 165, 2, 0.15); }
.meta-tag.live { background: rgba(46, 213, 115, 0.12); color: #2ed573; border: 1px solid rgba(46, 213, 115, 0.15); }
.meta-tag.planned { background: rgba(255, 71, 87, 0.12); color: #ff4757; border: 1px solid rgba(255, 71, 87, 0.15); }
.meta-tag.free { background: rgba(0, 210, 255, 0.1); color: var(--accent-2); border: 1px solid rgba(0, 210, 255, 0.15); }

.app-actions {
    display: flex;
    gap: 0.5rem;
}

.app-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-btn.primary {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 210, 255, 0.2));
    border: 1px solid var(--accent-1);
    color: var(--text-main);
}

.app-btn.primary:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.35), rgba(0, 210, 255, 0.35));
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.app-btn.primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.app-btn.web-link {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.25);
    color: #00d2ff;
}

.app-btn.web-link:hover {
    background: rgba(0, 210, 255, 0.18);
    box-shadow: 0 4px 18px rgba(0, 210, 255, 0.2);
    transform: translateY(-2px);
}

.app-btn.web-link:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.cta-inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.12), rgba(138, 43, 226, 0.12));
    border: 1px solid rgba(0, 210, 255, 0.25);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-inquiry-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25), rgba(0, 210, 255, 0.25));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.cta-inquiry-btn:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2), 0 0 0 1px rgba(138, 43, 226, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.cta-inquiry-btn:hover::before {
    opacity: 1;
}

.cta-inquiry-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 12px rgba(138, 43, 226, 0.15);
}

.cta-inquiry-btn ion-icon {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.cta-inquiry-btn span {
    position: relative;
    z-index: 1;
}

.apps-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.06), rgba(0, 210, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.apps-cta:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.cta-circle.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-1);
    top: -20%;
    left: 10%;
}

.cta-circle.circle-2 {
    width: 160px;
    height: 160px;
    background: var(--accent-2);
    bottom: -20%;
    right: 10%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.cta-os-row {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.cta-os-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
}

.cta-os-box ion-icon {
    font-size: 1.5rem;
    color: var(--accent-2);
}

.cta-os-divider {
    color: var(--accent-1);
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .os-filter-bar {
        gap: 0.5rem;
    }
    
    .os-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .apps-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-os-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cta-os-divider {
        display: none;
    }
}