
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #050716;
  color: #f9fafb;
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5,7,22,0.85);
  border-bottom: 1px solid rgba(148,163,184,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #38bdf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-sub {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

.nav-links a {
  font-size: 0.9rem;
  color: #e5e7eb;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #22c55e, #38bdf8);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-primary {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(to right, #22c55e, #38bdf8);
  border: none;
  color: #020617;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(56,189,248,0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(56,189,248,0.35);
}

.btn-outline {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  color: #e5e7eb;
  background: transparent;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  background: rgba(15,23,42,0.9);
  border-color: #38bdf8;
  color: #f9fafb;
}

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

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.75);
  margin-bottom: 1.1rem;
}

.hero-badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #22c55e, #22c55e);
}

.hero-title {
  font-size: clamp(2.35rem, 3vw + 1rem, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.hero-title span {
  background: linear-gradient(to right, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #9ca3af;
  max-width: 30rem;
  margin-bottom: 1.4rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.7rem;
}

.pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  color: #9ca3af;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.hero-note strong {
  color: #e5e7eb;
}

/* Hero card */
.hero-card {
  position: relative;
  border-radius: 1.6rem;
  border: 1px solid rgba(148,163,184,0.4);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.18), transparent 50%), radial-gradient(circle at bottom right, rgba(34,197,94,0.14), transparent 55%), rgba(15,23,42,0.96);
  padding: 1.4rem 1.3rem;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(15,23,42,0.85);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.stat {
  padding: 0.75rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148,163,184,0.55);
  background: rgba(15,23,42,0.75);
}

.stat-label {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.05rem;
  font-weight: 700;
}

.stat-tag {
  font-size: 0.7rem;
  color: #22c55e;
}

.hero-card-footer {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(148,163,184,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-avatar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(15,23,42,0.9);
}

.hero-avatar-text {
  display: flex;
  flex-direction: column;
}

.hero-avatar-name {
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-avatar-role {
  font-size: 0.7rem;
  color: #9ca3af;
}

.hero-guarantee {
  font-size: 0.72rem;
  color: #9ca3af;
  max-width: 10rem;
  text-align: right;
}

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

.section-header {
  margin-bottom: 1.5rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 36rem;
}

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.08), transparent 55%), rgba(15,23,42,0.96);
  padding: 1.1rem 1rem 1.15rem;
}

.service-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #38bdf8;
  margin-bottom: 0.25rem;
}

.service-title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.service-desc {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.65rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #6b7280;
}

.service-meta strong {
  color: #e5e7eb;
}

/* Two-column layouts */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.check-list {
  list-style: none;
  margin-top: 0.4rem;
}

.check-list li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.check-dot {
  margin-top: 0.38rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

/* Contact */
.contact-card {
  border-radius: 1.4rem;
  border: 1px solid rgba(148,163,184,0.5);
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.08), transparent 55%), rgba(15,23,42,0.96);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.contact-value {
  font-size: 0.96rem;
}

.contact-note {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 0.7rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(31,41,55,1);
  padding: 1.4rem 0 1.2rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
}

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

.footer-links a {
  color: #9ca3af;
}

/* Utilities */
.badge-soft {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.highlight {
  color: #22c55e;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.4rem;
  }
  .hero-card {
    margin-top: 0.4rem;
  }
}.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #fff;
}

.logo-sub {
  font-size: 0.7rem;
  opacity: 0.85;
  color: #eaf3ff;
}
<header class="navbar">
  <div class="container nav-inner">

    <!-- Brand: logo + text -->
    <a href="index.html" class="brand">
      <img src="logo-aa.png.jpeg" alt="All-American Academy Logo" class="logo-img">
      <div class="brand-text">
        <span class="brand-name">ALL-AMERICAN</span>
        <span class="brand-sub">English • Soft Skills • Sales</span>
      </div>
    </a>

    <!-- Navigation -->
    <nav class="nav-links">
      <a href="index.html" class="active">Home</a>
      <a href="about.html">About</a>
      <a href="services.html">Programs</a>
      <a href="contact.html">Contact</a>
    </nav>

    <!-- Button -->
    <button class="btn-primary" onclick="window.location.href='contact.html#book'">
      Book Free Session
    </button>

  </div>
</header>
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.7rem;
  opacity: 0.85;
  color: #eaf3ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.btn-whatsapp {
  display: none;               /* hidden until they finish the test */
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.btn-whatsapp:hover {
  opacity: 0.9;
}
.tests-home {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 16px 40px;
}

.tests-home h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tests-home p {
  max-width: 650px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.6;
}

.tests-home-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: #0c6efd;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.tests-home-btn:hover {
  opacity: 0.9;
}
/* ===== Global styles for all test pages ===== */
body.test-page {
  background: #050511;
  color: #ffffff;
}

body.test-page .page-wrap {
  max-width: 800px;
  margin: 40px auto 60px;
  padding: 0 16px 40px;
}

body.test-page .question {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #282a3a;
  background: #ffffff;
}

body.test-page .question p,
body.test-page .answers label {
  color: #111111;   /* dark text on white card */
}

body.test-page #result {
  color: #ffffff;
}
/* Bottom test button on every page */
.bottom-cta {
  margin: 40px auto 20px;
  padding: 16px;
  text-align: center;
}

.bottom-cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: #0c6efd;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.bottom-cta-btn:hover {
  opacity: 0.9;
}
