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

:root {
  --primary-indigo: #1a1b4b;
  --primary-coral: #ff6f61;
  --accent-mint: #00e6a0;
  --accent-gray: #555b7a;
  --accent-light-coral: #ff9a76;
  --text-light: #ffffff;
  --text-dark: #1a1b4b;
  --bg-dark: #0f0f2e;
  --border-glow: rgba(255, 111, 97, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-coral) 100%);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

/* Header */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 27, 75, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(255, 111, 97, 0.1);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 111, 97, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px var(--primary-coral));
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-coral);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 27, 75, 0.8) 0%, rgba(255, 111, 97, 0.8) 100%);
  animation: parallax 20s linear infinite;
  z-index: -1;
}

@keyframes parallax {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: var(--accent-mint);
  color: var(--primary-indigo);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 230, 160, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 230, 160, 0.5);
}

/* Secondary Hero */
.hero-secondary {
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-coral) 100%);
  color: var(--text-light);
  padding: 140px 2rem 80px;
  text-align: center;
  margin-top: 60px;
}

.hero-secondary h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-secondary p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 80px 0;
}

section > .container > h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 111, 97, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 111, 97, 0.5);
  box-shadow: 0 12px 48px rgba(255, 111, 97, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.glass-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.glass-card p {
  color: var(--text-dark);
  opacity: 0.8;
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.why-choose h2 {
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonials */
.testimonials {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.testimonials h2 {
  color: var(--text-light);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 111, 97, 0.3);
  border-radius: 15px;
  padding: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  color: var(--accent-mint);
  font-weight: 600;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* About Section */
.about-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.about-intro,
.milestones,
.team-section {
  margin-bottom: 4rem;
}

.about-intro h2,
.milestones h2,
.team-section h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.9;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-coral) 0%, var(--primary-indigo) 100%);
}

.milestone {
  display: flex;
  margin-bottom: 3rem;
  gap: 2rem;
}

.milestone:nth-child(odd) {
  flex-direction: row-reverse;
}

.milestone-year {
  flex: 0 0 150px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
}

.milestone-content {
  flex: 1;
  background: rgba(255, 111, 97, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 3px solid var(--primary-coral);
}

.milestone-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.milestone-content p {
  color: var(--text-dark);
  opacity: 0.8;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-card {
  background: rgba(26, 27, 75, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(26, 27, 75, 0.1);
  transition: all 0.3s ease;
}

.about-card:hover {
  background: rgba(255, 111, 97, 0.1);
  border-color: var(--primary-coral);
}

.about-card h3 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Mission Content */
.mission-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.mission-statement {
  text-align: center;
  margin-bottom: 3rem;
}

.mission-statement h2 {
  color: var(--primary-indigo);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-size: 1.3rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Pillars */
.pillars h2 {
  color: var(--text-dark);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pillar-card {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.1) 0%, rgba(0, 230, 160, 0.05) 100%);
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 111, 97, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--primary-coral);
  box-shadow: 0 8px 24px rgba(255, 111, 97, 0.15);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  color: var(--primary-coral);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Values */
.mission-values {
  background: rgba(26, 27, 75, 0.05);
  padding: 3rem;
  border-radius: 15px;
  margin-top: 3rem;
}

.mission-values h2 {
  color: var(--text-dark);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-coral);
}

.value-item h3 {
  color: var(--primary-coral);
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-dark);
  opacity: 0.8;
}

/* Coverage Section */
.coverage-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.coverage-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.coverage-intro h2 {
  color: var(--text-dark);
}

.coverage-intro p {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.coverage-map {
  margin: 3rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.coverage-zones {
  margin: 3rem 0;
}

.coverage-zones h2 {
  color: var(--text-dark);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.zone-card {
  background: rgba(255, 111, 97, 0.08);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 111, 97, 0.2);
  text-align: center;
}

.zone-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.zone-card h3 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.zone-card p {
  color: var(--text-dark);
  opacity: 0.8;
}

.expansion-info {
  background: rgba(0, 230, 160, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-mint);
  margin-top: 2rem;
}

.expansion-info h2 {
  color: var(--text-dark);
}

.expansion-info p {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.expansion-list {
  list-style: none;
}

.expansion-list li {
  color: var(--text-dark);
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.expansion-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: bold;
}

/* Networks Section */
.networks-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.networks-intro h2 {
  color: var(--text-dark);
}

.infra-visualization {
  margin: 3rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.infra-image {
  width: 100%;
  height: auto;
  display: block;
}

.networks-features h2 {
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: rgba(26, 27, 75, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(26, 27, 75, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-coral);
  background: rgba(255, 111, 97, 0.08);
}

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

.feature-card h3 {
  color: var(--primary-indigo);
  margin-bottom: 1rem;
}

/* Network Specs */
.network-specs {
  background: rgba(255, 111, 97, 0.08);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.network-specs h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.specs-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.spec-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-coral);
}

.spec-item h3 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.spec-item ul {
  list-style: none;
}

.spec-item li {
  color: var(--text-dark);
  padding: 0.5rem 0;
}

/* FAQ Section */
.faq-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.faq-category h2 {
  color: var(--primary-coral);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: white;
  border: 1px solid rgba(26, 27, 75, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem;
  background: rgba(255, 111, 97, 0.08);
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: rgba(255, 111, 97, 0.15);
}

.accordion-header::after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
}

.accordion-content p {
  color: var(--text-dark);
  opacity: 0.8;
}

/* Contact Section */
.contact-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-form-section h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(26, 27, 75, 0.1);
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.1);
}

.contact-info-section h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(255, 111, 97, 0.08);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-coral);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  color: var(--primary-coral);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-dark);
  opacity: 0.8;
}

.small-text {
  font-size: 0.9rem;
  opacity: 0.6 !important;
}

.office-image {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Policy Content */
.policy-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 60px 0;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.policy-section p {
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.cookie-type {
  background: rgba(255, 111, 97, 0.08);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-coral);
  margin-bottom: 1.5rem;
}

.cookie-type h3 {
  color: var(--primary-coral);
  margin-bottom: 0.5rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
}

.policy-list li {
  color: var(--text-dark);
  opacity: 0.8;
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.policy-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-coral);
  font-weight: bold;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-coral) 100%);
  color: var(--text-light);
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.footer-section a {
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .cards-grid,
  .testimonial-slider,
  .zones-grid,
  .features-grid,
  .pillars-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .milestone {
    flex-direction: column !important;
  }

  .milestone-year {
    flex: 0 0 auto;
  }

  section {
    padding: 50px 0;
  }

  section > .container > h2 {
    font-size: 1.8rem;
  }
}
