:root {
    /* Final Theme: Deep Navy & Orange */
    --primary-color: #091057;
    --secondary-color: #024CAA;
    --accent-color: #EC8305;
    --neutral-color: #DBD3D3;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-main: #ffffff;
    --bg-section: #f8faff;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(9, 16, 87, 0.08);
}

/* Theme Switcher Styles */
.theme-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}
.theme-switcher h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.theme-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.theme-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.theme-option:hover { background: var(--bg-section); }
.theme-option.active {
    border-color: var(--primary-color);
    background: var(--bg-section);
}
.theme-colors {
    display: flex;
    gap: 4px;
}
.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.theme-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-main);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}
.logo-icon {
  width: 60px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.logo-text {
    display: flex;
    gap: 0;
    white-space: nowrap;
}
.logo-text .checkpoint {
    color: var(--primary-color);
}
.logo-text .ace {
    color: var(--accent-color);
    font-weight: 800;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50%     { opacity: 0.3; transform: translateY(-50%) scale(1.2); }
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}
.nav-links a:hover { color: var(--primary-color); }
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { width: 0; }
    to   { width: 100%; }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236,131,5,0.3);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background:
        linear-gradient(135deg, rgba(9, 16, 87, 0.4) 0%, rgba(2, 76, 170, 0.3) 100%),
        url('../images/student photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%     { transform: translateY(-20px) rotate(1deg); }
    66%     { transform: translateY(10px) rotate(-1deg); }
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}
.stat {
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.cta-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(255,145,73,0.3);
    position: relative;
    overflow: hidden;
}
.cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.cta-primary:hover::before { left: 100%; }
.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(236,131,5,0.4);
}
.cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Value Proposition */
.value-prop {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-dark);
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.value-card {
    background: rgba(255, 255, 255, 0.95);  /* Match login card transparency */
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(96,181,255,0.05), rgba(255,145,73,0.05));
    opacity: 0;
    transition: opacity 0.3s;
}
.value-card:hover::before { opacity: 1; }
.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(9,16,87,0.15);
}
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}
.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}
.value-card p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.user-section {
  margin-bottom: 80px;
}

.user-section:last-child {
  margin-bottom: 0;
}

.user-header {
  text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.95);  /* Match login card style */
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(9,16,87,0.15); 
}

.user-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1));
  opacity: 0.3;
}

.user-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.user-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.user-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.coming-soon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.3); }
  50% { box-shadow: 0 0 30px rgba(131, 56, 236, 0.4); }
}

.value-card.coming-soon {
  opacity: 1;  /* Change from 0.9 to full opacity */
    background: rgba(255, 255, 255, 0.95);  /* Same as regular cards */
    border: 2px solid rgba(236, 131, 5, 0.4);  /* Orange border to distinguish */
    backdrop-filter: blur(30px);
}

.value-card.coming-soon::before {
  background: linear-gradient(135deg, rgba(236, 131, 5, 0.05), rgba(9, 16, 87, 0.05));
    opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .user-section {
    margin-bottom: 60px;
  }
  
  .user-header {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .user-emoji {
    font-size: 2.5rem;
  }
  
  .user-header h3 {
    font-size: 1.6rem;
  }
  
  .user-header p {
    font-size: 1.1rem;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(9, 16, 87, 0.02), rgba(2, 76, 170, 0.02));
    color: var(--text-dark);
}

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

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: -40px auto 60px auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}
.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(96,181,255,0.05), rgba(255,145,73,0.05));
    opacity: 0;
    transition: opacity 0.3s;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(9,16,87,0.15);
}
.pricing-card.featured {
    border: 2px solid var(--border-color);
    transform: none;
    box-shadow: 0 15px 40px rgba(9,16,87,0.15);
}
.pricing-card.featured::before { opacity: 1; }

.pricing-card.featured:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(236,131,5,0.3);
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}
.plan-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}
.plan-period {
    opacity: 0.7;
    margin-bottom: 30px;
    color: #666;
    position: relative;
    z-index: 2;
}
.plan-features {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    text-align: left;
}
.plan-features li {
    padding: 12px 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}
