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

:root {
    --primary-gradient: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
    --secondary-gradient: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    --accent-gradient: linear-gradient(135deg, #5ba3f5 0%, #3d7bc7 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --glass: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #667eea;
}

.app-button {
    background: var(--primary-gradient);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.app-button:visited {
    color: white;
}

.nav-links a.red-text {
    color: #e74c3c;
    font-weight: 600;
}

.nav-links a.red-text:hover {
    color: #c0392b;
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-small {
    background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-container-small {
    padding: 60px 30px;
    margin: 0 auto;
    padding: 120px 30px 60px;
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}   

.hero-content {
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: slideInLeft 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.centered {
    justify-content: center;
}

.secondary-link {
    color: "white";
    font-weight: 100;
    transition: all 0.3s ease;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.secondary-link:hover {
    color: #667eea;
    text-decoration: underline;
}

.secondary-link:visited {
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.primary-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.primary-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-store-button {
    transition: all 0.3s ease;
}

.app-store-button:hover {
    transform: translateY(-3px);
}

.hero-devices {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out 0.6s both;
}

.device-showcase {
    position: relative;
}

.mobile-device {
    width: 280px;
    height: auto;
    border-radius: 25px;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.desktop-device {
    width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 60px;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Why Journe Section */
.why-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-content {
    text-align: center;
    margin-bottom: 80px;
}

.why-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.why-button {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    display: inline-block;
}

.why-button:hover {
    background: var(--secondary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.why-testimonial {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.center-box {
    margin: 0 auto;
    margin-top: 50px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-gradient);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-secondary);
    text-align: right;
}

.why-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 144, 226, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platform Showcase */
.platform-section {
    padding: 120px 0;
    background: var(--dark-gradient);
    color: white;
}

.platform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.platform-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.platform-features {
    list-style: none;
}

.platform-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-light);
}

.platform-features li::before {
    content: '✓';
    background: var(--accent-gradient);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
}

.platform-image {
    text-align: center;
}

.platform-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--secondary-gradient);
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.programs-section {
    padding: 60px 20px;
    max-width: 980px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-content: center;
}

.program-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    height: 300px;
    animation: fadeInUp 0.6s ease forwards;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.program-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image {
    transform: scale(1.05);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: white;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.program-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    flex: 1;
}

.program-price {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: none;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.program-price.free {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.program-price.premium {
    background: rgba(255, 193, 7, 0.9);
    color: #fff;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}

.program-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    flex: 1;
}

.program-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.thumbs-icon {
    width: 16px;
    height: 16px;
    fill: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.thumbs-count {
    margin-left: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}


/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer p {
    opacity: 0.7;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh; /* Ensure full viewport height */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 80px 30px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center items vertically */
    gap: 30px; /* Increase gap between items */
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
    width: 100%;
}

.mobile-menu a.red-text {
    color: #e74c3c;
}

.mobile-menu a.app-button {
    margin-top: 15px;
    padding: 12px 28px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-devices {
        flex-direction: column;
        gap: 40px;
    }
    
    .desktop-device {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-text h3 {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-device {
        width: 240px;
    }
    
    .desktop-device {
        width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.modern-footer {
	position: relative;
	background: var(--dark-gradient);
	color: var(--text-light);
	overflow: hidden;
  }
  
  .footer-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
  }
  
  /* Main Footer Section */
  .footer-main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	padding: 4rem 0 3rem;
  }
  
  @media (max-width: 768px) {
	.footer-main {
	  grid-template-columns: 1fr;
	  gap: 3rem;
	  padding: 3rem 0 2rem;
	}
  }
  
  /* Brand Section */
  .footer-brand {
	max-width: 300px;
  }
  
  .brand-logo {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
  }
  
  .logo-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
  }
  
  .brand-name {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #e8f4fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
  }
  
  .brand-tagline {
	font-size: 1rem;
	opacity: 0.8;
	line-height: 1.5;
	margin-bottom: 2rem;
  }
  
  /* Social Links */
  .social-links {
	display: flex;
	gap: 1rem;
  }
  
  .social-link {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .social-link:hover {
	background: var(--primary-gradient);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
	color: white;
  }
  
  /* Footer Links */
  .footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
  }
  
  @media (max-width: 768px) {
	.footer-links {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 2rem;
	}
  }
  
  @media (max-width: 480px) {
	.footer-links {
	  grid-template-columns: 1fr;
	}
  }
  
  .link-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
  }
  
  .link-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
  }
  
  .footer-link {
	color: var(--text-light);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	opacity: 0.8;
	position: relative;
  }
  
  .footer-link:hover {
	color: #5ba3f5;
	opacity: 1;
	transform: translateX(4px);
  }
  
  .footer-link::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: #5ba3f5;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
  }
  
  .footer-link:hover::before {
	opacity: 1;
  }
  
  /* Newsletter Section */
  .newsletter-section {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 2.5rem;
	margin-bottom: 3rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .newsletter-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
  }
  
  @media (max-width: 768px) {
	.newsletter-content {
	  grid-template-columns: 1fr;
	  text-align: center;
	  gap: 1.5rem;
	}
  }
  
  .newsletter-text h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: white;
  }
  
  .newsletter-text p {
	opacity: 0.8;
	font-size: 1rem;
	line-height: 1.5;
  }
  
  .input-group {
	display: flex;
	gap: 0.75rem;
	max-width: 400px;
  }
  
  @media (max-width: 768px) {
	.input-group {
	  max-width: none;
	}
  }
  
  @media (max-width: 480px) {
	.input-group {
	  flex-direction: column;
	  gap: 1rem;
	}
  }
  
  .email-input {
	flex: 1;
	padding: 1rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
  }
  
  .email-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
  }
  
  .email-input:focus {
	outline: none;
	border-color: #5ba3f5;
	box-shadow: 0 0 0 3px rgba(91, 163, 245, 0.2);
	background: rgba(255, 255, 255, 0.15);
  }
  
  .subscribe-btn {
	padding: 1rem 1.5rem;
	background: var(--primary-gradient);
	border: none;
	border-radius: 12px;
	color: white;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
	box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  }
  
  .subscribe-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
  }
  
  /* Footer Bottom */
  .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem 0;
  }
  
  .bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  @media (max-width: 768px) {
	.bottom-content {
	  flex-direction: column;
	  gap: 1rem;
	  text-align: center;
	}
  }
  
  .copyright p {
	font-size: 0.9rem;
	opacity: 0.7;
	margin: 0;
  }
  
  .company-link {
	color: #5ba3f5;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
  }
  
  .company-link:hover {
	opacity: 0.8;
  }
  
  .built-with {
	font-size: 0.9rem;
	opacity: 0.7;
  }
  
  /* Decorative Elements */
  .footer-decoration {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
  }
  
  .decoration-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(91, 163, 245, 0.1) 0%, rgba(74, 144, 226, 0.05) 100%);
	animation: float 20s ease-in-out infinite;
  }
  
  .circle-1 {
	width: 300px;
	height: 300px;
	top: -150px;
	right: -150px;
	animation-delay: 0s;
  }
  
  .circle-2 {
	width: 200px;
	height: 200px;
	bottom: -100px;
	left: -100px;
	animation-delay: -7s;
  }
  
  .circle-3 {
	width: 150px;
	height: 150px;
	top: 30%;
	left: 20%;
	animation-delay: -14s;
  }
  
  /* Smooth Animations */
  .footer-link,
  .social-link,
  .subscribe-btn {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Enhanced Focus States */
  .footer-link:focus,
  .social-link:focus,
  .subscribe-btn:focus,
  .email-input:focus {
	outline: 2px solid rgba(91, 163, 245, 0.5);
	outline-offset: 2px;
  }