/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    font-family: 'Inter', sans-serif;
    max-width: 100%;
}

:root {
    --bg-color: #030303;
    --card-bg: #0a0a0a;
    --card-border: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent-blue: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.4);
    --btn-white: #ffffff;
    --btn-white-text: #000000;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Background Stars */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom, #0d121c 0%, #030303 100%);
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 0.8; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-main);
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, #fff 0%, #888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--text-muted);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
    cursor: pointer;
}

.btn-primary, .btn-white {
    background-color: var(--btn-white);
    color: var(--btn-white-text);
}

.btn-primary:hover, .btn-white:hover {
    background-color: #ddd;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: var(--text-main);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Badge */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-badge i {
    margin-right: 8px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    left: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    z-index: 1001;
}

@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
}

/* Hero Section */
.hero {
    padding: 160px 0 80px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-subtitle strong {
    color: var(--text-main);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.platform-support {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.platform-support .active {
    color: var(--text-main);
}
.platform-support .muted {
    color: var(--text-muted);
}
.platform-support i {
    margin-right: 5px;
}

/* Trust Features */
.trust-features {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}

.trust-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.trust-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Interface Showcase */
.interface-showcase {
    padding: 100px 0;
}

.interface-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.interface-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.interface-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.badge.blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.badge.gray {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.mockup-style {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.mockup-style::before {
    content: '';
    display: block;
    height: 24px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.mockup-style::after {
    content: '•••';
    color: #444;
    font-size: 1.5rem;
    line-height: 10px;
    position: absolute;
    top: 7px;
    left: 10px;
    z-index: 11;
    letter-spacing: 2px;
}

.mockup-style img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 24px;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

.interface-card:hover .mockup-style img {
    filter: brightness(1) contrast(1.1);
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: left;
}

.feature-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-box:hover {
    background: #111;
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}

.icon-blue { color: #3b82f6; }
.icon-purple { color: #a855f7; }
.icon-pink { color: #ec4899; }
.icon-green { color: #22c55e; }
.icon-red { color: #ef4444; }

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Intelligence Layer */
.intelligence-section {
    padding: 100px 0;
}

.intelligence-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intelligence-content {
    flex: 1;
}

.text-left {
    text-align: left;
    margin-left: 0;
}

.intelligence-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.intelligence-list li {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.intelligence-list li i {
    font-size: 1rem;
}

.intelligence-image {
    flex: 1;
}

/* Reviews Segment */
.reviews-section {
    padding: 100px 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.border-left {
    border-left: 4px solid var(--accent-blue);
    padding-left: 15px;
    margin-bottom: 0;
    line-height: 1;
}

.view-all {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--text-main);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.reviewer-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.verified {
    color: var(--accent-blue);
}

.review-body {
    flex-grow: 1;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.quote-mark {
    position: absolute;
    left: -10px;
    top: -5px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.05);
}

.review-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

.time {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.stars {
    color: #eab308;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.trusted-by {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 50px;
    font-weight: 600;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Enhanced Footer */
footer {
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background-color: var(--bg-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-socials a:hover {
    color: var(--text-main);
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--text-main);
}

/* Animations */
.animate-float {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-glow {
    animation: glowing 3s ease-in-out infinite alternate;
}

@keyframes glowing {
    from { text-shadow: 0 0 10px rgba(59, 130, 246, 0.2); }
    to { text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.6); }
}

/* New Premium Animations */
.animate-pulse-slow {
    animation: pulse-slow 4s infinite ease-in-out;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.jarvis-scan {
    position: relative;
    overflow: hidden;
}

.jarvis-scan::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.2), transparent);
    animation: scan 3s infinite linear;
    pointer-events: none;
}

@keyframes scan {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
}

.typing-text {
    border-right: 2px solid var(--accent-blue);
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-blue); }
}

.reveal-mask {
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
}

.reveal-mask::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    color: var(--text-main);
    -webkit-text-stroke: 0px;
    border-right: 2px solid var(--accent-blue);
    overflow: hidden;
    transition: width 1s ease-in-out;
}

.reveal-mask:hover::after {
    width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    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);
}

.btn-glow-blue:hover {
    box-shadow: 0 0 15px var(--accent-blue);
    background: var(--accent-blue);
    color: white;
}

/* Inner Pages Shared Styles */
.page-header {
    padding: 180px 0 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, rgba(3,3,3,1) 0%, rgba(10,10,10,1) 100%);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

/* Pricing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.plan-card.popular {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    min-height: 45px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #ccc;
}

.plan-features li i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.plan-features li.disabled {
    color: #555;
}

.plan-features li.disabled i {
    color: #555;
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--card-border);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    font-size: 0.75rem;
    color: var(--accent-blue);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}

/* Specific Content Pages Base Text */
.content-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Stonic / Jarvis Special Animations */
.stonic-core {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 40px auto;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(0,0,0,0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(59,130,246,0.2), inset 0 0 50px rgba(59,130,246,0.1);
    animation: core-pulse 4s infinite alternate;
}

.stonic-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.3);
    border-top-color: var(--accent-blue);
    animation: ring-spin linear infinite;
}

.stonic-ring-1 { width: 100%; height: 100%; animation-duration: 8s; }
.stonic-ring-2 { width: 80%; height: 80%; animation-duration: 6s; animation-direction: reverse; border-top-color: #0ea5e9; }
.stonic-ring-3 { width: 60%; height: 60%; animation-duration: 4s; border-width: 2px; }

.stonic-center {
    width: 30%;
    height: 30%;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-blue), 0 0 60px #fff;
    animation: glowing 2s infinite alternate;
}

@keyframes core-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 30px rgba(59,130,246,0.2); }
    100% { transform: scale(1.05); box-shadow: 0 0 80px rgba(59,130,246,0.5), inset 0 0 80px rgba(59,130,246,0.3); }
}

@keyframes ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.jarvis-scan {
    position: relative;
}

.jarvis-scan-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.jarvis-scan-inner::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.5), transparent);
    animation: scanning 3s linear infinite;
}

/* Fallback for elements using the class directly */
.jarvis-scan-direct {
    position: relative;
    overflow: hidden;
}

.jarvis-scan-direct::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.5), transparent);
    animation: scanning 3s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes scanning {
    0% { top: -20%; }
    100% { top: 120%; }
}


.hologram-text {
    color: var(--accent-blue);
    text-shadow: 0 0 5px rgba(59,130,246,0.8), 0 0 10px rgba(59,130,246,0.5);
    letter-spacing: 2px;
    font-family: monospace;
    font-weight: bold;
}

.stonic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.content-section h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
}

.content-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-section ul {
    color: var(--text-muted);
    margin-left: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Mobile Responsiveness */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

.container {
    width: 100% !important;
    overflow-x: hidden !important;
}
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .intelligence-container { flex-direction: column; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80% !important;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li a {
        font-size: 1.2rem;
        color: var(--text-main);
    }

    .nav-links li a.btn {
        background-color: var(--btn-white) !important;
        color: #000000 !important; /* Force black for maximum visibility */
        display: flex !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        text-align: center !important;
        justify-content: center !important;
        font-weight: 700 !important;
    }

    .nav-btn {
        display: none !important;
    }

    .nav-links .mobile-btn-container {
        display: flex !important;
        width: 80% !important;
    }
    
    .nav-container { padding: 15px !important; }
    .logo { font-size: 1.1rem !important; }
    .logo-img { height: 26px !important; }
    
    .hero-title { font-size: 2.1rem !important; }
    .hero-actions { flex-direction: column; gap: 15px; }
    .interface-grid { grid-template-columns: 1fr !important; }
    .features-grid { grid-template-columns: 1fr !important; }
    .reviews-grid { grid-template-columns: 1fr !important; }
    
    .footer-top { 
        display: block !important; 
        text-align: center !important; 
        padding: 40px 10px !important; 
        width: 100% !important;
        grid-template-columns: none !important;
    }
    .footer-brand, .footer-links {
        display: block !important;
        width: 100% !important;
        margin: 0 0 40px 0 !important;
        text-align: center !important;
    }
    .footer-links ul { 
        display: block !important;
        padding: 0 !important; 
        margin: 0 !important;
    }
    .footer-links ul li {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    .footer-brand p { margin: 15px auto; width: 100% !important; max-width: 100%; }
    .footer-socials { justify-content: center; }
    .footer-links ul li a:hover { transform: none; }
    
    .footer-bottom { 
        flex-direction: column !important; 
        gap: 15px; 
        text-align: center; 
        padding-bottom: 40px;
    }
    .footer-bottom-links { 
        justify-content: center !important; 
        gap: 10px; 
        width: 100% !important;
    }
    .footer-bottom-links a { margin: 0 5px; font-size: 0.75rem; }
    
    .pricing-grid { grid-template-columns: 1fr !important; }
    .blog-grid { grid-template-columns: 1fr !important; }
    .stonic-grid { grid-template-columns: 1fr !important; text-align: center; }
    .page-header h1 { font-size: 2rem !important; }
    
    .glass-card { padding: 20px !important; }
    .page-header { padding: 120px 0 60px 0 !important; }
}
