html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
}

/* NAV LINKS */

.fca-nav-link {
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
}

.fca-nav-link:hover {
  color: #1f3a8a;
}

.fca-mobile-link {
  color: #0f172a;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.fca-mobile-link:hover {
  color: #1f3a8a;
}

/* HERO */

.fca-hero-shell {
  background: radial-gradient(
    circle at top left,
    #4f46e5 0,
    #1f2937 45%,
    #020617 100%
  );
  color: #e5e7eb;
}

.fca-hero-inner {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .fca-hero-inner {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.fca-hero-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .fca-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
  }
}

.fca-hero-visual {
  position: relative;
}

.fca-hero-card {
  background: #f9fafb;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
}

.fca-hero-photo {
  position: relative;
  overflow: hidden;
}

.fca-hero-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .fca-hero-image {
    height: 270px;
  }
}

.fca-hero-overlay-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(124, 58, 237, 0.55)
  );
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 60% 100%);
}

.fca-hero-panel {
  padding: 1.2rem 1.4rem 1.5rem;
}

.fca-metric-pill {
  border-radius: 0.9rem;
  background: #e5e7eb;
  padding: 0.5rem 0.75rem;
}

.fca-metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.fca-metric-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.fca-ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
}

.fca-ghost-button:hover {
  color: #1f3a8a;
}

.fca-hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
  white-space: nowrap;
}

/* GENERIC SECTION TYPOGRAPHY */

.fca-section-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
}

.fca-section-title {
  margin-top: 0.25rem;
  font-size: 1.7rem;
  line-height: 1.25;
  font-weight: 600;
  color: #020617;
}

@media (min-width: 768px) {
  .fca-section-title {
    font-size: 2rem;
  }
}

.fca-section-text {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: #475569;
}

/* STATS & STEPS */

.fca-stat-card {
  border-radius: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
}

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

.fca-stat-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}

.fca-step-card {
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.fca-step-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.9rem;
  background: #e0e7ff;
  color: #1f3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.fca-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #020617;
}

.fca-step-text {
  font-size: 0.95rem;
  color: #475569;
}

/* MODULES / PATHS */

.fca-module-card {
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 1.6rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

.fca-module-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e0e7ff;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f3a8a;
  margin-bottom: 0.75rem;
}

.fca-module-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #020617;
  margin-bottom: 0.35rem;
}

.fca-module-text {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 0.9rem;
}

.fca-module-list {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  list-style: disc;
  font-size: 0.95rem;
  color: #475569;
}

.fca-module-list li + li {
  margin-top: 0.35rem;
}

.fca-module-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f3a8a;
  transition: color 0.2s ease;
}

.fca-module-link:hover {
  color: #7c3aed;
}

/* AUSTRALIA BLOCK */

.fca-australia-card {
  border-radius: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1rem;
}

.fca-australia-icon {
  height: 2.3rem;
  width: 2.3rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1f3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.fca-info-panel {
  background: #020617;
  color: #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.8rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
}

/* WHO THIS IS FOR */

.fca-who-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  font-size: 0.95rem;
  color: #475569;
}

.fca-who-list li + li {
  margin-top: 0.35rem;
}

/* TESTIMONIALS */

.fca-testimonial-card {
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid #1e293b;
  padding: 1.5rem;
}

.fca-testimonial-text {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.fca-avatar-circle {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1f3a8a;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* FORMS */

.fca-input-field {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #0f172a;
}

.fca-input-field::placeholder {
  color: #94a3b8;
}

.fca-input-field:focus {
  outline: none;
  border-color: #1f3a8a;
  box-shadow: 0 0 0 2px rgba(31, 58, 138, 0.25);
}

/* FOOTER */

.fca-footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.fca-footer-link {
  font-size: 0.9rem;
  color: #cbd5f5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fca-footer-link:hover {
  color: #ffffff;
}

.fca-social-icon {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.fca-social-icon:hover {
  border-color: #e5e7eb;
  color: #ffffff;
  background-color: rgba(15, 23, 42, 0.8);
}

/* COOKIE BANNER */

.fca-cookie-link {
  color: #1f3a8a;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fca-cookie-link:hover {
  color: #7c3aed;
}
