/* ===========================
   RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-blue: #3b82f6;
  --brand-purple: #6d28d9;
  --brand-purple-dark: #4c1d95;
  --brand-blue-dark: #092272;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #91b4d6;
  --border-light: #052a74;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   GLOBAL ALIGNMENT FIXES
=========================== */
.text-center {
  text-align: center !important;
}

.section h1,
.section h2,
.section h3,
.section p {
  text-align: center;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #8bb7f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem 0 0.5rem;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 1rem;
}

.nav-left a,
.nav-right a {
  font-weight: 500;
}

.btn-primary {
  padding: 0.6rem 1.4rem;
  background: var(--brand-purple);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--brand-purple-dark);
}

.btn-secondary {
  padding: 0.6rem 1.4rem;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--brand-purple-dark);
}

.header-logo {
  text-align: center;
  margin-top: 0.75rem;
}

.logo-medium {
  width: 175px;
  height: auto;
}

/* ===========================
   HAMBURGER (MOBILE)
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--brand-purple);
}

/* ===========================
   MOBILE MENU
=========================== */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #7c8ceb;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.nav-mobile a,
.nav-mobile button {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-weight: 600;
}

.nav-mobile a:last-child,
.nav-mobile button:last-child {
  border-bottom: none;
}

.nav-mobile.open {
  display: flex;
}

/* ===========================
   HERO
=========================== */
.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background: var(--brand-blue);
  color: #fff !important;
}

.hero h1 {
  margin-bottom: 0.75rem;
  text-align: center;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.hero .btn-secondary {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   PROCESS CARDS
=========================== */
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.section-alt .pricing-card p,
.section-alt .pricing-card h3 {
  color: var(--text-dark) !important;
}

/* ===========================
   PRICING CARDS
=========================== */
.pricing-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.pricing-card li {
  margin-bottom: 0.4rem;
}

.pricing-card .icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ===========================
   FAQ
=========================== */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.faq-question {
  font-weight: 600;
  color: var(--brand-purple);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  text-align: center !important;
}

.footer a {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
