/* Announcement Bar */
.announcement-bar {
  background: var(--primary-darkblue);
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .announcement-bar {
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    padding: 0.7rem 0.5rem;
    font-size: 0.8rem;
  }

  .announcement-text {
    display: block;
    word-wrap: break-word;
    line-height: 1.3;
  }
}

.announcement-bar a {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Typing Animation Styles */
.typing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.typing-line {
  display: inline-block;
  margin: 0.2rem 0;
  min-height: 1.2em;
  position: relative;
}

.typing-cursor {
  display: inline-block;
  background-color: var(--primary-darkblue);
  width: 3px;
  height: 1em;
  animation: blink 1s infinite;
  margin-left: 2px;
  vertical-align: baseline;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hero Section */
.hero {
  position: relative;
  margin-top: 50px;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 45px;
    padding-top: 0.3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 40px;
    padding-top: 0.2rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--secondary-teal);
  border-radius: 50%;
  opacity: 0.08;
  animation: blobFloat1 10s infinite ease-in-out;
  z-index: 0;
}

/* Questions Flow */
.questions-flow {
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.questions-flow::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 250px; height: 250px;
  background: var(--accent-orange);
  border-radius: 40%;
  opacity: 0.08;
  transform: rotate(45deg);
  animation: blobFloat2 12s infinite ease-in-out;
  z-index: 0;
}

.questions-flow h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--primary-darkblue);
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flow-item {
  background: var(--background-light);
  border: 2px solid var(--primary-darkblue);
  border-radius: 50%;
  width: 140px; height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-darkblue);
  z-index: 1;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.flow-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  background: var(--primary-darkblue);
  color: #fff;
}

.answer-box {
  background: var(--primary-darkblue);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.answer-box h3 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Strength Section */
.strength-section {
  background: var(--background-light);
  position: relative;
  overflow: hidden;
}

.strength-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: var(--secondary-teal);
  border-radius: 50%;
  opacity: 0.08;
  animation: blobFloat3 14s infinite ease-in-out;
  z-index: 0;
}

.strength-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-darkblue);
  margin-bottom: 2rem;
}

.strength-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  z-index: 1;
}

/* Mobile override for strength grid */
@media (max-width: 768px) {
  .strength-grid {
    grid-template-columns: 1fr !important;
    display: block;
  }

  .strength-text {
    margin-bottom: 2rem;
  }

  .strength-highlights {
    margin-top: 1rem;
  }
}

.strength-text p {
  margin-bottom: 1.2rem;
}

.strength-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0f4ff;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 600;
  color: var(--primary-darkblue);
  transition: background 0.3s ease, color 0.3s ease;
}

.highlight-card i {
  font-size: 1.5rem;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.highlight-card:hover {
  background: var(--primary-darkblue);
  color: #fff;
}

.highlight-card:hover i {
  color: #fff;
}

/* Evidence Section */
.evidence-section {
  background: #f9fafc;
  padding: 0rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.evidence-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--accent-orange);
  opacity: 0.08;
  border-radius: 50%;
  animation: blobFloat1 12s infinite ease-in-out;
  z-index: 0;
}

.evidence-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.evidence-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-darkblue);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.evidence-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: var(--accent-orange);
  margin: 0.6rem auto 0 auto;
  border-radius: 2px;
  opacity: 0.8;
}

.evidence-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 auto;
  max-width: 700px;
}

.highlight-word {
  color: var(--accent-orange);
  font-weight: 700;
  position: relative;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent-orange);
  opacity: 0.15;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .evidence-title { font-size: 2rem; }
  .evidence-subtitle { font-size: 1.1rem; }
}

/* Services Section */
.services-section {
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
}

.service-card i {
  font-size: 2rem;
  color: var(--primary-darkblue);
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-darkblue);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--accent-orange);
}

/* Launch Section */
.launch {
  background: var(--primary-darkblue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.launch::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: var(--background-light);
  border-radius: 50%;
  opacity: 0.08;
  animation: blobFloat3 15s infinite ease-in-out;
  z-index: 0;
}

.launch .container {
  text-align: center;
}

.launch h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.launch p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.launch a {
  color: var(--background-light);
  font-weight: 600;
  text-decoration: none;
  background: var(--accent-orange);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.launch a:hover {
  background: var(--secondary-teal);
}