:root {
  --black: #000000;
  --white: #ffffff;
  --teal: #0fa3a6;
  --grey: #8a8a8a;
  --bg-light: #f6f6f6;
  --border: #e2e2e2;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.06);
  --max-width: 1200px;
  --section-pad: 64px;
}

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

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: var(--white);
  color: #111111;
  line-height: 1.6;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.025) 1px, transparent 0);
  background-size: 22px 22px;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-text span {
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
}

.brand-text small {
  color: var(--grey);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--grey);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.2s ease;
}

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

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 163, 166, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.btn-secondary {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--teal);
  border-color: var(--teal);
}

main {
  padding-bottom: 64px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--bg-light);
}

.hero {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 300px;
  height: 300px;
  background: rgba(15, 163, 166, 0.07);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 6px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--teal);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  margin-bottom: 18px;
}

.hero-body {
  color: var(--grey);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.hero-stats div {
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-stats strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--grey);
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-items: end;
}

.hero-image {
  height: 340px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    linear-gradient(130deg, #1a1a1a, #4b4b4b);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 163, 166, 0.18), transparent 55%);
}

.hero-overlay {
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 260px;
  display: grid;
  gap: 6px;
}

.overlay-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay-tag svg {
  width: 14px;
  height: 14px;
}

.hero-overlay h3 {
  font-size: 20px;
  margin: 0;
}

.hero-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.hero-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: min(360px, 100%);
  margin-top: -32px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  background: var(--teal);
  border-radius: 12px 12px 0 0;
}

.hero-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.hero-card p:not(.card-label) {
  margin: 0 0 12px;
  color: #4a4a4a;
}

.card-label {
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}

.card-list span {
  background: var(--bg-light);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  text-align: center;
}

.section-heading {
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
}

.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--teal);
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
}

.section-heading p {
  color: var(--grey);
}

.about-grid,
.featured-grid,
.consultant-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about-grid p,
.consultant-grid p {
  color: var(--grey);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.featured-details ul {
  list-style: none;
  color: var(--grey);
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
}

.featured-details li::before {
  content: "• ";
  color: var(--teal);
  font-weight: 700;
}

.featured-panel {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 18px;
}

.panel-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--grey);
}

.panel-stats {
  display: grid;
  gap: 16px;
}

.panel-stats strong {
  font-size: 1.4rem;
  display: block;
}

.consultant-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--black);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pill-grid span {
  background: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.cta-strip {
  padding: 28px 0;
  background: var(--black);
  color: var(--white);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: none;
}

.contact-details {
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-details h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-details a:not(.btn) {
  color: var(--teal);
}

.contact-details .btn-primary {
  color: var(--white);
}

.contact-details .btn-secondary {
  color: var(--black);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-form {
  background: var(--white);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--grey);
}

.contact-form input,
.contact-form textarea {
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 163, 166, 0.15);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 52px;
  background: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--grey);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    align-items: stretch;
  }

  .hero-card {
    margin-top: 0;
    width: 100%;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-content {
    padding-left: 0;
    border-left: none;
  }

  .section-heading {
    padding-left: 0;
  }

  .section-heading::before {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .contact-form button {
    width: 100%;
  }
}
