/* Imperium Fleet - Static HTML CSS */

/* CSS Variables */
:root {
  --bg-primary: #000000;
  --bg-secondary: #121212;
  --bg-overlay: rgba(255, 255, 255, 0.1);
  --mars-red: #8B0000;
  --mars-red-hover: #A00000;
  --mars-red-glow: rgba(139, 0, 0, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: #4D4D4D;
  --metallic-silver: #C0C0C0;
  --charcoal: #1A1A1A;
  --border-subtle: rgba(255, 255, 255, 0.25);
  --border-medium: rgba(255, 255, 255, 0.4);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--mars-red);
  color: var(--text-primary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 7.6923%;
}

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

.founders-title{
    margin-bottom:40px;
}

.founders-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    max-width:900px;
    margin:auto;
}

.founder-card{
    background:#eee;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.founder-card img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.founder-role{
    color:#8B0000;
    font-weight:600;
    margin-bottom:10px;
}

.founder-name{
    color:#000;
}

.founder-desc{
    font-size:14px;
    color:#666;
}

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

/* Typography */
.display-huge {
  font-size: 66px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.62px;
  color: var(--text-primary);
}

.display-large {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.display-medium {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.heading-1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--text-primary);
}

.heading-2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.body-large {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text-primary);
}

.body-medium {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--text-secondary);
}

.text-mars {
  color: var(--mars-red);
}

/* Buttons */
.btn-primary {
  background: var(--mars-red);
  color: var(--text-primary);
  border: none;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  min-height: 56px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1.2;
}

.btn-primary:hover {
  background: var(--mars-red-hover);
  box-shadow: 0 0 30px var(--mars-red-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  min-height: 56px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-small {
  padding: 12px 24px;
  min-height: 48px;
}

.btn-full {
  width: 100%;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  padding: 0 7.6923%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
}

#header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.logo {
  height: 50px;
  cursor: pointer;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--border-subtle);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px;
  text-transform: capitalize;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1582467029039-e3b110cbe8d9?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 7.6923%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-subtitle {
  margin-bottom: 40px;
  color: var(--text-secondary);
}

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

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-form-container {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  padding: 40px;
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  margin-bottom: 8px;
}

.form-header p {
  color: rgba(255, 255, 255, 0.7);
}

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

.lead-form input,
.lead-form select,
.lead-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 16px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--mars-red);
}

.lead-form select,
.contact-form select {
  cursor: pointer;
}

.lead-form textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 20px auto 0;
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 1px, transparent 1px, transparent 7.6923%),
    repeating-linear-gradient(-90deg, #fff, #fff 1px, transparent 1px, transparent 7.6923%);
  background-size: 100% 100%;
  opacity: 0.02;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.about-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}

.feature-card:hover {
  background: rgba(139, 0, 0, 0.1);
  border-color: var(--mars-red);
}

.feature-card svg {
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: var(--mars-red);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--mars-red);
  transform: translateY(-4px);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-in-out;
}

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

.service-content {
  padding: 32px;
}

.service-content svg {
  margin-bottom: 20px;
}

.service-content h3 {
  margin-bottom: 16px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.7);
}

/* Tiers Section */
.tiers-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.tier-card:hover {
  transform: translateY(-8px);
}

.tier-card.featured {
  background: rgba(139, 0, 0, 0.1);
  border: 2px solid var(--mars-red);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mars-red);
  color: var(--text-primary);
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.tier-header {
  margin-bottom: 32px;
}

.tier-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0 16px;
}

.tier-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--mars-red);
  line-height: 1.25;
}

.tier-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.feature-item svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 18px;
  color: var(--text-secondary);
}

.tier-ideal {
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.ideal-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.ideal-text {
  font-size: 18px;
  color: var(--text-primary);
}

.tiers-cta {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tiers-cta h3 {
  margin-bottom: 16px;
}

.tiers-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

/* Why Section */
.why-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.why-card {
  padding: 40px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}

.why-card:hover {
  background: rgba(139, 0, 0, 0.05);
  border-color: var(--mars-red);
}

.why-card svg {
  margin-bottom: 24px;
}

.why-card h3 {
  margin-bottom: 16px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 60px;
  background: rgba(139, 0, 0, 0.05);
  border: 1px solid rgba(139, 0, 0, 0.3);
  text-align: center;
}

.stat-number-large {
  font-size: 56px;
  font-weight: 700;
  color: var(--mars-red);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label-large {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-sublabel {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1647200527478-bf501db5def5?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.95) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.testimonial-card {
  padding: 40px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}

.testimonial-card:hover {
  border-color: var(--mars-red);
  transform: translateY(-4px);
}

.testimonial-card svg {
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.testimonial-position {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 14px;
  color: var(--mars-red);
}

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

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

.contact-info h3 {
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.contact-method:hover {
  background: rgba(139, 0, 0, 0.1);
  border-color: var(--mars-red);
}

.contact-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  color: var(--text-primary);
}

.trust-box {
  padding: 32px;
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.trust-box h4 {
  margin-bottom: 16px;
}

.trust-box p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 48px;
}

.contact-form-container h3 {
  margin-bottom: 32px;
}

.form-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column h4 {
  margin-bottom: 24px;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--mars-red);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: var(--mars-red);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal button:hover {
  color: var(--text-primary);
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .tiers-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .display-huge {
    font-size: 42px;
  }
  
  .display-large {
    font-size: 36px;
  }
  
  .display-medium {
    font-size: 28px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  #header {
    padding: 0 20px;
    height: 70px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-section {
    padding-top: 70px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-grid,
  .services-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    height: 300px;
  }
  
  .stats-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .hero-form-container,
  .contact-form-container {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .display-huge {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
