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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --light-text: #ffffff;
    --gray-text: #a0a8b8;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
}

/* ==========================================
   CONSISTENT SPACING & CONTAINER SYSTEM
   ========================================== */

/* Base container for all content */
.content-container,
.page-container,
.features-container,
.team-container,
.benefits-container,
.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Section spacing - consistent across all pages */
section {
    padding: 4rem 0;
}
/* Tighter spacing for about page sections */
.team-section {
    padding-top: 2rem;
}


/* Responsive container padding */
@media (max-width: 968px) {
    .content-container,
    .page-container,
    .features-container,
    .team-container,
    .benefits-container,
    .demo-container,
    .wide-container {
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {
    .content-container,
    .page-container,
    .features-container,
    .team-container,
    .benefits-container,
    .demo-container,
    .wide-container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

html {
    overflow-y: scroll;
}

/* Prevent flash of unstyled text - keep invisible until font loads */
html {
    visibility: visible;
    opacity: 1;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent layout shift during font load */
.nav-links a,
.cta-button,
h1, h2, h3, h4, p {
    font-synthesis: none;
}

main {
    animation: pageLoad 0.25s ease-out;
    padding-top: 70px; /* Prevents nav from covering content */
}

@media (max-width: 968px) {
    main {
        padding-top: 70px; /* Extra padding on mobile for dropdown menu */
    }
}

body.page-transition main {
    animation: pageExit 0.2s ease-in forwards;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageExit {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   NAVIGATION
   ========================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

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

.cta-button {
    display: none; /* Removed from navigation */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0.25rem 0;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
		gap: 0;
	}
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.05);
        font-size: 0.9rem;
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(0, 212, 255, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

/* ==========================================
   HERO SECTION (Homepage)
   ========================================== */

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.hero-image video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    display: block;
}


@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   PAGE HERO (Interior Pages)
   ========================================== */

.page-hero {
    padding: 5rem 0 2rem;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-hero h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--gray-text);
    line-height: 1.8;
}

@media (max-width: 968px) {
    .page-hero {
        padding: 4rem 0 2.5rem;
    }
    
    .page-hero-content {
        padding: 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .page-hero-content {
        padding: 0 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
}

@media (max-width: 968px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   FEATURE CARDS (Tiles) - FIXED HOVER
   ========================================== */

.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    /* Remove transform to prevent shifting */
}

.feature-card:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
    /* Removed translateY to fix shifting issue */
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.03);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.2);
}

/* Alternative: If you want images to fit within the space without cropping */
.feature-icon.contain img {
    object-fit: contain;
    padding: 1rem;
}

/* For SVG icons - smaller size */
.feature-icon.icon-small {
    height: 120px;
    background: rgba(0, 212, 255, 0.05);
}

.feature-icon.icon-small img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    padding: 0;
}


.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-icon {
        height: 180px;
    }
	.feature-icon.icon-small {
        height: 100px;
    }
	
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon {
        height: 220px;
    }
    .feature-icon.icon-small {
        height: 120px;
    }

}

/* ==========================================
   DEMO SECTION
   ========================================== */

.demo-section {
    padding: 4rem 0;
    background: rgba(0, 212, 255, 0.02);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-text p {
    font-size: 1.2rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.demo-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

@media (max-width: 968px) {
    .demo-content {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits {
    padding: 4rem 0;
    background: rgba(0, 212, 255, 0.02);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    width: 48px;
    height: 48px;
}

.benefit-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--gray-text);
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

@media (max-width: 968px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 212, 255, 0.3);
	overflow: hidden;
}

.member-photo img {
    width: 100%;           /* Fills the circle */
    height: 100%;
    object-fit: cover;     /* Crops to fill, maintains aspect ratio */
    object-position: center; /* Centers the face */
	border-radius: 50%; 
}

.member-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-credentials {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.member-bio {
    color: var(--gray-text);
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
    padding: 4rem 0;
    background: rgba(0, 212, 255, 0.02);
}

.testimonials .section-header {
    margin-bottom: 3rem;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 1rem;
    color: var(--gray-text);
}

@media (max-width: 640px) {
    .testimonials-container {
        padding: 0 1.5rem;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

@media (max-width: 968px) {
    .cta-content {
        padding: 0 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .cta-content {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info .info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 2rem;
}

.contact-info .info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info .info-card p {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-info .info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light-text);
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    padding: 0.75rem;
    color: var(--light-text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-grid {
        padding: 0 1.5rem;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    padding: 4rem 0;
}

.faq-category {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 3rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    user-select: none;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: var(--light-text);
}

@media (max-width: 968px) {
    .faq-category {
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {
    .faq-category {
        padding: 0 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-brand p {
    color: var(--gray-text);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--gray-text);
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
}
