/* Aspire Spectrum - Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #020617;
  color: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }

@media (min-width: 640px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

p {
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  p { font-size: 1rem; }
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1e293b;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

@media (min-width: 640px) {
  .navbar-inner { height: 4rem; }
}

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #22d3ee;
}

@media (min-width: 640px) {
  .logo { font-size: 1.25rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  color: #cbd5e1;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #22d3ee;
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  background: #22d3ee;
  color: #020617;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #06b6d4;
}

/* Mobile Menu */
.menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  padding-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
  background: #1e293b;
  color: #22d3ee;
}

.mobile-cta {
  display: block;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: #22d3ee;
  color: #020617;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #22d3ee;
  color: #020617;
}

.btn-primary:hover {
  background: #06b6d4;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #334155;
}

.btn-secondary:hover {
  background: #1e293b;
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section { padding: 5rem 0; }
}

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

@media (min-width: 640px) {
  .section-header { margin-bottom: 3rem; }
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22d3ee;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-desc {
  max-width: 32rem;
  margin: 0 auto;
}

/* Cards */
.card {
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid #1e293b;
  border-radius: 0.75rem;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.5);
}

@media (min-width: 640px) {
  .card { padding: 1.5rem; }
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #22d3ee;
}

.card-title {
  margin-bottom: 0.5rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
}

@media (min-width: 640px) {
  .hero { padding-top: 4rem; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: 
    linear-gradient(to right, #334155 1px, transparent 1px),
    linear-gradient(to bottom, #334155 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #22d3ee;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-badge { font-size: 0.875rem; }
}

.hero-title span {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 36rem;
  margin: 1rem auto 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn { width: auto; }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 32rem;
  margin: 2.5rem auto 0;
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
}

.stat {
  text-align: center;
  padding: 0.75rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 640px) {
  .stat-value { font-size: 1.5rem; }
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Page Hero */
.page-hero {
  padding: 6rem 0 3rem;
  background: #0f172a;
  text-align: center;
}

@media (min-width: 640px) {
  .page-hero { padding: 8rem 0 4rem; }
}

/* Backgrounds */
.bg-dark { background: #020617; }
.bg-darker { background: #0f172a; }

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #22d3ee;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

/* Contact Info */
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #22d3ee;
}

.contact-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.875rem;
  color: #fff;
}

/* Map */
.map-container {
  width: 100%;
  height: 200px;
  background: #1e293b;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .map-container { height: 280px; }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

/* Footer */
.footer {
  background: #020617;
  border-top: 1px solid #1e293b;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  max-width: 20rem;
}

.footer-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #22d3ee;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  font-size: 0.75rem;
  color: #64748b;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #64748b;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #22d3ee;
}

/* List Styles */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.check-list svg {
  width: 1rem;
  height: 1rem;
  color: #22d3ee;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Scale Card (Special) */
.scale-card {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.1));
  border: 2px solid rgba(34, 211, 238, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.scale-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.scale-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #22d3ee;
  border-radius: 0.5rem;
}

.scale-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #020617;
}

.scale-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22d3ee;
}

.scale-title {
  font-size: 1.125rem;
  color: #fff;
}

.scale-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.scale-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #22d3ee;
}

/* Industry Card */
.industry-card {
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid #1e293b;
  border-radius: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.industry-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-cyan { color: #22d3ee; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
