* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; }

.page-shell {
  min-height: 100vh;
  background: linear-gradient(135deg, #03144a 0%, #003cff 45%, #0d8cff 100%);
  color: #ffffff;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  padding: 56px 0 30px;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
}

.hero-top {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 400px;
}

.hero-copy {
  max-width: 800px;
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 10px;
}

.header-inner {
  display: flex;
  justify-content: center; /* center logo */
  align-items: center;
}

.site-logo {
  max-height: 60px;
  width: auto;
}

.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 16px;
  word-break: break-all;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.highlight {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

.btn:hover { transform: translateY(-1px); opacity: .96; }
.btn-primary { background: #ffffff; color: #0a44ff; }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.18); }

.map-wrap {
  overflow: hidden;
  border-radius: 22px;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.section {
  padding: 28px 0;
}

.section-card {
  background: #ffffff;
  color: #111827;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
  color: #0a44ff;
}

.lead {
  color: #374151;
  line-height: 1.8;
  margin: 0 0 18px;
}

.banner-wrap {
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background: #eef6ff;
}

.banner-wrap img {
  width: 100%;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.info-box {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 18px;
}

.info-box h3 {
  margin: 0 0 12px;
  color: #0a44ff;
  font-size: 20px;
}

.info-box p, .info-box li {
  color: #374151;
  line-height: 1.8;
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
}

.map-inside {
  margin-top: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #dbeafe;
}

th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

th {
  background: #0a44ff;
  color: white;
  font-size: 14px;
}

td {
  color: #374151;
}

.faq-subtitle {
  margin-top: 0;
  color: #0f172a;
}

.faq-intro-box {
  margin-bottom: 18px;
}


/* Better mobile pricing table */
@media (max-width: 768px) {
  table {
    border: none;
    background: transparent;
    margin-top: 16px;
  }

  table thead {
    display: none;
  }

  table,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  table tr {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    margin-bottom: 18px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(10, 68, 255, 0.08);
  }

  table td {
    border: none;
    padding: 12px 0;
    color: #111827;
    font-size: 15px;
  }

  table td:first-child {
    background: linear-gradient(135deg, #0a44ff, #2563eb);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: 0 8px 18px rgba(10, 68, 255, 0.22);
  }

  table td:not(:first-child) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-bottom: 1px dashed #dbeafe;
  }

  table td:last-child {
    border-bottom: none;
  }

  table td::before {
    content: attr(data-label);
    font-size: 13px;
    font-weight: 700;
    color: #0a44ff;
    flex: 0 0 auto;
  }

  table td:first-child::before {
    display: none;
  }

  table td:not(:first-child) {
    font-weight: 700;
    text-align: right;
  }
}



.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  background: #f8fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: #0f172a;
  cursor: pointer;
  padding: 18px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
}

.faq-toggle {
  color: #0a44ff;
  font-size: 24px;
  line-height: 1;
  transition: transform .2s ease;
  flex: 0 0 auto;
  margin-left: 12px;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: #374151;
  line-height: 1.8;
}

.faq-answer ul {
  margin-top: 10px;
  padding-left: 20px;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

.footer {
  text-align: center;
  color: rgba(255,255,255,0.92);
  padding: 20px 0 40px;
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero-top,
  .info-grid,
  .highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-card,
  .hero-card {
    padding: 22px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
  }

  td {
    padding: 10px 14px;
  }
}
