/* NEO-FUTURISTIC UI - NEON BLUE & PURPLE THEME */

/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* BASIC STYLES */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #0c0c1e; /* Deep Indigo */
    color: #f0f0f0;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: #00aaff; /* Neon Blue */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #ff00ff; /* Neon Purple */
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
}

/* HEADER */
.header {
    background: rgba(12, 12, 30, 0.7); /* Semi-transparent Indigo */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 35px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.7));
}

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    margin-left: 30px;
    font-weight: 500;
    color: #f0f0f0;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover {
    border-color: #ff00ff;
    color: #ff00ff;
}

.header .btn {
    margin-left: 30px;
}

/* PAGE */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(12, 12, 30, 0) 0%, #0c0c1e 70%);
    z-index: 1;
}

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

.hero-title {
    font-size: 68px;
    font-weight: 900;
    margin: 0 0 20px;
    background: linear-gradient(45deg, #00aaff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 0 auto 30px;
    max-width: 700px;
    color: #a0a0c0; /* Light Indigo */
    line-height: 1.7;
}

.hero-sub {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #a0a0c0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* SECTIONS */
.section {
    margin-bottom: 120px;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #f0f0f0;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARDS */
.card {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.6), rgba(30, 30, 50, 0.6));
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 15px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 170, 255, 0.3);
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #00aaff;
}

.card p {
    color: #a0a0c0;
    flex-grow: 1;
    line-height: 1.8;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
    color: #a0a0c0;
}

.solution-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.solution-card li::before {
    content: '⚡️';
    color: #00aaff;
    margin-right: 12px;
    font-size: 18px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
    font-size: 15px;
    color: #a0a0c0;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: linear-gradient(45deg, #00aaff, #ff00ff);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff00ff, #00aaff);
}

.btn-secondary {
    background: transparent;
    color: #00aaff;
    border: 2px solid #00aaff;
}

.btn-secondary:hover {
    background: #00aaff;
    color: white;
}


/* CONTENT & FORMS */
.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 170, 255, 0.4);
    font-size: 16px;
    background-color: rgba(12, 12, 30, 0.8);
    color: #f0f0f0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
    color: #a0a0c0;
}

.form-control:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* ICONS */
.feather {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(20, 20, 40, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transform: translateY(200%);
    animation: slide-up 0.5s forwards ease-out;
}

@keyframes slide-up {
    to {
        transform: translateY(0);
    }
}

.cookie-banner p {
    margin: 0;
    margin-right: 20px;
    line-height: 1.6;
}

.cookie-banner a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

#cookie-dismiss {
    background: transparent;
    border: none;
    color: #a0a0c0;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

#cookie-dismiss:hover {
    color: #fff;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.6), rgba(30, 30, 50, 0.6));
    border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    color: #f0f0f0;
}

.faq-question i {
    color: #00aaff;
    transition: transform 0.3s ease-in-out;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: #a0a0c0;
    line-height: 1.8;
}
