html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #020617;
  color: #e5e7eb;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon-letter {
  font-weight: 700;
  color: #0b1120;
}

.brand-name {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

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

.nav-link {
  font-size: 0.95rem;
  color: #cbd5f5;
  padding: 0.25rem 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  transition: width 0.2s ease-out;
}

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

.nav-link-primary {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #020617;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.35);
}

.nav-link-primary::after {
  display: none;
}

.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.25), transparent 55%),
    #020617;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.hero-content {
  text-align: center;
  max-width: 40rem;
}

.hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-ring {
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  padding: 0.25rem;
  background: conic-gradient(from 180deg, #0ea5e9, #22c55e, #0ea5e9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background-color: rgba(8, 47, 73, 0.7);
  color: #7dd3fc;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-pill-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero-title {
  font-size: clamp(2.75rem, 4vw, 3.75rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 1rem;
  color: #f9fafb;
}

.hero-title-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: #9ca3af;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #020617;
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 45px rgba(56, 189, 248, 0.55);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

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

.btn-block {
  width: 100%;
}

.hero-tech {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1.75rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  opacity: 0.8;
}

.hero-tech-item {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.82rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: #020617;
}

.section-primary {
  background: radial-gradient(circle at top, rgba(8, 47, 73, 0.85), #0f172a);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #0ea5e9;
  margin-bottom: 0.5rem;
}

.section-kicker-light {
  color: rgba(226, 232, 240, 0.9);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f9fafb;
}

.section-title-light {
  color: #f9fafb;
}

.section-subtitle {
  margin: 0;
  color: #9ca3af;
  font-size: 0.98rem;
}

.section-subtitle-light {
  color: rgba(226, 232, 240, 0.95);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
}

.card-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.card-text {
  margin: 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

.stacked-cards {
  display: grid;
  gap: 1.75rem;
}

.case-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.case-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.case-card-link:hover .case-card,
.case-card-link:focus-visible .case-card {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.95);
  border-color: rgba(56, 189, 248, 0.7);
}

.case-header {
  margin-bottom: 0.75rem;
}

.case-title {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.case-category {
  margin: 0;
  font-size: 0.9rem;
  color: #7dd3fc;
}

.case-text {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

.case-outcomes {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.case-outcomes li + li {
  margin-top: 0.2rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #cbd5f5;
}

.trust-card {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background-color: rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(226, 232, 240, 0.25);
}

.trust-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #f9fafb;
}

.trust-text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.88);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-text {
  max-width: 28rem;
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  font-weight: 700;
}

.contact-name {
  margin: 0;
  font-weight: 600;
}

.contact-role {
  margin: 0.1rem 0 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.contact-form-wrapper {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.alert-success {
  background-color: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.6);
  color: #bbf7d0;
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.7);
  color: #fecaca;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.88rem;
  color: #e5e7eb;
}

.field input,
.field select,
.field textarea {
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
  background-color: rgba(15, 23, 42, 1);
}

.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.field-error {
  font-size: 0.8rem;
  color: #fecaca;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  background-color: #020617;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

.footer-brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background-color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 700;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
}

.footer-brand-name {
  font-weight: 600;
}

.footer-text {
  text-align: center;
  font-size: 0.86rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.86rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #cbd5f5;
}

.footer-link:hover {
  border-color: #0ea5e9;
}

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

  .hero {
    padding-top: 8.5rem;
    padding-bottom: 5rem;
  }

  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-content {
    text-align: left;
    max-width: 38rem;
  }

  .hero-photo-ring {
    width: 11rem;
    height: 11rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .field-row {
    flex-direction: row;
  }

  .field-row .field {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
  }
}
