:root {
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2rem;     /* 32px */
    --space-xl: 3rem;     /* 48px */
    --space-2xl: 4rem;    /* 64px */
    --space-3xl: 6rem;    /* 96px */

    /* Typography Scale */
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-2xl: 3rem;
    --font-size-3xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Colors */
    --primary-blue: #00ccff;
    --text-gray: rgba(255, 255, 255, 0.7);
}

html {
    scroll-behavior: smooth;
}
body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

@import 'inner-pages.css';

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #00ccff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, transform 0.3s;
    font-size: 1.1rem;
}

.social-icons a:hover {
    color: #00ccff;
    transform: translateY(-2px);
}

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.language-btn:hover {
    border-color: #00ccff;
    background: rgba(0, 204, 255, 0.1);
}

.language-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 150px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.language-dropdown.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

.language-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(90deg, #00ccff, #0099ff);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 204, 255, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Focus state for navigation buttons */
.nav-btn:focus,
.nav-btn.logout:focus {
  outline: 2px solid #00a8ff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.15);
}

/* Page fade/slide transitions */
.page-fade-enter {
  opacity: 0;
  transform: translateY(30px);
}

.page-fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}

.page-fade-exit {
  opacity: 1;
  transform: translateY(0);
}

.page-fade-exit-active {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s, transform 0.5s;
}

/* Card/grid staggered fade-in */
.card-stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeIn 0.7s forwards;
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal fade/scale */
.modal {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s, transform 0.3s;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}

.modal-content {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: white;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #00a8ff;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background: #00a8ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background: #0095e6;
  transform: translateY(-2px);
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-footer a {
  color: #00a8ff;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/futuriste/ya usado 5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00ccff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-info {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.pricing-card-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.pricing-period {
    font-size: 1rem;
    font-weight: normal;
    color: rgba(255,255,255,0.7);
}

.pricing-access {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-feature-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
}

.pricing-feature-icon {
    margin-right: 0.75rem;
}

.pricing-feature-icon.check { color: #00ccff; }
.pricing-feature-icon.check-green { color: #00ff88; }
.pricing-feature-icon.cross { color: rgba(255,255,255,0.3); }

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    margin-top: auto;
}

/* Specific Card Styles */
.pricing-free { order: 1; }
.pricing-free .pricing-card-top-bar { background: linear-gradient(90deg, #00ccff, #0099ff); }
.pricing-free .pricing-badge { background: linear-gradient(90deg, #00ff88, #00ccff); }

.pricing-daily { order: 2; }
.pricing-daily .pricing-card-top-bar { background: linear-gradient(90deg, #0066cc, #004499); }
.pricing-daily .pricing-badge { background: linear-gradient(90deg, #0066cc, #004499); }

.pricing-premium {
    order: 3;
    background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,168,255,0.1));
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    z-index: 1;
}
.pricing-premium .pricing-card-top-bar { background: linear-gradient(90deg, #00ff88, #00a8ff); }
.pricing-premium .pricing-badge { background: linear-gradient(90deg, #00ff88, #00a8ff); color: black; }

.pricing-professional {
    order: 4;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,140,0,0.1));
    border: 2px solid #ffd700;
}
.pricing-professional .pricing-card-top-bar { background: linear-gradient(90deg, #ffd700, #ff8c00); }
.pricing-professional .pricing-badge { background: linear-gradient(90deg, #ffd700, #ff8c00); color: black; }

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-premium {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    background: #000; /* Fallback */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6; /* Slight transparency to blend with black background */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.4) 0%, rgba(0, 20, 40, 0.7) 100%);
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50px;
    color: #00ccff;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #ffffff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation-delay: 0.2s;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation-delay: 0.4s;
}

.hero-btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

.hero-btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation-delay: 0.6s;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}


/* Usage Limits Section */
.usage-limits-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.usage-limits-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ccff;
}

.usage-limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.usage-limits-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.usage-limits-subtitle.premium {
    color: #00ccff;
}

.usage-limits-list {
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.usage-limits-list.premium {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer CTA Section */
.footer-cta-section {
    background: linear-gradient(135deg, #001a33 0%, #000000 100%);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.footer-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.footer-cta-text {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.footer-cta-btn {
    font-size: 1.3rem;
}

.footer-cta-subtext {
    margin-top: var(--space-md);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.05), rgba(0, 204, 255, 0.02));
    padding: 4rem 2rem;
}

.newsletter-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Intelligent Recruitment Section */
.intelligent-recruitment {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.intelligent-content-wrapper {
    display: flex;
    width: 100%;
    height: 100vh;
}

.intelligent-text {
    width: 50%;
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    z-index: 2;
}

.intelligent-text h2 {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: white;
}

.intelligent-text p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.intelligent-image-container {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.intelligent-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.intelligent-image-container:hover img {
    transform: scale(1.05);
}

.highlight {
    display: block;
    background: linear-gradient(90deg, #00ccff, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 168, 255, 0.6); }
    50% { text-shadow: 0 0 40px rgba(0, 168, 255, 0.9); }
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Promises Section */
.promises-section {
    padding: var(--space-3xl) var(--space-lg);
    background-color: #000;
    background-image: url('../images/futuriste/A (5).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
}

.promises-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay for readability */
    z-index: 1;
}

.promises-container, .promises-title, .promises-grid {
    position: relative;
    z-index: 2;
}

.promises-title {
    text-align: center;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2xl);
    background: linear-gradient(135deg, #ffffff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.promise-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 168, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.3);
}

.promise-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.promise-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.promise-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Expandable Promise Styles */
.promise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.promise-title-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.promise-icon {
    margin-bottom: 0; /* Override previous margin */
    font-size: 2rem;
}

.promise-card h3 {
    margin-bottom: 0; /* Override previous margin */
}

.promise-toggle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.promise-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.promise-card.active .promise-content {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    margin-top: var(--space-md);
}

.promise-card.active .promise-toggle {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .intelligent-content-wrapper {
        flex-direction: column;
    }
    .intelligent-text, .intelligent-image-container {
        width: 100%;
        height: auto;
    }
    .intelligent-image-container {
        height: 50vh;
    }
/* Inner Pages Standardization */
.main-content {
    padding-top: 100px;
    min-height: calc(100vh - 400px);
    padding-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 168, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.card ul li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Form Styles for Contact/Login */
.form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    }
}


/* Footer Styles */
footer {
    background: linear-gradient(to top, #000000, #0a0a0a);
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #00ccff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* =========================================
   PREMIUM INNER PAGE STYLES (Refactoring)
   ========================================= */

/* Inner Page Hero Section */
.inner-hero {
    position: relative;
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(0, 168, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../images/grid-pattern.png') repeat; */ /* Optional */
    opacity: 0.05;
    pointer-events: none;
}

.inner-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.inner-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Glass Card (Generic Premium Card) */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.15);
    border-color: rgba(0, 204, 255, 0.3);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.glass-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00ccff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Feature Grid (Responsive) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Profile Card (For Team) */
.profile-card {
    text-align: center;
    align-items: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid rgba(0, 204, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.profile-role {
    color: #00ccff;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Timeline / Values Layout (For About Page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

/* Contact Form Styling */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-group label {
    color: #00ccff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: #00ccff;
    background: rgba(0, 0, 0, 0.5);
}

/* List Styling with Checks */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.check-list li::before {
    content: '\f00c'; /* Font Awesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #00ccff;
}