.plan-cta {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-decoration: none;
    display: block;
    font-size: 1.05rem;
}
.plan-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.plan-cta:hover::before { left: 100%; }
.plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(9,16,87,0.3);
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--bg-section);
    color: var(--text-dark);
}
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.testimonial {
    background: white;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px var(--shadow-color);
}
.testimonial:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(9,16,87,0.1);
}
.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.author-info h4 {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}
.author-info p {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}
.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, white 0%, var(--neutral-color) 50%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}
.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .section-title { font-size: 2rem; }
    .pricing-card.featured { transform: none; }
    .logo-text { font-size: 20px; }
    .logo-square { width: 12px; height: 12px; }
}

/* Fade / Slide Animations */
.fade-in { opacity: 0; transform: translateY(30px); }
.slide-in-left { opacity: 0; transform: translateX(-50px); }
.slide-in-right { opacity: 0; transform: translateX(50px); }

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(236, 131, 5, 0.03), rgba(9, 16, 87, 0.03));
}

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

.features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: -40px auto 60px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(236, 131, 5, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Solutions Section with Tabs */
.solutions {
    padding: 100px 0;
    background: var(--bg-main);
}

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

.solutions-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: -40px auto 60px auto;
}

/* User Tabs */
.user-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.user-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.user-tab:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(9, 16, 87, 0.1);
}

.user-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(236, 131, 5, 0.3);
}

.tab-icon {
    font-size: 1.5rem;
}

.tab-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.user-tab.active .tab-badge {
    background: rgba(255, 255, 255, 0.3);
}

.coming-soon-tab {
    opacity: 0.85;
}

/* User Content Panels */
.user-content {
    max-width: 1000px;
    margin: 0 auto;
}

.user-panel {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px var(--shadow-color);
    border: 2px solid var(--border-color);
    animation: fadeIn 0.5s ease;
}

.user-panel.active {
    display: block;
}

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

.panel-header {
    text-align: center;
    margin-bottom: 40px;
}

.panel-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.panel-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-section);
    border-radius: 15px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(9, 16, 87, 0.1);
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Coming Soon Content */
.coming-soon-content {
    text-align: center;
    padding: 40px;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.coming-soon-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coming-soon-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.coming-soon-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px auto;
    list-style: none;
    padding: 0;
}

.coming-soon-list li {
    padding: 12px 0;
    color: #333;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.coming-soon-list li:last-child {
    border-bottom: none;
}

.coming-soon-list li::before {
    content: '🔜';
    margin-right: 10px;
}

.notify-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-top: 25px;
}

.notify-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.notify-text a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px var(--shadow-color);
}

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

.faq-item.active {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-section);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

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

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

.faq-answer {
    padding: 0 30px 25px 30px;
    animation: slideDown 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Activity Section */
.activity {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(236, 131, 5, 0.08), rgba(9, 16, 87, 0.05));
}

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

.activity-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: -40px auto 60px auto;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.activity-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px var(--shadow-color);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 16, 87, 0.03), rgba(236, 131, 5, 0.03));
    opacity: 0;
    transition: opacity 0.3s;
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(9, 16, 87, 0.15);
    border-color: var(--primary-color);
}

.activity-card.featured-card {
    background: linear-gradient(135deg, rgba(236, 131, 5, 0.05), rgba(9, 16, 87, 0.05));
    border: 3px solid var(--accent-color);
}

.activity-card.featured-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(236, 131, 5, 0.25);
}

.activity-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.activity-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.activity-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(9, 16, 87, 0.2);
}

.activity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 16, 87, 0.3);
}

.activity-btn.primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 15px rgba(236, 131, 5, 0.3);
}

.activity-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(236, 131, 5, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-main);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 16, 87, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(9, 16, 87, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(9, 16, 87, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer .logo {
    margin-bottom: 15px;
}

.footer .logo .logo-text .checkpoint {
    color: var(--neutral-color);
}

.footer .logo .logo-text .ace {
    color: var(--accent-color);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo {
        gap: 10px;
    }

    .logo-icon {
        width: 50px;
    }

    .logo-text {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .user-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .user-tab {
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .user-panel {
        padding: 30px 20px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
    }

    .panel-header h3 {
        font-size: 1.6rem;
    }
}

