
:root {
  --navy: #0F2340;
  --teal: #5BA7A0;
  --teal-soft: #E7F3F2;
  --bg: #F7FAFA;
  --text: #243042;
  --muted: #5E6B7A;
  --border: #DDE7E7;
  --white: #FFFFFF;
  --shadow: 0 18px 50px rgba(15, 35, 64, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 250px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 84% 18%, rgba(91, 167, 160, 0.18), transparent 32%),
    linear-gradient(135deg, #FFFFFF 0%, #F6FBFB 100%);
  overflow: hidden;
}

.hero-grid,
.about-grid,
.contact-grid,
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  letter-spacing: -0.045em;
  max-width: 800px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  font-size: 1.18rem;
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--navy);
  color: white;
}

.button.secondary {
  color: var(--navy);
  background: white;
  border-color: var(--border);
}

.button.full {
  width: 100%;
}

.hero-card,
.about-card,
.contact-card,
.note-card,
.service-card,
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.hero-icon {
  width: 142px;
  margin-bottom: 28px;
}

.hero-card h2 {
  font-size: 2rem;
}

.hero-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.who {
  background: var(--navy);
  color: white;
}

.who h2 {
  color: white;
}

.who p {
  color: rgba(255,255,255,0.82);
}

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

.service-card {
  padding: 26px;
  box-shadow: none;
  border-top: 4px solid var(--teal);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.pricing {
  background: var(--bg);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  border: 2px solid var(--teal);
  transform: translateY(-8px);
}

.price {
  color: var(--navy);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 18px 0 0;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.sub {
  color: var(--muted);
  min-height: 48px;
}

ul {
  padding-left: 20px;
  color: var(--muted);
}

li {
  margin: 8px 0;
}

.note-card {
  padding: 28px;
  margin-top: 22px;
  background: white;
}

.note-card p:last-child {
  margin-bottom: 0;
}

.about-card {
  padding: 44px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5FBFB 100%);
}

.about-card img {
  width: 360px;
  margin: 0 auto;
}

.about p {
  color: var(--muted);
}

.limits {
  background: linear-gradient(180deg, #0F2340 0%, #13304F 100%);
  color: white;
}

.limits h2 {
  color: white;
}

.limits p {
  color: rgba(255,255,255,0.82);
}

.contact {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFA 100%);
}

.contact-card {
  padding: 32px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FCFC 100%);
}

.contact-card h3 {
  margin-bottom: 4px;
}

.contact-card a {
  display: block;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card a:last-child {
  border-bottom: none;
}


.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.contact-details h3 {
  margin-bottom: 4px;
}

.contact-details a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.contact-form {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FCFC 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(91, 167, 160, 0.14);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 4px 0 18px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  background: var(--navy);
  color: white;
  padding: 24px 0;
}

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

.footer-wrap p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}


.price-card {
  min-height: 100%;
}

.price-card ul {
  margin-bottom: 24px;
}

.price-card .button {
  margin-top: auto;
}

.price-card.featured .button.primary,
.price-card .button.primary {
  background: var(--navy);
  color: #fff;
}

.investigation-card {
  border-left: 5px solid var(--teal);
}

.investigation-card h3 {
  margin-bottom: 12px;
}

.investigation-card p {
  color: var(--muted);
}

.abn {
  color: var(--muted);
  font-weight: 700;
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  align-items: center;
}


.price-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border: 1px solid var(--border) !important;
  transform: none !important;
}

.price-card.featured {
  border: 1px solid var(--border) !important;
  transform: none !important;
}

.price-card > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card .sub {
  min-height: 72px;
}

.price-card ul {
  flex-grow: 1;
  margin-bottom: 24px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.investigation-card {
  margin-top: 18px;
}



.pricing-small-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}


.investigation-card {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: none;
  padding: 28px;
}

.investigation-card h3 {
  margin-bottom: 14px;
}

.investigation-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.investigation-list {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  columns: 2;
  column-gap: 36px;
}

.investigation-list li {
  break-inside: avoid;
  margin: 7px 0;
}

.investigation-note {
  font-size: 0.94rem;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .investigation-list {
    columns: 1;
  }
}

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

  .brand img {
    width: 220px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    padding: 64px 0 54px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-card,
  .about-card,
  .contact-card,
  .note-card,
  .service-card,
  .price-card {
    border-radius: 20px;
  }
}
