* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b0f17;
  color: #f1f5f9;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background-color: #38bdf8;
  color: #040914;
}
.btn-primary:hover {
  background-color: #0284c7;
  color: #ffffff;
}
.btn-secondary {
  background-color: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
}
.btn-secondary:hover {
  background-color: rgba(56, 189, 248, 0.2);
}
.btn-outline {
  border: 1px solid #1e2a45;
  color: #f1f5f9;
}
.btn-outline:hover {
  border-color: #38bdf8;
  color: #38bdf8;
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.card {
  background-color: #131b2e;
  border: 1px solid #1e2a45;
  border-radius: 12px;
  padding: 2rem;
}

.badge {
  display: inline-block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.navbar {
  border-bottom: 1px solid #1e2a45;
  padding: 1.25rem 0;
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
}
.navbar .logo span {
  color: #38bdf8;
}

.hero {
  padding: 6rem 0 4rem;
  text-align: center;
}
.hero-inner {
  max-width: 800px;
}
.hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero h1 .highlight {
  color: #38bdf8;
}
.hero .hero-subtext {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}
.hero .hero-subtext strong {
  color: #f1f5f9;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.pillars {
  padding: 3rem 0;
}
.pillars .pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillars .pillar-card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pillars .pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.pillars .pillar-card p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.process {
  padding: 5rem 0;
}
.process .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.process .section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.process .section-header p {
  color: #94a3b8;
}
.process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.process .step {
  position: relative;
}
.process .step .step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
  color: #38bdf8;
  display: block;
  margin-bottom: 0.5rem;
}
.process .step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.process .step p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.contact {
  padding: 4rem 0 6rem;
}
.contact .contact-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact .contact-card h2 {
  margin-bottom: 0.5rem;
}
.contact .contact-card p {
  color: #94a3b8;
  margin-bottom: 2rem;
}
.contact .contact-card .booking-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact .contact-card .booking-cta-box .sub-guarantee {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0;
}

footer {
  border-top: 1px solid #1e2a45;
  padding: 2rem 0;
  text-align: center;
}
footer p {
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-cta {
    flex-direction: column;
  }
}

/*# sourceMappingURL=index.css.map */
