@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #f8206d; /* Neon Magenta (T-Mobile adjacent vibe) */
    --primary-hover: #e0175d;
    --accent: #0ea5e9; /* Light neon blue */
    --bg-color: #0d0f14; /* Extremely dark */
    --bg-light: #181c25;
    --bg-lighter: #242a38;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --radius: 16px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(24, 28, 37, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Header & Nav --- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 15, 20, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-icon {
    width: 38px;
    height: 38px;
    fill: var(--primary);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(248, 32, 109, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 32, 109, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Mobile Icon */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-main);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    min-height: 85vh;
    overflow: hidden;
}

/* Cyber Gradients */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(248,32,109,0.15) 0%, rgba(13,15,20,0) 70%);
    filter: blur(60px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, rgba(13,15,20,0) 70%);
    filter: blur(60px);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(248, 32, 109, 0.1);
    border: 1px solid rgba(248, 32, 109, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-inline: auto;
}

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

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.review-card {
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 35px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(248, 32, 109, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.rating {
    display: flex;
    gap: 4px;
    color: var(--primary);
    margin-bottom: 20px;
}

.rating svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.review-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

/* --- Marquee --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--bg-lighter);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.marquee-item {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.marquee-item span {
    color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Footer --- */
footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 320px;
}

.footer-links h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
}

/* --- Content Pages --- */
.page-header {
    background: url('../img/hero.jpg') center/cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.page-header::before {
    content:'';
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 20, 0.85); /* strict overlay */
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--accent);
}

.content-box {
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 60px;
    margin: -60px auto 100px;
    max-width: 900px;
    position: relative;
    z-index: 20;
    line-height: 1.8;
}

.content-box h2 {
    color: #fff;
    margin: 40px 0 20px;
    font-size: 28px;
}

.content-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.content-box ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Contact form */
.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 18px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.5);
}

.checkbox-group {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 56px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 42px; }
    .hero { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .content-box { padding: 30px 20px; margin-top: -30px; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--bg-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius);
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(150%);
    transition: var(--transition);
    max-width: 1160px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.cookie-banner.show { transform: translateY(0); }
@media(max-width:768px){ .cookie-banner {flex-direction:column; gap:20px; text-align:center;} }
